RESTPostOAuth2AccessTokenURLEncodedData

export type RESTPostOAuth2AccessTokenURLEncodedData = RESTOAuth2TokenOptionalClientCredentials & { grant_type: 'authorization_code'; code: string; redirect_uri?: string;};
export type RESTPostOAuth2AccessTokenURLEncodedData = RESTOAuth2TokenOptionalClientCredentials & { grant_type: 'authorization_code'; code: string; redirect_uri?: string;};
Remarks
This endpoint requires either HTTP Basic authentication using client_id:client_secret, or the client_id and client_secret must be provided in the form body.