Involve Asia · Arazzo Workflow

Involve Asia Generate Deeplink

Version 1.0.0

Authenticate, resolve an offer, and mint a trackable affiliate deeplink.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub Affiliate MarketingPerformance MarketingPartnership MarketingPublishersCreatorsConversionsDeep LinksCommissionsE-CommerceSoutheast AsiaShopeeCompanyArazzoWorkflows

Provider

involve-asia

Workflows

generate-deeplink
Authenticate then generate a trackable affiliate deeplink for a URL.
Authenticates, lists offers to resolve an offer_id for the destination domain, then generates a deeplink tagged with a sub-ID.
3 steps inputs: affSub, key, offerName, secret, url outputs: trackingLink
1
authenticate
Exchange key + secret for a bearer token.
2
resolveOffer
List offers filtered by name to resolve the offer_id.
3
generateDeeplink
Generate a trackable affiliate link for the destination URL.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Involve Asia Generate Deeplink
  summary: Authenticate, resolve an offer, and mint a trackable affiliate deeplink.
  description: >-
    The core publisher flow: exchange key + secret for a bearer token, find the
    offer whose whitelisted domain matches a destination URL, then generate a
    trackable affiliate link tagged with a sub-ID. Every step spells out its
    form-encoded request inline so the flow can be read and executed without
    opening the underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-400.60
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-400.60
      capability_name: Digital Marketing Management
      spec: involve-asia-deeplink-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: authApi
  url: ../openapi/involve-asia-auth-api-openapi.yml
  type: openapi
- name: deeplinkApi
  url: ../openapi/involve-asia-deeplink-api-openapi.yml
  type: openapi
- name: offersApi
  url: ../openapi/involve-asia-offers-api-openapi.yml
  type: openapi
workflows:
- workflowId: generate-deeplink
  summary: Authenticate then generate a trackable affiliate deeplink for a URL.
  description: >-
    Authenticates, lists offers to resolve an offer_id for the destination
    domain, then generates a deeplink tagged with a sub-ID.
  inputs:
    type: object
    required:
    - key
    - secret
    - url
    properties:
      key:
        type: string
        description: Your Involve Asia API key.
      secret:
        type: string
        description: Your Involve Asia API secret.
      url:
        type: string
        description: Destination URL (must belong to one of the offer's whitelisted domains).
      offerName:
        type: string
        description: Substring to locate the offer by name.
      affSub:
        type: string
        description: Sub-ID #1 tag (sent as aff_sub, surfaces as aff_sub1).
  steps:
  - stepId: authenticate
    description: Exchange key + secret for a bearer token.
    operationId: authenticate
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        key: $inputs.key
        secret: $inputs.secret
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      token: $response.body#/data/token
  - stepId: resolveOffer
    description: List offers filtered by name to resolve the offer_id.
    operationId: offersAll
    parameters:
    - name: Authorization
      in: header
      value: Bearer $steps.authenticate.outputs.token
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        limit: 100
        "filters[offer_name]": $inputs.offerName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      offerId: $response.body#/data/data/0/offer_id
  - stepId: generateDeeplink
    description: Generate a trackable affiliate link for the destination URL.
    operationId: deeplink
    parameters:
    - name: Authorization
      in: header
      value: Bearer $steps.authenticate.outputs.token
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        offer_id: $steps.resolveOffer.outputs.offerId
        url: $inputs.url
        aff_sub: $inputs.affSub
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      trackingLink: $response.body#/data/tracking_link
  outputs:
    trackingLink: $steps.generateDeeplink.outputs.trackingLink

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/involve-asia-generate-deeplink-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.