curl --location --request POST 'https://api.veniocrm.com/dev/authorization/Connect/Token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Ocp-Apim-Subscription-Key: <Your Subscription-Key>' \
--data-urlencode 'client_id=' <Your client_id>\
--data-urlencode 'client_secret=' <Your client_id>\
--data-urlencode 'grant_type=client_credentials'
{
"access_token": "<access_token>",
"expires_in": 3600,
"token_type": "Bearer"
}