v1

latestOpenAPI 3.1.02026-07-24239123562.1 KB
connectors

List all connectors artifacts

Returns a list of all Connector artifacts, optionally filtered by namespace type

get/v1/artifacts/connectors

Query parameters

namespace_type'common' | 'client' | 'private'

Namespace type of artifacts to be returned ('common', 'client', or 'private')

latest_onlyboolean

Only return the latest version of each artifact

include_prereleasesboolean

Include prerelease artifacts in search

Response

Successfully fetched ConnectorObject list

namespacestring required
slugstring required
versionstring required
namestring nullable
descriptionstring nullable
createdAtstring date-time required
lastUpdatedAtstring date-time required
otherVersionsstring[]
type'connector' required
iconPresignedUrlstring nullable required

Example response

[
  {
    "type": "connector",
    "namespace": "common",
    "slug": "akta",
    "version": "v1.2.0",
    "name": null,
    "description": null,
    "iconPresignedUrl": "https://localhost/some_long_url",
    "createdAt": "2023-02-16T15:15:34.269Z",
    "lastUpdatedAt": "2023-02-16T15:15:34.269Z",
    "otherVersions": [
      "v2.0.0",
      "v1.3.0",
      "v1.2.0",
      "v1.0.0"
    ]
  }
]