cURL
curl --request PUT \ --url https://developersandbox-api.flutterwave.com/profile/actions \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "old_password": "<string>", "new_password": "<string>", "action_type": "update_password" } '
{ "status": "success", "message": "<string>" }
Perform an update action on credential
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
A unique identifier to track this operation. It must be between 12 and 255 characters in length.
12 - 255
update_password
Successfully updated the password
success
failed
Was this page helpful?