Rate this page:
GET /scim/directory/{directoryId}/ResourceTypes
Get types of resources available on a SCIM service provider (e.g., Users and Groups). This is used to get all resources of the SCIM provider. Filtering, pagination and sorting are not supported.
string
1 2 3 4
curl --request GET \
--url 'https://api.atlassian.com/scim/directory/{directoryId}/ResourceTypes' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json'
SCIM features metadata has been returned successfully.
Content type | Value |
---|---|
application/json | string |
application/scim+json | string |
GET /scim/directory/{directoryId}/ResourceTypes/User
Retrieve user resource types from the SCIM service provider. Filtering, pagination and sorting are not supported.
string
1 2 3 4
curl --request GET \
--url 'https://api.atlassian.com/scim/directory/{directoryId}/ResourceTypes/User' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json'
SCIM features metadata has been returned successfully.
Content type | Value |
---|---|
application/json | string |
application/scim+json | string |
GET /scim/directory/{directoryId}/ResourceTypes/Group
Retrieve group resource type of this SCIM service provider. Filtering, pagination and sorting are not supported.
string
1 2 3 4
curl --request GET \
--url 'https://api.atlassian.com/scim/directory/{directoryId}/ResourceTypes/Group' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json'
SCIM features metadata has been returned successfully.
Content type | Value |
---|---|
application/json | string |
application/scim+json | string |
Rate this page: