AM/FA/Inv - Reset OAuth Client Password

Details

/external/v1/oauth/client/password-reset

Synopsis

Reset OAuth Client Password

put

This route is used by the primary OAuth client to set a new password for other clients.

This route will typically be used an OAuth client loses their password.

This endpoint can be called by applications with access to scope "manageExternalClients".

Authorizations
Body
passwordstring · min: 8 · max: 72Required

The password of this OAuth client

Example: u7/JvJ+:X?Wc]6}.
clientIdstring · min: 5 · max: 50Required

The unique identifier of the OAuth client. Must be alphanumeric

Example: TEST1234Pattern: ^[a-zA-Z0-9-]*$
Responses
204
Successfully updated OAuth client's password
put
PUT /external/v1/oauth/client/password-reset HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 53

{
  "password": "u7/JvJ+:X?Wc]6}.",
  "clientId": "TEST1234"
}

No content

Last updated

Was this helpful?