Retrieve Quickstart Transformations
Returns a list of all Quickstart transformations within your Fivetran account or within the specified Quickstart package in your account.
Request schema
Query parameters
The unique identifier for the Quickstart package within the Fivetran system.
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/qdm/transformations?package_id=package_id&cursor=qq34ja5jhl51hl&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 return items
The unique identifier for the Quickstart Transformation within the Fivetran system. Quickstart Transformation ids match with the Quickstart Model ids.
The Quickstart Transformation name.
The status of Quickstart Transformation.
The field indicates whether the Quickstart Transformation is in paused state.
The last transformations run time.
The field indicates whether the tests have been configured for the Quickstart Transformation.
The unique identifier for the Quickstart Package within the Fivetran system.
The nearest predicted time when this model can start again.
The value of the cursor parameter for the next page
{
"code": "Success",
"message": "Operation performed.",
"data": {
"items": [
{
"id": "transformation_id",
"name": "transformation_name",
"status": "RUNNING",
"paused": false,
"last_run": "2023-08-20T10:15:20.677566Z",
"run_tests": true,
"package_id": "package_id",
"next_run": "2023-08-20T10:15:20.677566Z"
}
],
"nextCursor": "cursor_value"
}
}