Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"first_name": "Dau",
"last_name": "DQ",
"email": "Desmond.Hoeger13@gmail.com",
"avatar": "https://avatars.githubusercontent.com/u/96071538",
"gender": "male",
"dob": 1444408646
}
Request Code Samples
curl --location --request PUT 'http://petfen-account.local.com:8081/api/v1/account/update' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"first_name": "Dau",
"last_name": "DQ",
"email": "Desmond.Hoeger13@gmail.com",
"avatar": "https://avatars.githubusercontent.com/u/96071538",
"gender": "male",
"dob": 1444408646
}'
Responses
application/json Modified at 2025-10-09 16:39:14