POST
/
login
curl --request POST \
  --url https://www.wander-service.fr/api/clients/login \
  --header 'Content-Type: application/json' \
  --data '{
  "grantAccess": "clientSecret",
  "clientId": "<string>",
  "clientSecret": "<string>"
}'
{
  "accessToken": "<string>",
  "expiresIn": 3600,
  "tokenType": "Bearer",
  "refreshToken": "<string>"
}

Body

application/json

Allows you to log in with your clientId and clientSecret before receiving a refreshToken valid for 7 days, allowing you to log in again.

Response

201
application/json
Successful operation

The response is of type object.