Skip to main content
GET
/
v1
/
api
/
oauth
/
apps
List OAuth apps
curl --request GET \
  --url https://api.hq.zone/v1/api/oauth/apps \
  --header 'Authorization: Bearer <token>'
[
  {
    "client_id": "<string>",
    "client_type": "<string>",
    "created_at": "<string>",
    "name": "<string>",
    "redirect_uris": [
      "<string>"
    ],
    "scopes": [
      "<string>"
    ]
  }
]

Authorizations

Authorization
string
header
required

Personal Access Token. Send as Authorization: Bearer hq_pat_....

Response

200 - application/json

The caller's registered OAuth apps

client_id
string
required
client_type
string
required

public (PKCE, no secret) or confidential (has a secret).

created_at
string
required
name
string
required
redirect_uris
string[]
required
scopes
string[]
required