Resend a new API user's temporary password
POST
/api_users/password
You can resend a newly invited user's password via this POST
request
Body Required
Provided valid credentials, this route resends an email with temporary password for newly invited API user
POST /api_users/password
curl \
-X POST https://<your_environment_name>-uat-api.canopyservicing.com/api_users/password \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"email":"harriet@acmecorporation.com","service":"BP"}'
Request example
{
"email": "harriet@acmecorporation.com",
"service": "BP"
}
Response example (200)
{
"status": "success"
}