Skip to main content
POST
/
customer
/
{customerId}
/
user
/
password
Set User Password
curl --request POST \
  --url https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/user/password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>",
  "newPassword": "<string>",
  "reseller": "<string>"
}
'
{
  "personId": "<string>",
  "personName": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

customerId
string
required

Body

application/json
token
string

Security token for password reset

newPassword
string

New password to set for the user

reseller
string

Reseller information

Response

Password successfully set

personId
string

Unique identifier of the person whose password was updated

personName
string

Name of the person whose password was updated