APIs
REST APIs
Authentication
the onboarding apis use oauth2, you will need your api credentials which are provided with access to the detected platform api clients & scopes you can have multiple api clients created for your account, each api client us required to have a scope defined, scopes available are read or write authentication request with your credentials you can make a call to the authentication api curl x post "https //api detected app/api/v2/public/oauth/token" \\ h "content type application/json" \\ d { "grant type" "app credentials", "client id" "cli 123", "client secret" "sec abc", "slug" "my tenant" } grant type always app credentials for this flow client id / client secret values from your detected dashboard slug account or tenant identifier available in your detected dashboard authentication response you will recieve your token in the response { "token type" "bearer", "expires in" 31536000, "access token" "ijnasdina0910209109" }