Skip to main content

SCIM 2.0 Applications

SCIM 2.0 Service Provider Configuration Retrieval API (1.0.0)

Download OpenAPI specification:Download

This document specifies SCIM 2.0 Service Provider Configuration Retrieval RESTful API for WSO2 Identity Server.

ResourceType Endpoint

Get resource types

This API lists and returns metadata about resource types.

No Scope(Permission) required.

Authorizations:
OAuth2BasicAuth

Responses

Request samples

curl -X 'GET' \
'https://localhost:9443/scim2/ResourceTypes' \
-H 'accept: application/scim+json'

Response samples

Content type
application/scim+json
{
  • "schemas": [
    ],
  • "resourceType": [
    ]
}

ServiceProviderConfig Endpoint

Get service provider config

This API returns the service provider's configuration details.

No Scope(Permission) required.

Authorizations:
OAuth2BasicAuth

Responses

Request samples

curl -X 'GET' \
'https://localhost:9443/scim2/ServiceProviderConfig' \
-H 'accept: application/scim+json'

Response samples

Content type
application/scim+json
{
  • "patch": {
    },
  • "filter": {
    },
  • "documentationUri": "http://example.com/help/scim.html",
  • "authenticationSchemes": [
    ],
  • "schemas": [
    ],
  • "etag": {
    },
  • "sort": {
    },
  • "bulk": {
    },
  • "changePassword": {
    }
}