Get Template

This section describes the endpoint used to get information from an ETL template that a user has permission to access. Please note that you must have permission to access the template you select.

Authentication & Authorization

Use application tokens to authenticate your request using these instructions: Authorization & Authentication
Required application permission on Permission Token: Read Model

URI

Request URI

GET https://{region}.vena.io/api/public/v1/etl/templates/{templateId}

URI Parameter

Name Required Type Description
region Yes string The name of your region (e.g. "us1")
templateId Yes string The template ID (18 or 19 digits)

Response

Name Type Description
200 OK ETLTemplateWithSteps A Vena template with steps information

Examples

Sample Request

curl https://us2.vena.io/api/public/v1/etl/templates/1193658473950284544 -u 1112140682300620800.1:51fd255f934040649f98d2a74d1c4391

Sample Response

Status code: 200

{
"id": "1193658473950284544",
"name": "LoadGL",
"lastRunTime": "1623338765403",
"modelId": "988930839071293441",
"modelName": "Financial Model",
"steps": [
{
"stepName": "Importing [awaiting data] (intersections)",
"dataType": "intersections",
"inputId": "1111870468677173248"
}
]
}