Skip to main content
GET
/
oauth
/
clients
List Clients
curl --request GET \
  --url https://api.example.com/oauth/clients \
  --header 'Authorization: Bearer <token>'
[
  {
    "client_id": "<string>",
    "name": "<string>",
    "redirect_uris": [
      "<string>"
    ],
    "scopes": [
      "<string>"
    ],
    "is_public": true
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

client_id
string
required
name
string
required
redirect_uris
string[]
required
scopes
string[]
required
is_public
boolean
required