v1

latestOpenAPI 3.0.0Apache 2.02026-08-063010285.3 KB
Account

Update API account password

Update API account password - this API must be called to set a permanent password after registration or a forgotten password reset using /resetpassword

post/v1/account/setpassword

Request body

api_account_ownerstring required
current-passwordstring required
passwordstring required

Example request

{
  "api_account_owner": "your_api_account@email.com",
  "current-password": "Your_Current_PW!1",
  "password": "Your_New_PW!1"
}

Response

SetPasswordResponse

messagestring

Example response

{
  "message": "New Password Set"
}