Get OAuth applications
Retrieves the list of all the OAuth applications registered to your client account.
| HTTP Method | URL |
|---|---|
| GET | baseUrl/oauth/applications/ |
Request headers
Requires a valid login token.
{
"Authorization" : "Bearer" + token
}
Request body
empty
Success Response
HTTP code: 200
In case of success, it will return a JSON array containing your OAuth applications configs.
[
//
//
{
"clientId" : // OAuth client id
"clientSecret": // OAuth client secret
"redirectUris": // A space separated string list of all your OAuth redirect URIs
},
//
//
]
Error Response
none