Involve Asia · Arazzo Workflow

Involve Asia Sync Conversions

Version 1.0.0

Authenticate and pull attributed conversions for a date range.

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

Provider

involve-asia

Workflows

sync-conversions
Authenticate then pull conversions for a date range.
Authenticates, then retrieves the first page of conversions in the given date window filtered by status. Paginate by repeating with an incremented page while page * limit < count.
2 steps inputs: endDate, key, secret, startDate, status outputs: conversions, count
1
authenticate
Exchange key + secret for a bearer token.
2
pullConversions
Pull the first page of conversions in the date range.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Involve Asia Sync Conversions
  summary: Authenticate and pull attributed conversions for a date range.
  description: >-
    The reporting/reconciliation flow: exchange key + secret for a bearer token,
    then pull conversions whose datetime falls within a date range, filtered by
    status. 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-conversions-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: conversionsApi
  url: ../openapi/involve-asia-conversions-api-openapi.yml
  type: openapi
workflows:
- workflowId: sync-conversions
  summary: Authenticate then pull conversions for a date range.
  description: >-
    Authenticates, then retrieves the first page of conversions in the given
    date window filtered by status. Paginate by repeating with an incremented
    page while page * limit < count.
  inputs:
    type: object
    required:
    - key
    - secret
    - startDate
    - endDate
    properties:
      key:
        type: string
        description: Your Involve Asia API key.
      secret:
        type: string
        description: Your Involve Asia API secret.
      startDate:
        type: string
        description: Inclusive start date, YYYY-MM-DD.
      endDate:
        type: string
        description: Inclusive end date, YYYY-MM-DD.
      status:
        type: string
        description: Optional pipe-separated conversion_status filter (pending|approved|rejected).
  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: pullConversions
    description: Pull the first page of conversions in the date range.
    operationId: conversionsRange
    parameters:
    - name: Authorization
      in: header
      value: Bearer $steps.authenticate.outputs.token
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        start_date: $inputs.startDate
        end_date: $inputs.endDate
        page: 1
        limit: 100
        "filters[conversion_status]": $inputs.status
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      count: $response.body#/data/count
      nextPage: $response.body#/data/nextPage
      conversions: $response.body#/data/data
  outputs:
    count: $steps.pullConversions.outputs.count
    conversions: $steps.pullConversions.outputs.conversions

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-sync-conversions-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.