Returns a ResourceType resource based on ID.​
The ResourceType with the matching ID is returned. The ID is the URN of the SCIM resource. The common fields for each ResourceType entry are 'endpoint', 'id', 'name', 'description', 'schema' and 'schemaExtensions'.
Path Parameters
- resourceTypeId string required
ID of ResourceType resource.
Responses
- 200
Returns a single ResourceType resource based on the ID.
- application/json
- Schema
- Example (from schema)
Schema
- id string
ID of the ResourceType.
- name string
Name of the ResourceType.
- endpoint string
The ResourceType's HTTP addressable endpoint relative to the Base URL.
- description string
Description of the ResourceType.
- schema string
The primary/base schema URI of the ResourceType.
- schemaExtensions undefined[]
A list of URIs of the ResourceType's schema extensions.
meta object
Metadata of the ResourceType.
location stringThe location of the ResourceType.
resourceType stringThe SCIM resource type.
- schemas string[]
The schema for the ResourceType resource.
{
"id": "User",
"name": "User",
"endpoint": "/Applications",
"description": "User Account.",
"schema": "urn:ietf:params:scim:schemas:sailpoint:1.0:User",
"schemaExtensions": [
[
{
"schema": "urn:ietf:params:scim:schemas:extension:enterprise:2.0:User",
"required": true
},
{
"schema": "urn:ietf:params:scim:schemas:sailpoint:1.0:User",
"required": true
}
]
],
"meta": {
"location": "http://localhost:8080/iiq/scim/v2/ResourceTypes/User",
"resourceType": "ResourceType"
},
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:ResourceType"
]
}
Loading...