AutomationCompanyCreate

Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision

Properties

Name Type Description
name string The name of the new company
displayName string The display name of the new company
businessProfileId string
View JSON Schema on GitHub

JSON Schema

navision-automationcompanycreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AutomationCompanyCreate",
  "title": "AutomationCompanyCreate",
  "type": "object",
  "required": [
    "name",
    "displayName"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the new company",
      "example": "Example Title"
    },
    "displayName": {
      "type": "string",
      "description": "The display name of the new company",
      "example": "example_value"
    },
    "businessProfileId": {
      "type": "string",
      "example": "500123"
    }
  }
}