Update Connector SDK Package
Updates an existing Connector SDK package by uploading a new version of the connector code.
All connections using this package will automatically use the updated code on their next sync.
Request schema
Path parameters
The unique identifier for the Connector SDK package.
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Request
The ZIP file containing the Connector SDK package.
PATCH /v1/connector-sdk/packages/package_id HTTP/1.1 Accept: application/json Authorization: BasicContent-Type: multipart/form-data; boundary=---011000010111000001101001 Host: api.fivetran.com Content-Length: 115 -----011000010111000001101001 Content-Disposition: form-data; name="file" {} -----011000010111000001101001--
Responses
200
Response status code
Response status text
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.
{ "code": "Success", "message": "Operation performed.", "data": { "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" } }