Skip to main content
PUT
/
login
Passwort ändern
curl --request PUT \
  --url https://{tenant}.stamp.eu/rest/login \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "current_password": "<string>",
  "password": "<string>"
}
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
current_password
string
required
password
string
required
Minimum string length: 4

Response

Passwort erfolgreich geändert

message
string