• Users
  • Groups
  • Schemas
  • Service Provider Configuration
  • Admin APIs
Cloud
User provisioning REST API / Reference / REST API

Service Provider Configuration

Postman Collection
OpenAPI
GET

Get resource types

Get different types of resources available on a SCIM service provider (e.g., Users and Groups).
Note: This API does not support filtering, pagination, or sorting.

Request

Path parameters

directoryId

string

Required

Responses

SCIM features metadata has been returned successfully.

application/json application/scim+json

string

GET/scim/directory/{directoryId}/ResourceTypes
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'
200Response
1 "<string>"
GET

Get user resource types

Retrieves user resource types from the SCIM service provider.

Note: This API does not support filtering, pagination, or sorting.

Request

Path parameters

directoryId

string

Required

Responses

SCIM features metadata has been returned successfully.

application/json application/scim+json

string

GET/scim/directory/{directoryId}/ResourceTypes/User
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'
200Response
1 "<string>"
GET

Get group resource types

Retrieves group resource type of this SCIM service provider.

Note: This API does not support filtering, pagination, or sorting.

Request

Path parameters

directoryId

string

Required

Responses

SCIM features metadata has been returned successfully.

application/json application/scim+json

string

GET/scim/directory/{directoryId}/ResourceTypes/Group
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'
200Response
1 "<string>"

Rate this page: