cURL
curl --request POST \ --url https://api.example.com/api/auth/signin \ --header 'Content-Type: application/json' \ --data ' { "password": "password123", "email": "[email protected]" } '
{ "accessToken": "<string>", "organizationId": "<string>", "tenantId": 123, "userId": 123 }
User password
"password123"
User email address
"[email protected]"
Sign-in successful. Returns access token and tenant/organization IDs.
JWT access token
Organization ID
Tenant ID
User ID