List connections
GET/workspace/:ws_id/connections
Returns a list of connections by a filter
Request
Path Parameters
ws_id stringrequired
workspace ID
Query Parameters
q stringrequired
For the RQL query syntax, visit our RQL query documentation in the RQL Format
tab
Responses
- 200
- 400
- 404
ok
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
limit integer
offset integer
results object[]
attributes object
property name* object
value
connection_type_id string
created_at integer
created_by string
created_with_o_auth boolean
creation_location string
creation_method string
description string
display_name string
external_id string
ExternalId mapping to external entity identifier associated with this connection (used on revoke/uninstall events e.g.)
full_name string
icon_uri string
id string
is_shared boolean
name string
Connection names are unique per tenant as they are used in playbook YAML
secret_manager string
secret_manager_name string
shared_from string
shared_with string[]
slug_name string
status string
tags string[]
tenant_id string
type_name string
updated_at integer
updated_by string
used_by object
subflows object
count integer
names string[]
workspace_id string
workspace_name string
total integer
{
"limit": 0,
"offset": 0,
"results": [
{
"attributes": {},
"connection_type_id": "string",
"created_at": 0,
"created_by": "string",
"created_with_o_auth": true,
"creation_location": "string",
"creation_method": "string",
"description": "string",
"display_name": "string",
"external_id": "string",
"full_name": "string",
"icon_uri": "string",
"id": "string",
"is_shared": true,
"name": "string",
"secret_manager": "string",
"secret_manager_name": "string",
"shared_from": "string",
"shared_with": [
"string"
],
"slug_name": "string",
"status": "string",
"tags": [
"string"
],
"tenant_id": "string",
"type_name": "string",
"updated_at": 0,
"updated_by": "string",
"used_by": {
"subflows": {
"count": 0,
"names": [
"string"
]
}
},
"workspace_id": "string",
"workspace_name": "string"
}
],
"total": 0
}
Can not retrieve the list of connections
- application/json
- Schema
- Example (from schema)
Schema
data
details string
identifier string
message string
status integer
user_error
{
"data": {},
"details": "string",
"identifier": "string",
"message": "string",
"status": 404,
"user_error": {}
}
Can not find Connections
- application/json
- Schema
- Example (from schema)
Schema
data
details string
identifier string
message string
status integer
user_error
{
"data": {},
"details": "string",
"identifier": "string",
"message": "string",
"status": 404,
"user_error": {}
}
Loading...