Skip to main content
GET
/
v1
/
core
/
oauth
/
apps
/
{clientId}
Get a specific OAuth app
curl --request GET \
  --url https://functions.siro.ai/api-externalApi/v1/core/oauth/apps/{clientId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "appName": "<string>",
    "clientId": "<string>",
    "organizationId": "<string>",
    "owner": "<string>",
    "deleted": true,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "deletedAt": "2023-11-07T05:31:56Z"
  },
  "cursor": "<string>",
  "pageSize": 123,
  "limit": 123,
  "total": 123,
  "hasNextPage": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

clientId
string
required

Response

Get a specific OAuth app

data
object
required
cursor
pageSize
number
limit
number
total
number | null
hasNextPage
boolean