Users
Groups
Schemas
Service Provider Configuration

Rate this page:

Service Provider Configuration

Get resource types

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.

Request

Path parameters
directoryId Required

string

Example

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'

Responses

SCIM features metadata has been returned successfully.

Content typeValue
application/json

string

application/scim+json

string

Get user resource types

GET /scim/directory/{directoryId}/ResourceTypes/User

Retrieve user resource types from the SCIM service provider. Filtering, pagination and sorting are not supported.

Request

Path parameters
directoryId Required

string

Example

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'

Responses

SCIM features metadata has been returned successfully.

Content typeValue
application/json

string

application/scim+json

string

Get group resource types

GET /scim/directory/{directoryId}/ResourceTypes/Group

Retrieve group resource type of this SCIM service provider. Filtering, pagination and sorting are not supported.

Request

Path parameters
directoryId Required

string

Example

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'

Responses

SCIM features metadata has been returned successfully.

Content typeValue
application/json

string

application/scim+json

string

Rate this page: