Logo
15_Days_of_Postman_-_for_testers_IvanKo API Documentation

Update a user

PUT {{baseUrl}}/scim/v2/Users/{{userId}}

Updates a user's first and last name in Qodex.

Note:

This endpoint only updates a user's first and last name and pushes it to Qodex. You cannot update any other user attributes with the SCIM API.

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 




RESPONSES

status OK

{ "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:User" ], "id": "405775fe15ed41872a8eea4c8aa2b38cda9749812cc55c99", "userName": "taylor-lee@example.com", "name": { "givenName": "Taylor", "familyName": "Lee" }, "externalId": "12345678", "active": true, "meta": { "resourceType": "User", "created": "2021-02-22T04:24:13.000Z", "lastModified": "2021-02-22T04:24:13.000Z" } }



Curl
curl -X PUT 'https://api.getpostman.com/scim/v2/Users/userId'

ENDPOINTS