GET
/
workspaces
/
{workspace_id}
/
runtimes
List runtimes
curl --request GET \
  --url https://s-server-demo.siftd.ai:9800/api/workspaces/{workspace_id}/runtimes \
  --header 'Authorization: Bearer <token>'
[
  {
    "auth_token": "<string>",
    "description": "<string>",
    "is_private": true,
    "managed_status": "<string>",
    "managed_type": "<string>",
    "name": "<string>",
    "owner_id": "<string>",
    "properties": {},
    "runtime_id": "<string>",
    "url": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

workspace_id
string
required

Workspace ID

Query Parameters

org_id
string
required

Organization ID

name_regex
string

Regex to filter runtimes by name

limit
integer
default:100

Maximum number of items to return

offset
integer
default:0

Number of items to skip

Response

200 - application/json

OK

The response is of type object[].