Retrieve Quickstart Package Details
Returns a Quickstart package details if a valid identifier was provided.
Request schema
Path parameters
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
GET /v1/qdm/packages/null 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 Package within the Fivetran system.
Interval.
Schedule type
Days of week
The time of the day the transformation should be launched at. The following values are supported: '00:00', '00:30', '01:00', '01:30', '02:00', '02:30', '03:00', '03:30', '04:00', '04:30', '05:00', '05:30', '06:00', '06:30', '07:00', '07:30', '08:00', '08:30', '09:00', '09:30', '10:00', '10:30', '11:00', '11:30', '12:00', '12:30', '13:00', '13:30', '14:00', '14:30', '15:00', '15:30', '16:00', '16:30', '17:00', '17:30', '18:00', '18:30', '19:00', '19:30', '20:00', '20:30', '21:00', '21:30', '22:00', '22:30', '23:00', '23:30'
The timestamp when Quickstart Package was created.
The list of unique identifiers for the connections within the Fivetran system.
The unique identifier for the Group within the Fivetran system.
The unique identifier for the User within the Fivetran system.
{
"code": "Success",
"message": "Operation performed.",
"data": {
"id": "package_id",
"version": "string",
"schedule": {
"interval": 60,
"schedule_type": "TIME_OF_DAY",
"days_of_week": [
"MONDAY",
"FRIDAY"
],
"time_of_day": "14:00"
},
"created_at": "2023-08-20T10:15:20.677566Z",
"connection_ids": [
"connector_id"
],
"group_id": "group_id",
"created_by_id": "user_id"
}
}