GET
/
oauth
/
client
/
{clientId}
curl --request GET \
  --url https://app.teable.io/api/oauth/client/%7BclientId%7D \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "clientId": "<string>",
  "name": "<string>",
  "secrets": [
    {
      "id": "<string>",
      "secret": "<string>",
      "lastUsedTime": "<string>"
    }
  ],
  "scopes": [
    "<string>"
  ],
  "logo": "<string>",
  "homepage": "<string>",
  "redirectUris": [
    "<string>"
  ]
}

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

200 - application/json
Returns the OAuth application
clientId
string
required
name
string
required
homepage
string
required
redirectUris
string[]
required
secrets
object[]
scopes
string[]