Skip to content

List OAuth apps​

GET
/apps

Lists every OAuth application enabled for the site, including whether cloud code is attached.

Authorizations​

bearerToken|siteContext
bearerToken

Personal access token tied to a user account. Requires the X-Nimbu-Site header to scope requests.

TypeHTTP (bearer)
+
siteContext

Identifier of the site context when authenticating with a personal access token.

TypeAPI Key (header: X-Nimbu-Site)
or
siteToken

Site-scoped API token that already encodes the site context.

TypeHTTP (bearer)

Responses​

applications listed

application/json
JSON
[
{
"name": "string",
"url": "string",
"key": "string",
"domain": "string",
"callback_url": "string",
"created_at": "string",
"updated_at": "string",
"sdk_version": "string",
"functions": [
{
"name": "string",
"sha": "string"
}
],
"routes": [
{
"order": 0,
"verb": "string",
"path": "string",
"constraints": {
},
"sha": "string"
}
],
"callbacks": [
{
"event": "string",
"url": "string",
"sha": "string"
}
],
"jobs": [
{
"name": "string",
"every": "string",
"sha": "string"
}
],
"schedules": [
{
"name": "string",
"cron": "string",
"sha": "string"
}
]
}
]

Playground​

Authorization

Samples​