Skip to main content
GET
/
api
/
v1
/
apps
/
{id}
Get an app by ID.
curl --request GET \
  --url https://api.rigbox.dev/api/v1/apps/{id} \
  --header 'Authorization: Bearer <token>'
{
  "app": {
    "allowed_emails": [
      "<string>"
    ],
    "app_kind": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "custom_domain_verified": true,
    "depends_on": [
      "<string>"
    ],
    "id": "<string>",
    "managed": true,
    "metadata": "<unknown>",
    "name": "<string>",
    "node_id": "<string>",
    "port": 1,
    "protocol": "<string>",
    "subdomain": "<string>",
    "system_tags": [
      "<string>"
    ],
    "updated_at": "2023-11-07T05:31:56Z",
    "user_id": "<string>",
    "workspace_id": "<string>",
    "custom_domain": "<string>",
    "description": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.rigbox.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

App ID (e.g. app-xxxxxxxx)

Response

App details

app
object
required

OpenAPI-facing mirror of the canonical app payload.

Response types can keep serializing rig_data_store::models::App while pointing schema generation at this local mirror to avoid cross-crate derive coupling in utoipa.