Authentication (Client Credentials)
All APIs in this documentation use OAuth 2.0 Client Credentials Grant against Genesys Cloud in the Frankfurt (eu-central-1) region.
Token Endpoint
| Environment | URL |
|---|---|
| Dev | https://login.mypurecloud.de/oauth/token |
| Prod | TBD (to be provided by platform team) |
Request
- Method: POST
- URL:
https://login.mypurecloud.de/oauth/token - Content-Type:
application/x-www-form-urlencoded - Authentication:
Basic <base64(clientId:clientSecret)>
Body parameters
| Name | Required | Type | Description |
|---|---|---|---|
| grant_type | Yes | String | Must be client_credentials |
| OrgName | Yes | String | Genesys Cloud organization name (org_name) |
Example body:
grant_type=client_credentials&OrgName=<org_name>