Create a new Quickstart Transformation
Creates a new Quickstart transformation for the specified Quickstart model.
Request schema
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Request
The field indicates whether the Quickstart Transformation is in paused state.
The unique identifier for the Quickstart Model within the Fivetran system.
The field indicates whether the tests have been configured for the Quickstart Transformation.
POST /v1/qdm/transformations HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Content-Type: application/json
Host: api.fivetran.com
Content-Length: 68
{
"paused": false,
"model_id": "model_id",
"run_tests": true
}
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"
}
}