Skip to main content

Connectors

#Connectors API Documentation

GET: Retrieve Connectors​

Description​

This route is used to retrieve a list of connector store for a specific project.

Method​

GET

Response​

  • Returns a JSON response with a list of connector store for a specific project or an error message.

Status Codes​

  • 200 OK: connector store retrieved successfully.
  • 500 Internal Server Error: Error listing connector store.

Throws​

  • An error if request validation or connector store retrieval fails.

Example cURL​

curl --location 'https://app.ai12z.net/api/projects/{projectId}/connectorstore' \
--header 'Authorization: Bearer <YOUR_KEY>' \

GET: Retrieve Connectors by ID​

Description​

This route is used to retrieve details of a connector store for a specific project by its ID.

Method​

GET

URL Parameters​

  • id (string): The ID of the conncetor to retrieve.

Response​

  • Returns a JSON response with conncetor details such as id,name, author, value and description.

Status Codes​

  • 200 OK: conncetors retrieved successfully.
  • 500 Internal Server Error:Error retrieving the conncetor.

Throws​

  • An error if the conncetor is not found or any other error occurs.

Example cURL​

curl --location 'https://app.ai12z.net/api/projects/{projectId}/connectorstore' \
--header 'Authorization: Bearer <YOUR_KEY>'