Retrieve Quickstart Transformation Details
Returns the details for the specified Quickstart transformation.
Request schema
Path parameters
The unique identifier for the Quickstart Transformation within the Fivetran system.
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
GET /v1/qdm/transformations/transformation_id 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 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 unique identifier of the User within the Fivetran system who last modified the Quickstart Transformation.
The unique identifier for the Quickstart Package within the Fivetran system.
The unique identifier of the User within the Fivetran system who last selected or unselected the Quickstart Transformation.
The nearest predicted time when this model can start again.
The field indicates whether the tests have been configured for the Quickstart Transformation.
The last time when the Quickstart Transformation has been edited.
The last time when the Quickstart Transformation selected state has been changed.
{
"code": "Success",
"message": "Operation performed.",
"data": {
"id": "transformation_id",
"name": "transformation_name",
"status": "SUCCEEDED",
"paused": false,
"last_run": "2023-08-20T10:15:20.677566Z",
"edited_by_id": "user_id",
"package_id": "package_id",
"selected_by_id": "user_id",
"next_run": "2023-08-20T10:15:20.677566Z",
"run_tests": true,
"edited_at": "2023-08-20T10:15:20.677566Z",
"selected_at": "2023-08-20T10:15:20.677566Z"
}
}