GET /scim/v2/groups
Parameters
| Name | In | Description | Required | Type |
|---|---|---|---|---|
| filter | query | string | ||
| startIndex | query | integer | ||
| count | query | integer | ||
| attributes | query | string | ||
| excludedAttributes | query | string |
Responses
| Code | Returns | Type |
|---|---|---|
| 200 | OK | |
| 400 | Bad Request | |
| 401 | Unauthorized - Missing or invalid access token | |
| 403 | Forbidden - Provided access token does not permit usage of this API or data |
POST /scim/v2/groups
Request body
{
"displayName":"string",
"externalId":"string",
"id":"string",
"members":
[{
"display": "string",
"ref": "string",
"value": "string"
}]
,
"meta":
{
"created": "string",
"lastModified": "string",
"location": "string",
"resourceType": "string",
"version": "string"
},
"schemas":
}Responses
| Code | Returns | Type |
|---|---|---|
| 201 | Created | |
| 400 | Bad Request | |
| 401 | Unauthorized - Missing or invalid access token | |
| 403 | Forbidden - Provided access token does not permit usage of this API or data | |
| 409 | Conflict |