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" } }
Authorization header using the Bearer scheme. Example: "Authorization: Bearer {Value}"
OK
The response is of type object.
object
Was this page helpful?