Remote · Arazzo Workflow

Remote Onboard A New Company

Version 1.0.0

Create a company, then add an initial department and an admin manager under it.

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

Provider

remote-com

Workflows

onboard-company
Create a company and seed a department and manager.
Creates a company, captures its scoped access token, and creates an initial department and admin manager under the new company.
3 steps inputs: companyName, companyOwnerEmail, companyOwnerName, departmentName, desiredCurrency, managerEmail, managerRole, partnerToken outputs: companyId, departmentId, managerId
1
createCompany
Create the company and capture the returned company-scoped access token.
2
createDepartment
Create the initial department under the new company using its scoped token.
3
createManager
Add an admin manager to the new company using its scoped token.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Remote Onboard A New Company
  summary: Create a company, then add an initial department and an admin manager under it.
  description: >-
    Bootstraps a brand new company on Remote and seeds its org structure. The
    workflow creates the company (receiving a company-scoped access token in the
    response), then uses that token to create an initial department and to add
    an admin manager. 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.70
  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.70
      capability_name: HR Operations Management
      spec: remote-com-departments-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: companiesApi
  url: ../openapi/remote-com-companies-api-openapi.yml
  type: openapi
- name: companyManagersApi
  url: ../openapi/remote-com-company-managers-api-openapi.yml
  type: openapi
- name: departmentsApi
  url: ../openapi/remote-com-departments-api-openapi.yml
  type: openapi
workflows:
- workflowId: onboard-company
  summary: Create a company and seed a department and manager.
  description: >-
    Creates a company, captures its scoped access token, and creates an initial
    department and admin manager under the new company.
  inputs:
    type: object
    required:
    - partnerToken
    - companyName
    - companyOwnerEmail
    - departmentName
    - managerEmail
    - managerRole
    properties:
      partnerToken:
        type: string
        description: Partner or customer bearer access token used to create the company.
      companyName:
        type: string
        description: The new company's name.
      companyOwnerEmail:
        type: string
        description: Email of the company owner.
      companyOwnerName:
        type: string
        description: Name of the company owner.
      desiredCurrency:
        type: string
        description: The company's desired billing currency.
      departmentName:
        type: string
        description: Name of the first department to create.
      managerEmail:
        type: string
        description: Email of the manager to add.
      managerRole:
        type: string
        description: One of admin, manager, people_manager, or finance_admin.
  steps:
  - stepId: createCompany
    description: Create the company and capture the returned company-scoped access token.
    operationId: createCompany
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.partnerToken"
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.companyName
        company_owner_email: $inputs.companyOwnerEmail
        company_owner_name: $inputs.companyOwnerName
        desired_currency: $inputs.desiredCurrency
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      companyId: $response.body#/data/company/id
      companyToken: $response.body#/data/access_token
  - stepId: createDepartment
    description: Create the initial department under the new company using its scoped token.
    operationId: createDepartment
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $steps.createCompany.outputs.companyToken"
    - name: company_id
      in: path
      value: $steps.createCompany.outputs.companyId
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.departmentName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      departmentId: $response.body#/data/department/id
  - stepId: createManager
    description: Add an admin manager to the new company using its scoped token.
    operationId: createCompanyManager
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $steps.createCompany.outputs.companyToken"
    - name: company_id
      in: path
      value: $steps.createCompany.outputs.companyId
    requestBody:
      contentType: application/json
      payload:
        email: $inputs.managerEmail
        role: $inputs.managerRole
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      managerId: $response.body#/data/manager/id
  outputs:
    companyId: $steps.createCompany.outputs.companyId
    departmentId: $steps.createDepartment.outputs.departmentId
    managerId: $steps.createManager.outputs.managerId

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-onboard-company-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.