Remote · Arazzo Workflow

Remote Create An Incentive

Version 1.0.0

Create a bonus or commission incentive for an employment and confirm it.

1 workflow 1 source API 1 provider
View Spec View on GitHub Global PayrollEORContractor ManagementContractor of RecordPEOHRISRecruitingBenefitsEmploymentHRComplianceWorkforceMCPAI AgentsArazzoWorkflows

Provider

remote-com

Workflows

create-incentive
Create an incentive and confirm it.
Creates an incentive for an employment and reads it back to confirm its created status.
2 steps inputs: accessToken, amount, currency, effectiveDate, employmentId, note, recurrence, type outputs: incentiveId, status
1
createIncentive
Create the incentive for the employment.
2
confirmIncentive
Read the incentive back to confirm its created status.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Remote Create An Incentive
  summary: Create a bonus or commission incentive for an employment and confirm it.
  description: >-
    Adds a one-time or recurring incentive such as a bonus or commission to an
    employment's pay. The workflow creates the incentive with the supplied type,
    amount, currency, and effective date, then reads it back to confirm its
    created status. 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
  x-realizes-capability-ids:
  - BC-300.30
  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-300.30
      capability_name: Compensation & Benefits Management
      spec: remote-com-incentives-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: incentivesApi
  url: ../openapi/remote-com-incentives-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-incentive
  summary: Create an incentive and confirm it.
  description: >-
    Creates an incentive for an employment and reads it back to confirm its
    created status.
  inputs:
    type: object
    required:
    - accessToken
    - employmentId
    - type
    - amount
    - currency
    - effectiveDate
    properties:
      accessToken:
        type: string
        description: Company-scoped bearer access token.
      employmentId:
        type: string
        description: The employment receiving the incentive.
      type:
        type: string
        description: One of bonus, commission, signing_bonus, or recurring_incentive.
      amount:
        type: integer
        description: Amount in the smallest currency unit.
      currency:
        type: string
        description: Currency code for the incentive.
      effectiveDate:
        type: string
        description: Date the incentive takes effect (YYYY-MM-DD).
      recurrence:
        type: string
        description: One of one_time, monthly, quarterly, or yearly.
      note:
        type: string
        description: Optional note describing the incentive.
  steps:
  - stepId: createIncentive
    description: Create the incentive for the employment.
    operationId: createIncentive
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        employment_id: $inputs.employmentId
        type: $inputs.type
        amount: $inputs.amount
        currency: $inputs.currency
        effective_date: $inputs.effectiveDate
        recurrence: $inputs.recurrence
        note: $inputs.note
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      incentiveId: $response.body#/data/incentive/id
      status: $response.body#/data/incentive/status
  - stepId: confirmIncentive
    description: Read the incentive back to confirm its created status.
    operationId: showIncentive
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: incentive_id
      in: path
      value: $steps.createIncentive.outputs.incentiveId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/data/incentive/status
      effectiveDate: $response.body#/data/incentive/effective_date
  outputs:
    incentiveId: $steps.createIncentive.outputs.incentiveId
    status: $steps.confirmIncentive.outputs.status

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/remote-com-create-incentive-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.