Generate authentication token
Generates a JWT token for staff authentication
Request
Body Params application/json
{
"email_id": "string",
"password": "string",
"company_uuid": "string"
}
Request Code Samples
curl --location --request POST '/token' \
--header 'client_id;' \
--header 'Content-Type: application/json' \
--data-raw '{
"email_id": "string",
"password": "string",
"company_uuid": "string"
}'
Responses
text/plain
Token generated successfully
{
"token": "string",
"refresh_token": "string",
"success": true,
"errors": [
"string"
]
}
Modified at 2025-06-12 13:10:23