POST
/
admin
/
api
/
v1
/
Token
cURL
curl --request POST \
  --url https://dashboard-api.meshconnect.com/admin/api/v1/Token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "clientId": "<string>",
  "clientSecret": "<string>"
}'
{
  "status": "ok",
  "message": "<string>",
  "displayMessage": "<string>",
  "errorHash": "<string>",
  "errorType": "<string>",
  "errorData": "<any>",
  "content": {
    "id_token": "<string>",
    "expires_in": 123,
    "status": "failed"
  }
}

Authorizations

Authorization
string
header
required

Authorization header using the Bearer scheme. Example: "Authorization: Bearer {Value}"

Body

Response

200 - application/json

OK

The response is of type object.