List All Quickstart Package Metadata
Returns a list of available Quickstart transformation package metadata details
Request schema
Query parameters
Specify the service identifier to filter Quickstart packages by connection service
Specify the package name to filter Quickstart packages by name
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/transformations/package-metadata?service=service&name=service&cursor=cursor_value&limit=100 HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Host: api.fivetran.com
Responses
Successful response schema
Response status code
Response status text
The collection of returned items
The unique identifier for the Quickstart transformation package definition within the Fivetran system
The Quickstart transformation package name
The Quickstart package definition version
The set of connector types
The list of transformation output models
The value of the cursor parameter for the next page
{
"code": "Success",
"message": "Operation performed.",
"data": {
"items": [
{
"id": "package_definition_id",
"name": "package_definition_name",
"version": "version",
"connector_types": [
"string"
],
"output_model_names": [
"string"
]
}
],
"nextCursor": "cursor_value"
}
}