GET https://api.ap1.datadoghq.com/api/v2/scim/ResourceTypes https://api.ap2.datadoghq.com/api/v2/scim/ResourceTypes https://api.datadoghq.eu/api/v2/scim/ResourceTypes https://api.ddog-gov.com/api/v2/scim/ResourceTypes https://api.us2.ddog-gov.com/api/v2/scim/ResourceTypes https://api.datadoghq.com/api/v2/scim/ResourceTypes https://api.us3.datadoghq.com/api/v2/scim/ResourceTypes https://api.us5.datadoghq.com/api/v2/scim/ResourceTypes
Overview List the SCIM resource types supported by this service provider.
See RFC 7644 Section 4 for more information.
This endpoint requires
all
of the following permissions:
user_access_inviteuser_access_manageResponse OK
List resource types response object.
Expand All
List of resource types supported by this SCIM service provider.
Human-readable description of the resource type.
HTTP-addressable endpoint relative to the base URL where the resource is located.
The resource type's server unique id.
Metadata associated with a resource type.
URL identifying the resource type.
The resource type's primary or base SCIM schema URI.
A list of SCIM schema URI identifying the protocol or schema used in this object.
Number of resource types returned per page.
List response JSON Schemas.
Starting index of the resource types for this page (1-indexed).
Total number of resource types.
{
"Resources" : [
{
"description" : "https://tools.ietf.org/html/rfc7643#section-8.7.1" ,
"endpoint" : "/Groups" ,
"id" : "Group" ,
"meta" : {
"location" : "https://app.datadoghq.com/api/v2/scim/ResourceTypes/Group" ,
"resourceType" : "ResourceType"
},
"name" : "Group" ,
"schema" : "urn:ietf:params:scim:schemas:core:2.0:Group" ,
"schemas" : [
"urn:ietf:params:scim:schemas:core:2.0:ResourceType"
]
},
{
"description" : "https://tools.ietf.org/html/rfc7643#section-8.7.1" ,
"endpoint" : "/Users" ,
"id" : "User" ,
"meta" : {
"location" : "https://app.datadoghq.com/api/v2/scim/ResourceTypes/User" ,
"resourceType" : "ResourceType"
},
"name" : "User" ,
"schema" : "urn:ietf:params:scim:schemas:core:2.0:User" ,
"schemas" : [
"urn:ietf:params:scim:schemas:core:2.0:ResourceType"
]
}
],
"itemsPerPage" : 2 ,
"schemas" : [
"urn:ietf:params:scim:api:messages:2.0:ListResponse"
],
"startIndex" : 1 ,
"totalResults" : 2
} Not Found
{
"errors" : [
"Bad Request"
]
} Too many requests
{
"errors" : [
"Bad Request"
]
} Code Example Copy
# Curl command curl -X GET "https://api.ap1.datadoghq.com "https://api.ap2.datadoghq.com "https://api.datadoghq.eu "https://api.ddog-gov.com "https://api.us2.ddog-gov.com "https://api.datadoghq.com "https://api.us3.datadoghq.com "https://api.us5.datadoghq.com /api/v2/scim/ResourceTypes " \
-H "Accept: application/json" \
-H "Authorization: Bearer ${DD_BEARER_TOKEN} "