cURL
curl --request POST \ --url https://api.sandbox.goteal.co/members/signin \ --header 'Content-Type: application/json' \ --data '{ "username": "john.doe@example.com", "password": "mySecurePassword123" }'
{ "jwt": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c", "member": { "id": "123e4567-e89b-12d3-a456-426614174000", "email": "john.doe@example.com", "role": "Admin", "name": "John Doe", "status": "active", "mfa_status": "sms" } }
The username of the member
"john.doe@example.com"
The password of the member
"mySecurePassword123"
Successful signin
JSON Web Token for authentication
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c"
Show child attributes