Endpoint

/v1/ad/sids/{sid}/expanded-groups/

GET

Return the SIDs of all the groups that the given SID is a member of, (including all nested groups).

Parameters

Name Description Required
sid The SID to use to look up the SIDs of all the groups that this SID belongs to (this includes all nested groups). Yes

Response

Codes

Code Description
200 Return value on success

Schema

{
  "type": "array",
  "items": {
    "description": "api_ad_group_sid",
    "type": "object",
    "properties": {
      "sid": {
        "description": "sid",
        "type": "string"
      }
    }
  }
}