Skip to content

Change my password (step-up; logs out other sessions)

POST
/store/v1/customers/me/password
curl --request POST \
--url https://your-store.example.com/store/v1/customers/me/password \
--header 'Content-Type: application/json' \
--data '{ "currentPassword": "example", "newPassword": "example" }'
Media type application/json
object
currentPassword
required
string
>= 1 characters <= 1024 characters
newPassword
required
string
>= 12 characters <= 1024 characters
Example generated
{
"currentPassword": "example",
"newPassword": "example"
}