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

Rate this page:

Service Provider Configuration

Postman Collection
OpenAPI
GET

Get resource types

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

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

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

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

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

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>"