Authenticate

Authenticate with Spy

Body·
required
application/json
  • clientID
    Type: string
    required
  • clientSecret
    Type: string
    required
Responses
  • application/json
Request Example for post/auth/login
curl https://demo.spysystem.dk/api/v1/auth/login \
  --request POST \
  --header 'Content-Type: application/json' \
  --data '{
  "clientID": "",
  "clientSecret": ""
}'
{
  "status": 1,
  "message": "string",
  "data": {
    "token": "string"
  }
}