DELETE /scim/v2/users/{id}

Parameters

Name In Description Required Type
id path true string

Responses

Code Returns Type
204 No Content
401 Unauthorized - Missing or invalid access token
403 Forbidden - Provided access token does not permit usage of this API or data
404 Not Found

GET /scim/v2/users/{id}

Parameters

Name In Description Required Type
id path true string
attributes query string
excludedAttributes query string

Responses

Code Returns Type
200 OK
400 Bad Request
401 Unauthorized - Missing or invalid access token
403 Forbidden - Provided access token does not permit usage of this API or data
404 Not Found

PATCH /scim/v2/users/{id}

Parameters

Name In Description Required Type
id path true string

Request body

{ 
        
        "operations": 
            [{ 
               "op": "string",
                "path": "string",
                "value": ""
        }]
    ,
        "schemas":
}

Responses

Code Returns Type
200 OK
400 Bad Request
401 Unauthorized - Missing or invalid access token
403 Forbidden - Provided access token does not permit usage of this API or data
404 Not Found
409 Conflict
503 Service Unavailable

PUT /scim/v2/users/{id}

Parameters

Name In Description Required Type
id path true string

Request body

{ 
        
        "acosExtension": 
            { 
               "applicationRole": "string"
            },
        "active":"boolean",
        "addresses": 
            [{ 
               "country": "string",
                "locality": "string",
                "postalCode": "string",
                "streetAddress": "string",
                "type": "string"
        }]
    ,
        "displayName":"string",
        "emails": 
            [{ 
               "primary": "boolean",
                "type": "string",
                "value": "string"
        }]
    ,
        "enterpriseExtension": 
            { 
               "department": "string",
                "manager": ""
            },
        "entitlements": 
            [{ 
               "display": "string",
                "type": "string",
                "value": "string"
        }]
    ,
        "externalId":"string",
        "groups": 
            [{ 
               "display": "string",
                "ref": "string",
                "value": "string"
        }]
    ,
        "id":"string",
        "meta": 
            { 
               "created": "string",
                "lastModified": "string",
                "location": "string",
                "resourceType": "string",
                "version": "string"
            },
        "name": 
            { 
               "familyName": "string",
                "formatted": "string",
                "givenName": "string"
            },
        "phoneNumbers": 
            [{ 
               "primary": "boolean",
                "type": "string",
                "value": "string"
        }]
    ,
        "preferredLanguage":"string",
        "roles": 
            [{ 
               "display": "string",
                "value": "string"
        }]
    ,
        "schemas":,
        "title":"string",
        "userName":"string"
}

Responses

Code Returns Type
200 OK
400 Bad Request
401 Unauthorized - Missing or invalid access token
403 Forbidden - Provided access token does not permit usage of this API or data
404 Not Found
409 Conflict
503 Service Unavailable