List All Connector SDK Packages
Returns a list of all Connector SDK packages in your Fivetran account.
Request schema
Query parameters
Paging cursor, read more about pagination
Number of records to fetch per page. Accepts a number in the range 1..1000; the default value is 100.
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
GET /v1/connector-sdk/packages?cursor=cursor_value&limit=100 HTTP/1.1 Accept: application/json Authorization: BasicHost: api.fivetran.com
Responses
200
Response status code
Response status text
The collection of returned items
The unique identifier for the Connector SDK package.
The unique identifier of the user who last updated the package.
The timestamp when the package was created.
The unique identifier of the user who created the package.
The connection identifier associated with this package. Each package can only be associated with one connection at a time. Returns null if the package is not yet associated with any connection.
The timestamp when the package was last updated.
The value of the cursor parameter for the next page
{ "code": "Success", "message": "Operation performed.", "data": { "items": [ { "id": "package_id", "last_updated_by": "user_id", "created_at": "2024-01-14T19:30:00Z", "created_by": "user_id", "connection_id": "connection_id", "updated_at": "2024-01-14T20:15:00Z" } ], "next_cursor": "cursor_value" } }