POST /oauth-application/retrieve-authorization-codeclient_id and client_secret)Authorization: Basic {btoa(client_id + ':' + client_secret)}| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The request ID returned from the authorization code request |
nonce | string | Yes | Must match the nonce used in the authorization request |
| Field | Description |
|---|---|
clientId | The OAuth Application's client ID |
nonce | The nonce value used for this authorization flow |
authorizationCode | The authorization code to exchange for an access token |
expiresAt | ISO 8601 timestamp when the authorization code expires |
id and the matching nonce. The returned authorization code is temporary and must be exchanged for an access token before it expires.nonce must exactly match the value used in the authorization requestBasic base64(client_id:client_secret)