POST
/
v2
/
auth
/
sign-in
Sign in
curl --request POST \
  --url https://rest.forestreet.com/v2/auth/sign-in \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "email": "jsmith@example.com",
  "password": "<string>"
}'
{
  "message": "<string>",
  "accessToken": "<string>",
  "refreshToken": "<string>",
  "idToken": "<string>",
  "expiresIn": 123,
  "checksum": "<string>"
}

Authorizations

x-api-key
string
header
required

Pass a static API key for every request, provided by your customer support.

Body

application/json

Response

200
application/json

User signed in successfully

The response is of type object.