PLEASE DO NOT SHARE YOUR CREDENTIALS WITH YOUR CUSTOMERS Authorize API generates beaerer token which needs to be passed to all the APIsRequest
Body Params application/x-www-form-urlencoded
Request Code Samples
curl --location --request POST 'https://services-qa.roofhub.pro/Authentication/token' \
--header 'Accept: application/json' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'client_id=' \
--data-urlencode 'client_secret=' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'scope=ALL'
Responses
application/json {
"token_type": "string",
"expires_in": "int32",
"ext_expires_in": "int32",
"access_token": "string"
}
Modified at 2025-09-26 10:25:58