Work with pre-built recipes that automate common data pipeline workflows.
Recipes are templated workflows that combine multiple API operations into reusable patterns. They simplify common tasks like:
- Setting up end-to-end data pipelines (source → extract → load → destination)
- Configuring multiple related extracts at once
- Applying best-practice configurations
Recipes accelerate implementation by providing proven patterns for common use cases.
Automated Recipes extend this concept with pre-configured data transformation templates.
List automated recipe templates
Returns a paginated list of available automated recipe templates that can be used to create automated recipes.
query Parameters
pagePage number for pagination
page_sizeNumber of results per page (max 100)
searchSearch templates by name
data_sourcesFilter by data sources (comma-separated list, e.g., "google_analytics,facebook_ads")
List automated recipe templates › Responses
List of automated recipe templates
countTotal number of templates
nextURL to the next page
previousURL to the previous page
Get automated recipe template detail
Returns detailed information about a specific automated recipe template, including its tree structure and dependencies.
path Parameters
template_idAutomated recipe template ID
Get automated recipe template detail › Responses
Automated recipe template details
idTemplate ID
titleTemplate title
descriptionTemplate description
List of data sources used by this template
Tree structure showing template dependencies
dependencies_countNumber of dependencies in the template
created_atTemplate creation timestamp
updated_atTemplate last update timestamp
List automated recipes
Returns a paginated list of automated recipes in the workspace.
query Parameters
template_idFilter by template ID
stateFilter by recipe state
pagePage number for pagination
page_sizeNumber of results per page (max 100)
List automated recipes › Responses
List of automated recipes
countTotal number of recipes
nextURL to the next page
previousURL to the previous page
Create automated recipe
Creates a new automated recipe from a template.
Create automated recipe › Request Body
template_idID of the automated recipe template
titleRecipe name. If not specified, template name is used
Create automated recipe › Responses
Automated recipe created successfully
recipe_idUnique recipe identifier (numeric string)
template_idID of the template this recipe was created from
titleRecipe title
stateInitial recipe state (typically "Extracting Data")
Get automated recipe detail
Returns detailed information about a specific automated recipe, including its configuration and connections.
path Parameters
recipe_idAutomated recipe ID (numeric string)
Get automated recipe detail › Responses
Automated recipe details
recipe_idUnique recipe identifier (numeric string)
template_idID of the template this recipe was created from
datatable_idAssociated data table ID (null if not yet created)
titleRecipe title
stateCurrent recipe state
data_sourcesList of configured data source names
allowed_data_sourcesList of allowed data source names for this recipe
List of configured connections
sync_from_dateStart date for data synchronization
last_build_atLast successful build timestamp
created_atRecipe creation timestamp
updated_atRecipe last update timestamp
Update automated recipe configuration
Updates the configuration of an automated recipe, including data sources, connections, and sync settings.
path Parameters
recipe_idAutomated recipe ID (numeric string)
Update automated recipe configuration › Request Body
data_sourcesList of data source names to include
List of connections with accounts
sync_from_dateStart date for data synchronization (YYYY-MM-DD)
Update automated recipe configuration › Responses
Recipe configuration updated successfully (empty body)
Build automated recipe
Triggers the build process for an automated recipe. The recipe will transition through states (Extracting Data -> Building Dependencies -> Ready To Work or Failed).
path Parameters
recipe_idAutomated recipe ID (numeric string)
Build automated recipe › Responses
Build started successfully
statusBuild operation status
messageHuman-readable status message

