Account
Update authenticated user password
PUT
Update authenticated user password
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Body
application/json
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request PUT \
--url https://dev.flextell.ai/api/v1/account/password \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"current_password": "<string>",
"password": "<string>",
"password_confirmation": "<string>"
}
'{
"success": "<string>",
"data": {
"message": "<string>"
}
}The access token received from the authorization server in the OAuth 2.0 flow.
curl --request PUT \
--url https://dev.flextell.ai/api/v1/account/password \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"current_password": "<string>",
"password": "<string>",
"password_confirmation": "<string>"
}
'{
"success": "<string>",
"data": {
"message": "<string>"
}
}