CreateCustomer

CreateCustomer

Certified

Create a Business Central customer

yaml
type: io.kestra.plugin.microsoft365.dynamics365.businesscentral.CreateCustomer
yaml
id: bc_create_customer
namespace: company.team

tasks:
  - id: create
    type: io.kestra.plugin.microsoft365.dynamics365.businesscentral.CreateCustomer
    tenantId: "{{ secret('AZURE_TENANT_ID') }}"
    clientId: "{{ secret('AZURE_CLIENT_ID') }}"
    clientSecret: "{{ secret('AZURE_CLIENT_SECRET') }}"
    environment: production
    companyId: "00000000-0000-0000-0000-000000000001"
    customer:
      displayName: "Acme Corp"
      email: "billing@acme.com"
      phoneNumber: "+1-555-0100"
Properties