Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location --request GET 'http://petfen-account.local.com:8081/api/v1/account/list' \
--header 'X-Auth-Service: Bearer ' \
--header 'Authorization: Bearer <token>'
Responses
application/json [
{
"code": "string",
"first_name": "string",
"last_name": "string",
"phone_number": "string",
"email": "string",
"status": "string",
"vip": 0
}
]
Modified at 2025-10-09 16:33:00