POST
/
members
/
signin
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"
  }
}

Body

application/json
username
string
required

The username of the member

Example:

"john.doe@example.com"

password
string
required

The password of the member

Example:

"mySecurePassword123"

Response

200
application/json
Successful signin
jwt
string
required

JSON Web Token for authentication

Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c"

member
object
required