POST
/auth/token
curl \
--request POST 'https://api.pairfon.com/auth/token' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"refreshToken":"string"}'
Request examples
{
"refreshToken": "string"
}
Response examples (200)
{
"token": "string",
"refreshToken": "string",
"user": {
"userId": "string",
"companyId": "string",
"role": "string",
"email": "hello@example.com"
}
}