Public Core-Org Domain API

Public Core-Org Domain API

All Core Org APIs require a valid authentication token, this token can be obtained in two ways.

  1. When using a api token, an authentication token can be obtained by issuing a POST like this:
curl --location --request POST 'https://console.cloud.broadcom.com/csp/gateway/am/api/auth/api-tokens/authorize' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'api_token=string' 
  1. When using client credentials, an authentication token can be obtained by issuing a POST like this:
curl --location --request POST 'https://console.cloud.broadcom.com/csp/gateway/am/api/auth/token' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --header 'Authorization: Basic {encoded:OAuth-client-id+client_secret}' \
  --data-urlencode 'grant_type=client_credentials'