Can some one help me to find curl request for update user Api? What will be the correct curl format?
© 1999-2024 RingCentral, Inc. All rights reserved.
Privacy Notice
Can some one help me to find curl request for update user Api? What will be the correct curl format?
Are you looking for this API: https://platform.devtest.ringcentral.com/scim/v2/Users/id ?
The curl format will be something like this:
curl --request PUT Â --url https://platform.devtest.ringcentral.com/scim/v2/Users/123456 Â --header 'accept: application/json' Â --header 'authorization: Bearer <your access_token>' Â --header 'content-type: application/json' Â --data '{"active":false,"name":{"familyName":"Test","givenName":"User"},"emails":u{"type":"work","value":"john.doe@example.com"}],"userName":"john.doe@example.com","schemas":u"urn:ietf:params:scim:schemas:core:2.0:User"]}'
The above is the example format. You need put you required value
Thank you.. got it
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.