Request
Body Params application/json
{
"identifier": "truevet",
"password": "pa$$word",
"platform": "web",
"deviceId": "as"
}
Request Code Samples
curl --location --request POST 'https://mock.apidog.com/m1/1052146-0-default/auth/login' \
--header 'Content-Type: application/json' \
--data-raw '{
"identifier": "truevet",
"password": "pa$$word",
"platform": "web",
"deviceId": "as"
}'
Responses
{
"success": true,
"code": "LOGIN_OK",
"message": "Authenticated",
"data": {
"tokenType": "Bearer",
"accessToken": "eyJhbGciOiJIUzI1NiIs...",
"expiresIn": 900,
"refreshToken": "rft_4e7c6d9a"
},
"meta": {
"sessionId": "sess_01J0YQ3X"
}
}
Modified at 2025-11-27 15:29:15