POST
/
api
/
auth
/
authenticate
curl --request POST \
  --url http://localhost/api/auth/authenticate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form setCookie=true \
  --form 'email=<string>' \
  --form 'password=<string>'
{
  "expires_at": "2023-11-07T05:31:56Z",
  "access_token": "<string>",
  "refresh_token": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

email
string
required
password
string
required

Response

200
*/*
User successfully authenticated
expires_at
string
access_token
string
refresh_token
string