Get Started with Redwood for Oracle Cloud HCM Begin Now
To ensure that questions get required attention from community members and are NOT left unanswered, it’s important for the author to indicate (by selecting “Yes” or “No” when prompted) whether the question was answered. (newly added) Please note that it is also important to respond to EACH comment your question receives. Your Yes or No response ensures an accurate status for your question.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
How to get the rest API JSON payload for Bulk password reset?
Summary
How to get the rest API JSON payload for Bulk password reset?Content
Hi All,
Is there a way to generate the rest API JSON Payload to bulk update the password of users.
For example: below is the request body JSON .
Request Body JSON
{
"Operations":[
{
"method":"PATCH",
"path":"/Users/ENTER_USER1_GUID_HERE",
"bulkId":"clientBulkId1",
"data":{
"schemas":[
"urn:scim:schemas:core:2.0:User"
],
"password": "ENTER_PASSWORD_HERE"
}
},
{
"method":"PATCH",
"path":"/Users/ENTER_USER2_GUID_HERE",
"bulkId":"clientBulkId1",
"data":{
"schemas":[
"urn:scim:schemas:core:2.0:User"
],
"password": "ENTER_PASSWORD_HERE"
}
}
]
}
Thanks!
Sahil
4