Retrieve Connector SDK Package Details
Returns details for a specific Connector SDK package.
Request schema
Path parameters
package_id
stringrequired
The unique identifier for the Connector SDK package.
example:
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Http + 1.1
GET
https://api.fivetran.com/v1/connector-sdk/packages/package_id
GET /v1/connector-sdk/packages/package_id HTTP/1.1 Accept: application/json Authorization: BasicHost: api.fivetran.com
Responses
200
Successful response
404
Package not found
200
code
stringrequired
Response status code
example:
message
string
Response status text
example:
data
objectrequired
id
stringrequired
The unique identifier for the Connector SDK package.
example:
last_updated_by
stringrequired
The unique identifier of the user who last updated the package.
example:
created_at
stringrequired
The timestamp when the package was created.
format:
example:
created_by
stringrequired
The unique identifier of the user who created the package.
example:
connection_id
string
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.
example:
updated_at
stringrequired
The timestamp when the package was last updated.
format:
example:
{ "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" } }