Merge · Arazzo Workflow

Merge Cross-Category Sync Health Check

Version 1.0.0

Read sync status and open issues for both an HRIS and a CRM linked account in a single monitoring pass.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub IntegrationPlatformUnified-APIAgent HandlerLLM GatewayArazzoWorkflows

Provider

merge

Workflows

cross-category-sync-health-check
Read sync status and open issues for an HRIS and a CRM linked account.
Reads the HRIS sync status and ongoing issues, then the CRM sync status and ongoing issues, producing a combined health view.
4 steps inputs: authorization, crmAccountToken, hrisAccountToken outputs: crmIssues, crmSyncStatuses, hrisIssues, hrisSyncStatuses
1
hrisSyncStatus
{$sourceDescriptions.subpackageSyncstatusApi.url}#/paths/~1hris~1v1~1sync-status/get
Read the sync status for the HRIS linked account.
2
hrisOpenIssues
{$sourceDescriptions.subpackageIssuesApi.url}#/paths/~1hris~1v1~1issues/get
List the currently ongoing issues for the HRIS linked account.
3
crmSyncStatus
{$sourceDescriptions.subpackageSyncstatusApi.url}#/paths/~1crm~1v1~1sync-status/get
Read the sync status for the CRM linked account.
4
crmOpenIssues
{$sourceDescriptions.subpackageIssuesApi.url}#/paths/~1crm~1v1~1issues/get
List the currently ongoing issues for the CRM linked account.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Merge Cross-Category Sync Health Check
  summary: Read sync status and open issues for both an HRIS and a CRM linked account in a single monitoring pass.
  description: >-
    An operational monitoring pattern that spans two Merge categories. The
    workflow reads the sync status for an HRIS linked account and its currently
    ongoing issues, then does the same for a CRM linked account, giving a
    consumer a single combined view of integration health across both
    categories. Because Merge reuses the same operationId across paths and
    specs, each step references its operation by JSON pointer through its source
    description. Every step spells out its request inline so the flow can be
    read and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: subpackageIssuesApi
  url: ../openapi/merge-subpackage-issues-api-openapi.yml
  type: openapi
- name: subpackageSyncstatusApi
  url: ../openapi/merge-subpackage-syncstatus-api-openapi.yml
  type: openapi
workflows:
- workflowId: cross-category-sync-health-check
  summary: Read sync status and open issues for an HRIS and a CRM linked account.
  description: >-
    Reads the HRIS sync status and ongoing issues, then the CRM sync status and
    ongoing issues, producing a combined health view.
  inputs:
    type: object
    required:
    - authorization
    - hrisAccountToken
    - crmAccountToken
    properties:
      authorization:
        type: string
        description: Production access token with the required "Bearer " prefix.
      hrisAccountToken:
        type: string
        description: The account token identifying the linked HRIS end user.
      crmAccountToken:
        type: string
        description: The account token identifying the linked CRM end user.
  steps:
  - stepId: hrisSyncStatus
    description: >-
      Read the sync status for the HRIS linked account.
    operationPath: '{$sourceDescriptions.subpackageSyncstatusApi.url}#/paths/~1hris~1v1~1sync-status/get'
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: X-Account-Token
      in: header
      value: $inputs.hrisAccountToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      hrisSyncStatuses: $response.body#/results
  - stepId: hrisOpenIssues
    description: >-
      List the currently ongoing issues for the HRIS linked account.
    operationPath: '{$sourceDescriptions.subpackageIssuesApi.url}#/paths/~1hris~1v1~1issues/get'
    parameters:
    - name: status
      in: query
      value: ONGOING
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: X-Account-Token
      in: header
      value: $inputs.hrisAccountToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      hrisIssues: $response.body#/results
  - stepId: crmSyncStatus
    description: >-
      Read the sync status for the CRM linked account.
    operationPath: '{$sourceDescriptions.subpackageSyncstatusApi.url}#/paths/~1crm~1v1~1sync-status/get'
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: X-Account-Token
      in: header
      value: $inputs.crmAccountToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      crmSyncStatuses: $response.body#/results
  - stepId: crmOpenIssues
    description: >-
      List the currently ongoing issues for the CRM linked account.
    operationPath: '{$sourceDescriptions.subpackageIssuesApi.url}#/paths/~1crm~1v1~1issues/get'
    parameters:
    - name: status
      in: query
      value: ONGOING
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: X-Account-Token
      in: header
      value: $inputs.crmAccountToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      crmIssues: $response.body#/results
  outputs:
    hrisSyncStatuses: $steps.hrisSyncStatus.outputs.hrisSyncStatuses
    hrisIssues: $steps.hrisOpenIssues.outputs.hrisIssues
    crmSyncStatuses: $steps.crmSyncStatus.outputs.crmSyncStatuses
    crmIssues: $steps.crmOpenIssues.outputs.crmIssues

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/merge-cross-category-sync-health-check-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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