Skip to main content
GET
/
api
/
v1
/
workspaces
/
{id}
/
services
List all workspace services with health status.
curl --request GET \
  --url https://api.rigbox.dev/api/v1/workspaces/{id}/services \
  --header 'Authorization: Bearer <token>'
{
  "services": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "exposed": true,
      "health_cmd": "<string>",
      "id": "<string>",
      "kind": "<string>",
      "name": "<string>",
      "source": "<string>",
      "status": "<string>",
      "updated_at": "2023-11-07T05:31:56Z",
      "workspace_id": "<string>",
      "log_sources": [
        {
          "source_ref": "<string>",
          "source_type": "<string>",
          "display_name": "<string>",
          "is_primary": true
        }
      ],
      "port": 123,
      "unit_name": "<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

Workspace ID

Response

200 - application/json

List of workspace services

services
object[]
required