Users
Groups
Schemas
Service Provider Configuration

Rate this page:

Schemas

Get all schemas

GET /scim/directory/{directoryId}/Schemas

Get all SCIM features metadata. 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}/Schemas' \
  --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 schemas

GET /scim/directory/{directoryId}/Schemas/urn:ietf:params:scim:schemas:core:2.0:User

Get the user schemas from 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}/Schemas/urn:ietf:params:scim:schemas:core:2.0: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 schemas

GET /scim/directory/{directoryId}/Schemas/urn:ietf:params:scim:schemas:core:2.0:Group

Get the group schemas from 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}/Schemas/urn:ietf:params:scim:schemas:core:2.0: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

Get user enterprise extension schemas

GET /scim/directory/{directoryId}/Schemas/urn:ietf:params:scim:schemas:extension:enterprise:2.0:User

Get the user enterprise extension schemas from 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}/Schemas/urn:ietf:params:scim:schemas:extension:enterprise:2.0: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 feature metadata

GET /scim/directory/{directoryId}/ServiceProviderConfig

Get metadata about the supported SCIM features. This is a service provider configuration endpoint providing supported SCIM features. 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}/ServiceProviderConfig' \
  --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: