Skip to main content
GET
/
api
/
apps
List all apps for the authenticated user.
curl --request GET \
  --url https://api.rigbox.dev/api/apps \
  --header 'Authorization: Bearer <token>'
{
  "apps": [
    {
      "allowed_emails": [
        "<string>"
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "name": "<string>",
      "node_id": "<string>",
      "port": 1,
      "status": "active",
      "subdomain": "<string>",
      "updated_at": "2023-11-07T05:31:56Z",
      "user_id": "<string>",
      "visibility": "private",
      "workspace_id": "<string>",
      "description": "<string>",
      "managed": true,
      "metadata": "<unknown>",
      "protocol": "<string>",
      "system_tags": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

List of user apps

apps
object[]
required