Skip to main content
POST
/
api
/
v1
/
apps
Create a new app.
curl --request POST \
  --url https://api.rigbox.dev/api/v1/apps \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "workspace_id": "<string>",
  "description": "<string>",
  "metadata": "<unknown>",
  "port": 1,
  "protocol": "<string>"
}
'
{
  "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.

Body

application/json
name
string
required
workspace_id
string
required
app_kind
enum<string>
Available options:
service,
cli
description
string | null
metadata
any
port
integer<int32> | null
Required range: x >= 0
protocol
string | null

Response

App created

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.