v1
latestOpenAPI 3.0.02026-07-26166415635.8 KBOAuth
Get an OAuth client
The endpoint returns the details of OAuth client to display in the authorization page.
get/v1/oauth/clients/{client_id}
Query parameters
response_type'code' | 'token'
Example:token
code or token
redirect_uristring
Example:https://example.com/authorize
Redirect URI of the OAuth flow
scopestring
Example:general
Requested scopes by the OAuth flow
Response
Success.
Example response
{
"client_id": "7a3c52a910e1dc2abbb14da2b6b8e711",
"description": "Sample description",
"live_trading_approved": true,
"name": "TradingApp",
"privacy_policy": "",
"redirect_uri": [
"http://localhost"
],
"status": "ACTIVE",
"terms_of_use": "",
"url": "http://test.com"
}