Skip to main content

Get resource type

GET 

/nevisidm/api/scim/v1/ResourceTypes/:id

Retrieves a single SCIM resource type definition by its ID. Returns 404 Not Found if no resource type exists with the specified ID.

Request

Path Parameters

    id stringrequired

    Resource type identifier.

    Example: User

Responses

Resource type retrieved successfully

Schema
    schemas string[]required

    An array of Strings containing URIs that are used to indicate the namespaces of the SCIM schemas that define the attributes present in the current JSON structure.

    id string

    The resource type's server unique id. May be the same as the 'name' attribute

    name stringrequired

    The resource type name. When applicable, service providers MUST specify the name, e.g., 'User'.

    description stringrequired

    The resource type's human-readable description. When applicable, service providers MUST specify the description.

    meta ScimMetarequired

    SCIM defined complex to hold meta information.

    resourceType stringrequired

    The name of the resource type of the resource.

    created date-time

    The date and time that the resource was added to the service provider.

    lastModified date-time

    The most recent date and time that the details of this resource were updated at the service provider.

    location uri

    The URI of the resource being returned.

    version string

    The version of the resource being returned.

    endpoint stringrequired

    The resource type's HTTP-addressable endpoint relative to the Base URL, e.g., '/Users'.

    schemaExtensions ScimSchemaExtension[]

    A list of URIs of the resource type's schema extensions.

  • Array [
  • required booleanrequired

    Contains if the SchemaExtension is required for the Extended Schema

    schema stringrequired

    The unique URI of the schema.

  • ]
  • schema stringrequired

    The resource type's primary/base schema URI.

Loading...