Skip to main content
GET
/
workspaces
/
{workspace_id}
/
addons
List addons
curl --request GET \
  --url https://s-server-demo.siftd.ai:9800/api/workspaces/{workspace_id}/addons \
  --header 'Authorization: Bearer <token>'
[
  {
    "addon_id": "<string>",
    "code": "<string>",
    "cxn_fields": {},
    "cxn_scheme": "",
    "description": "<string>",
    "name": "<string>",
    "requirements": "<string>",
    "tools": {}
  }
]

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 addons 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

addon_id
string
code
string
cxn_fields
object
cxn_scheme
enum<string>
Available options:
,
aws,
azr,
gcp,
file,
k8s,
ddog,
github,
p8s,
jenkins,
grafana,
splunk,
shell,
python,
markdown,
rest
description
string
name
string
requirements
string
tools
object

Map of tool name to Tool object

I