Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 380 Bytes

setCredentials.md

File metadata and controls

23 lines (19 loc) · 380 Bytes

setCredentials

Change account credentials.

PATCH /accounts/v1/me/credentials

# Request Headers
Content-Type: application/json
Authorization: Bearer ${TOKEN}

# Request Body
## Set Username
{
  "username": "${username}"
}
## Set Password
{
    "current_password": "${current_password}"
    "new_password": "${new_password}"
}