Skip to main content
POST
/
workspaces
/
{workspace_id}
/
connections
Create connection
curl --request POST \
  --url https://s-server-demo.siftd.ai:9800/api/workspaces/{workspace_id}/connections \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "credential": "<string>",
  "description": "<string>",
  "id": "<string>",
  "name": "<string>",
  "properties": {},
  "scheme": ""
}'
{
  "credential": "<string>",
  "description": "<string>",
  "id": "<string>",
  "name": "<string>",
  "properties": {},
  "scheme": ""
}

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

Body

application/json

Connection object

credential
string
description
string
id
string
name
string
properties
object
scheme
enum<string>
Available options:
,
aws,
azr,
gcp,
file,
k8s,
ddog,
github,
p8s,
jenkins,
grafana,
splunk,
shell,
python,
markdown,
rest

Response

201 - */*

Created

credential
string
description
string
id
string
name
string
properties
object
scheme
enum<string>
Available options:
,
aws,
azr,
gcp,
file,
k8s,
ddog,
github,
p8s,
jenkins,
grafana,
splunk,
shell,
python,
markdown,
rest
I