Given a list of lookup table ids, returns the account's flows (enabled or disabled) that reference each table. A flow can reference a table in two ways:
recipient: the flow has a Lookup Table query step mapping the table
(leadconduit-lookup-table.outbound.query). The link points to the step editor.pricing: the flow (or one of its sources) uses a Bid Table pricing service
mapping the table (leadconduit-lookup-table.outbound.pricing). The link
points to the flow's sources editor.A flow is returned once per table. When it references the same table both ways,
both values appear in used_by and the link favors the step editor.
enabled reflects the handler's enabled flags along the usage's path (flow then
step for a recipient, flow then source for a source-level pricing service); it is
false when any of those is disabled.
required | string or Array of strings Lookup table ids to search for. Accepts either a comma-separated string
( |
An object keyed by each requested lookup table id. Each value is the list of flows using that table (empty when the table is not used by any enabled flow).
Bad request - missing or invalid lookup table ids
Authorization information is missing or invalid.
{- "6a3e94cf65d2cb7301263801": [
- {
- "id": "6a43a94e16fd390c2ac9185e",
- "name": "My Flow",
- "used_by": [
- "recipient",
- "pricing"
], - "enabled": true,
}
], - "6a3e94cf65d2cb7301263802": [ ]
}