Retrieve Group

Retrieves the details of a specific group.

Request

GET /organization/v1/group/:id

Path Parameters


id string : required

The unique identifier of the group.


Query Parameters


No parameters

Example


curl -XGET 'https://platform.wellviasolutions.com/organization/v1/group/{groupid}' \
    -u 'Bearer:{your_token}'
GET https://platform.wellviasolutions.com/organization/v1/group/{groupid} HTTP/1.1
using WellViaSDK.Organization;

const string apiSubscriptionKey = "your_api_subscription_key";
var _orgClient = new WellViaOrganizationServiceClient(subscriptionKey: apiSubscriptionKey);

string groupId = "{groupId}";
var grp = await _orgClient.GetGroupAsync(groupId: groupId);

Response

A Group Object if a valid identifier was provided.