Logo
30 Days of Postman exercises API Documentation

Update User Information

PUT https://api.getpostman.com/scim/v2/Users/{{id}}

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

Only updates made to the user’s given and family name via the SCIM API will be pushed to Qodex. No other user attributes can be updated in Qodex using the SCIM API.

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Authorization
string




RESPONSES

status OK

{ "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:User" ], "id": "405775fe15ed41872a8eea4c8aa2b38cda9749812cc55c99", "userName": "test.user@okta.local", "name": { "givenName": "Test", "familyName": "User" }, "externalId": "23123123", "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/undefined' -H 'Authorization: undefined' -d '{"schemas":["urn:ietf:params:scim:schemas:core:2.0:User"],"userName":"undefined","name":{"givenName":"Test","familyName":"User"},"externalId":"23123123","locale":"en-US","active":true}'

ENDPOINTS