Microsoft Dynamics NAV · Arazzo Workflow

Business Central Onboard a Customer

Version 1.0.0

Resolve the working company, create a customer, and confirm it persisted.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavisionArazzoWorkflows

Provider

navision

Workflows

onboard-customer
Create a customer in a Business Central company and verify it persisted.
Resolves the target company, creates a customer using the supplied profile fields, and re-reads the created customer by id to confirm the write.
3 steps inputs: city, companyId, country, currencyCode, displayName, email, number, phoneNumber, type outputs: customerId, customerNumber, verifiedDisplayName
1
confirmCompany
Confirm the supplied company id exists in the tenant before writing any master data to it.
2
createCustomer
Create a new customer object in the resolved company using the supplied profile fields.
3
verifyCustomer
Read the newly created customer back by its generated id to confirm the record persisted in Business Central.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Business Central Onboard a Customer
  summary: Resolve the working company, create a customer, and confirm it persisted.
  description: >-
    A foundational Business Central master-data flow. The workflow first
    resolves the tenant company that scopes every downstream call, creates a new
    customer record inside that company, and then reads the customer back by its
    generated id to confirm it was persisted. 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-420.10
  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-420.10
      capability_name: Customer Data Management
      spec: navision-customers-api-openapi.yml
      confidence: 0.75
    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/navision-companies-api-openapi.yml
  type: openapi
- name: customersApi
  url: ../openapi/navision-customers-api-openapi.yml
  type: openapi
workflows:
- workflowId: onboard-customer
  summary: Create a customer in a Business Central company and verify it persisted.
  description: >-
    Resolves the target company, creates a customer using the supplied profile
    fields, and re-reads the created customer by id to confirm the write.
  inputs:
    type: object
    required:
    - companyId
    - displayName
    properties:
      companyId:
        type: string
        description: The UUID of the Business Central company to create the customer in.
      number:
        type: string
        description: The customer number/code to assign (optional, may be auto-numbered).
      displayName:
        type: string
        description: The customer display name.
      type:
        type: string
        description: The customer type, either Person or Company.
      email:
        type: string
        description: The customer email address.
      phoneNumber:
        type: string
        description: The customer phone number.
      city:
        type: string
        description: The customer city.
      country:
        type: string
        description: The customer country/region code.
      currencyCode:
        type: string
        description: The currency code for the customer.
  steps:
  - stepId: confirmCompany
    description: >-
      Confirm the supplied company id exists in the tenant before writing any
      master data to it.
    operationId: listCompanies
    parameters:
    - name: $filter
      in: query
      value: "id eq $inputs.companyId"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      companyName: $response.body#/value/0/name
  - stepId: createCustomer
    description: >-
      Create a new customer object in the resolved company using the supplied
      profile fields.
    operationId: createCustomer
    parameters:
    - name: company_id
      in: path
      value: $inputs.companyId
    requestBody:
      contentType: application/json
      payload:
        number: $inputs.number
        displayName: $inputs.displayName
        type: $inputs.type
        email: $inputs.email
        phoneNumber: $inputs.phoneNumber
        city: $inputs.city
        country: $inputs.country
        currencyCode: $inputs.currencyCode
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      customerId: $response.body#/id
      customerNumber: $response.body#/number
  - stepId: verifyCustomer
    description: >-
      Read the newly created customer back by its generated id to confirm the
      record persisted in Business Central.
    operationId: getCustomer
    parameters:
    - name: company_id
      in: path
      value: $inputs.companyId
    - name: customer_id
      in: path
      value: $steps.createCustomer.outputs.customerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      verifiedId: $response.body#/id
      verifiedDisplayName: $response.body#/displayName
      lastModifiedDateTime: $response.body#/lastModifiedDateTime
  outputs:
    customerId: $steps.createCustomer.outputs.customerId
    customerNumber: $steps.createCustomer.outputs.customerNumber
    verifiedDisplayName: $steps.verifyCustomer.outputs.verifiedDisplayName

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/navision-onboard-customer-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.