Menu
Connectors
Talon.One
Run Talon.One promotions — the Integration API (customer sessions, events, loyalty, referrals, coupon reservations) and the Management API (applications, campaigns, coupons, rulesets, loyalty programs). Covers the two auth schemes, applicationId scoping, and the effects response.
On this page
Connecting Talon.One
Every action needs a Talon.One connection. Talon.One has two APIs with different auth, and this connector exposes both:
- Integration API (the
integrationgroup — customer sessions, profiles, events, loyalty balances, referrals, coupon reservations) — authenticated with an Application API Key:Authorization=ApiKey-v1 <key>(from Settings → Developer settings on an Application). - Management API (the
managementgroup — Applications, campaigns, coupons, rulesets, loyalty programs, audiences) — authenticated with either a session token (Authorization=Bearer <token>) or a Management API Key (Authorization=ManagementKey-v1 <key>).
Configure the connection with whichever key(s) you need; the Authorization header is a field on each action, so you can also set it per-action via Additional Headers.
Set the Base URL. The spec's server is a placeholder — use the Base URL field to enter your deployment host, https://<your-company>.talon.one.
How Talon.One actions are structured
Two picker groups (plus Generic Request):
- integration (~36 actions) — the runtime API you call from your commerce backend.
- management (~184 actions) — the configuration API for the Talon.One Campaign Manager.
Management operations are almost all scoped by applicationId (a path parameter), and campaign-level ones also by campaignId. Get the ids from List Applications (GET /v1/applications) and List campaigns (GET /v1/applications/{applicationId}/campaigns).
Reading the response
Every action's result is at {{<stepReference>.response...}} (see Step Reference): {{<stepReference>.response.status}}, {{<stepReference>.response.headers.<name>}}, and {{<stepReference>.response.data...}} for the body.
- Integration operations return
{{<stepReference>.response.data.effects}}(the list of things Talon.One decided —setDiscount,acceptCoupon,addLoyaltyPoints,rejectCoupon, …) plus the updatedcustomerSession/customerProfileand, for/v2endpoints, a top-level{{<stepReference>.response.data.customerSession}}. Read the discount from the relevant effect'sprops. - Management list operations return
{{<stepReference>.response.data.data}}(the array) and{{<stepReference>.response.data.totalResultSize}}; single-resource reads return the object directly underdata. Page withpageSize/skip(orpage) via Additional Query Parameters; several list endpoints have a/no_totalvariant that skips the (expensive) count.
A non-2xx response does not fail the step — Talon.One's error body ({{<stepReference>.response.data.errors}}, each { title, details, source }) is returned with the real status.
Integration API
- Customer sessions —
PUT /v2/customer_sessions/{customerSessionId}(create/update a session — this is the main endpoint: send the cart, get back effects),GET /v2/customer_sessions/{customerSessionId},PUT .../reopen,POST .../returns(return cart items). - Customer profiles —
PUT /v2/customer_profiles/{integrationId},PUT /v2/customer_profiles(bulk),POST /v2/customer_audiences,GET /v1/customer_profiles/{integrationId}/inventory(coupons, referrals, loyalty, giveaways for a profile),/achievements. - Events —
POST /v2/events(track a custom event that can trigger campaigns). - Loyalty — read balances / points / transactions for a profile or a loyalty card (
GET /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/balancesetc.),POST .../activate_points,POST .../cards(generate a card), link/unlink a card to a profile. - Referrals —
POST /v1/referrals,POST /v1/referrals_for_multiple_advocates. - Coupon reservations —
POST|DELETE /v1/coupon_reservations/{couponValue},GET /v1/coupon_reservations/customerprofiles/{couponValue}. - Catalogs —
PUT /v1/catalogs/{catalogId}/sync. - Audiences —
POST /v2/audiences,PUT|DELETE /v2/audiences/{audienceId},DELETE /v2/audiences/{audienceId}/memberships. - GDPR —
DELETE /v1/customer_data/{integrationId}.
Management API
- Applications —
GET /v1/applications,GET /v1/applications/{applicationId}. - Campaigns —
GET|POST /v1/applications/{applicationId}/campaigns,GET|PUT|DELETE /v1/applications/{applicationId}/campaigns/{campaignId},POST .../copy,POST .../campaigns_search,/rulesets,/notifications, campaign groups, templates,create_campaign_from_template, experiments. - Coupons —
POST|PUT|DELETE /v1/applications/{applicationId}/campaigns/{campaignId}/coupons(batch),PUT|DELETE .../coupons/{couponId},.../coupons_async,.../coupons_with_recipients,.../coupons_deletion_jobs, advanced search (coupons_search_advanced, application-wide or per-campaign). - Referrals —
GET|POSTandPUT|DELETE .../referrals/{referralId}. - Loyalty programs —
GET /v1/loyalty_programs,GET /v1/loyalty_programs/{loyaltyProgramId}, dashboard/statistics,POST .../import_points,POST .../import_customers_tiers,GET .../profile/{integrationId}(full ledger),PUT .../add_points/.../deduct_points, and several export endpoints (join dates, tiers, balances, ledger logs). - Also: attributes, webhooks, notification webhooks, catalogs, audiences, account/user management, exports, and the analytics endpoints.
Generic Request
Five actions — Generic GET / POST / PUT / PATCH / DELETE Request — for any endpoint not surfaced as a dedicated action.
- path — required, relative to the Base URL, e.g.
/v1/applications/123/attributes,/v2/customer_sessions/session-42. - Set the appropriate
Authorizationheader (ApiKey-v1 ...for/v1/integrationand/v2/...endpoints,ManagementKey-v1 ...for other/v1/...endpoints).
Also applies here
Step Name
What it's for
Every step in a workflow gets a name — either one you set or a default based on the connector and action (e.g. "Get Order Details", "Send Welcome Email"). It's shown throughout the UI and in your execution history, and it's also the source for the step's Reference — a camelCase identifier auto-generated from the name (e.g. "Get Order Details" → getOrderDetails) — which is what you actually use in {{...}} expressions to read this step's output from later steps. See Step Reference.
Rules
- Must be at least 2 characters, and 50 characters or fewer.
- Must be unique within the workflow — reusing a name that's already taken will be rejected, with a suggested alternative (e.g.
"Get Order Details 2"). - Can't be empty.
Tips
- Prefer a descriptive, human-readable name over a generic one — "Get Order Details" is easier to work with later than "HTTP Request 2", especially once a workflow has a dozen steps.
- Renaming a step updates every reference to it elsewhere in the workflow automatically.
Step Reference
Syntax
Any input field can reference earlier data using {{expression}}. The expression is evaluated as JSONata — so simple dot-paths and more advanced queries (filters, functions) both work.
Referencing a step's output
Use the step's Reference — a camelCase identifier auto-generated from its Name (e.g. "Get Order Details" → getOrderDetails), shown read-only wherever the step's fields are configured — followed by the field path. Elsewhere in these docs this general pattern is written as {{<stepReference>.field.path}}:
{{getOrderDetails.response.data.id}}
{{getOrderDetails.response.status}}
The raw display name won't work here even though it's what you see in the UI — {{Get Order Details.response.data.id}} isn't valid, since a bare name containing spaces isn't a single JSONata identifier. Always use the camelCase Reference.
You can also reference steps by position instead of by reference:
{{steps[0].response.data.id}}
Referencing trigger data
{{trigger.headers.authorization}}
{{trigger.body.customerId}}
{{trigger.query.page}}
{{trigger.params.orderId}}
{{trigger.method}}
{{trigger.path}}
Referencing workflow variables
{{variables.myVariable}}
See Variables for the full list of variable types and more examples, including connection-type variables.
Referencing runtime variables
A separate, mutable namespace written by the Variable connector while a run is in progress — not the same as the workflow-level variables above:
{{runtimeVariables.myVariable}}
Notes
- If an expression can't be resolved (a typo in a step name, a field that doesn't exist), it resolves to an empty string rather than failing the workflow — check your execution history if a value comes through blank.
- Object values are automatically JSON-stringified when interpolated into a string field.
Execution Settings
Fire-and-forget
When enabled, the workflow doesn't wait for this step to complete before moving to the next one. Use it for steps whose result nothing downstream depends on — logging, analytics, notifications — so they don't add latency to the steps that matter.
Continue on error
When enabled, a failure in this step doesn't stop the workflow — execution continues to the next step. The failure is still recorded in the execution history; this just controls whether it's fatal.
Combine the two for steps that are genuinely optional to the outcome: fire-and-forget so they don't add latency, continue-on-error so a failure in them (e.g. an analytics endpoint being briefly down) doesn't take down an otherwise-successful workflow run.
Caching
What it does
When enabled, a step's result is cached for a configurable TTL (time-to-live, in seconds). If the step runs again with the same effective cache key before the TTL expires, the cached result is returned instead of re-running the step.
Configuring it
- Enabled — turn caching on or off for this step.
- TTL — how long (in seconds) a cached result stays valid.
- Cache key template — an expression (supporting the same
{{...}}step reference syntax used elsewhere) that determines what counts as "the same call". By default this is based on the step's resolved input; a custom template lets you cache more narrowly or broadly than that.
When to use it
Good candidates are steps that call something slow or rate-limited but return the same answer for the same input within a short window — a lookup against a rarely-changing external system, for example. Skip it for steps whose result must always be fresh (anything involving live inventory, pricing, or payment state).
Locking
What it does
When enabled, only one execution of this step (for a given lock key) can run at a time. If a second execution tries to run the same step while a lock is held, it waits until the lock is released or the hold period elapses.
Configuring it
- Enabled — turn locking on or off for this step.
- Lock key — an expression (supporting the same
{{...}}step reference syntax used elsewhere) that determines what counts as "the same resource". By default the lock is scoped to the step itself; a custom key lets you lock per-customer, per-order, or any other identifier that needs serialized access. - Period — how long (in seconds) the lock is held before it's automatically released, in case an execution doesn't complete normally.
When to use it
Use it whenever concurrent executions could race on the same resource — e.g. two workflow runs both trying to update the same order's status at once. A lock key scoped to the order id ensures only one of them proceeds at a time.