Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Use this endpoint to update the definition of a group, such as “displayname”.

Endpoint

Method

/scim/Groups/[GROUP-ID]
GROUP-ID is the identifier for the entity in Talentech

PATCH

 

 
This endpoint is a PATCH endpoint and supports 1 or more changes through a list of Operation elements

Request-object:

{
    "Operations": [{
        "op": "Replace",
        "path": "displayName",
        "value": "Updated displaynamegoeshere"
    }]
}

 

Property

Type

Required

 

op

Type of operation.
Support values are:
-Replace

yes

 

Replaceshould be used for all path-values

path

The path to the property to change

yes

 

value

The value of the property to change.
Supported values are:
displayname

yes

 



Sample-Request:

curl --location --request PATCH '[API-URL]/scim/Groups/[GROUP-ID]' \
--header 'Authorization: Bearer [API-TOKEN]' \
--header 'Content-Type: application/json' \
--data-raw '{
    "Operations": [{
        "op": "Replace",
        "path": "displayName",
        "value": "Updated displaynamegoeshere"
    }]
}'

 

Responses:


Success - 204 No-Content

Statuscode

204


404-Not found

Statuscode

404

  • No labels