post https://api.us-west.exabeam.cloud/auth/v1/token
OAuth 2.0 Client Credential grant is used when applications request an access token to access their own resources, not on behalf of a user.
Log in to see full request history
Responses
OAuth 2.0 Client Credential grant is used when applications request an access token to access their own resources, not on behalf of a user.
xxxxxxxxxx
12import requests
url = "https://api.us-west.exabeam.cloud/auth/v1/token"
payload = { "grant_type": "client_credentials" }
headers = {
"accept": "application/json",
"content-type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)
Try It!
to start a request and see the response here! Or choose an example: