The /vars
resource is used to identify which data points have been
collected in your flows. This resource is used to determine which data
points are available for exports and stats queries.
As a lead is processed by a flow, a variable for every field value and
every piece of appended data is created. If the variable for a data point
already exists, a new one is not created. That is to say that there will
only ever be one lead.email
variable. Each time an email address is
collected, the last_seen_at
timestamp is updated.
OK
curl -i -X GET \ 'https://app.leadconduit.com/vars?flow_id=string&start=2019-08-24T14%3A15%3A22Z&end=2019-08-24T14%3A15%3A22Z'
[- {
- "name": "string",
- "last_used_at": "2019-08-24T14:15:22Z",
- "first_used_at": "2019-08-24T14:15:22Z",
- "type": "string",
- "description": "string",
- "label": "string",
- "module_id": "string",
- "entity_id": "2019-08-24T14:15:22Z",
- "examples": [
- "string"
]
}
]