Skip to main content
GET
/
connectors
List all connectors
curl --request GET \
  --url https://api.artosai.com/connectors \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "sourceType": "<string>",
    "description": "<string>",
    "status": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "created_by": "<string>",
    "last_used": "2023-11-07T05:31:56Z",
    "usage_count": 123,
    "functions": [
      "<string>"
    ],
    "rules": [
      "<string>"
    ]
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer

Results per page (default varies by endpoint).

Required range: x >= 1
offset
integer

Number of results to skip.

status
string

Filter by connector status.

Response

200 - application/json

List of connectors

id
string
name
string
sourceType
string
description
string
status
string
created_at
string<date-time>
created_by
string
last_used
string<date-time>
usage_count
integer
functions
string[]
rules
string[]