- Home
- API Enriched
- Tenant And Identity
- scim
- GET supported resources type.
GET supported resources type.
const url = 'https://example-corp.console.ves.volterra.io/api/v1/api/production/us-east-1/namespaces/default/api/scim/namespaces/system/v2/ResourceTypes/example';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example-corp.console.ves.volterra.io/api/v1/api/production/us-east-1/namespaces/default/api/scim/namespaces/system/v2/ResourceTypes/example \ --header 'Authorization: <Authorization>'Getresourcetypesbyid CustomPublicAPI.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”ID x-required ID with which the request will find entry.
Query Parameters
Section titled “Query Parameters”Members”]” A multi-valued list of strings indicating the names of resource attributes to be removed from the default set of attributes to return.
Responses
Section titled “Responses”A successful response.
Resource
object
[ ] [x-required] endpoint for the resource..
[ ] [x-required] ID of the resource.
object
Location of resource. Required: YES.
ResourceType represents resource. Required: YES.
[ ] [x-required] name of the resource.
[x-example: “urn:ietf:params:scim:schemas:core:2.0:ResourceType] [x-required] Schema defined in scim spec..
[ ] [x-required] schemas defined in scim spec.
Examplegenerated
{ "endpoint": "example", "id": "example", "meta": { "location": "example", "resourceType": "example" }, "name": "example", "schema": "example", "schemas": [ "example" ]}Returned when operation is not authorized.
Examplegenerated
exampleReturned when there is no permission to access resource.
Examplegenerated
exampleReturned when resource is not found.
Examplegenerated
exampleReturned when operation on resource is conflicting with current value.
Examplegenerated
exampleReturned when operation has been rejected as it is happening too frequently.
Examplegenerated
exampleReturned when server encountered an error in processing API.
Examplegenerated
exampleReturned when service is unavailable temporarily.
Examplegenerated
exampleReturned when server timed out processing request.
Examplegenerated
example