addCompany
Add a new company to the Mews hospitality platform with essential details such as name, tax ID, contact info, and invoicing email. Streamlines company management for efficient operations.
Instructions
Adds a new company
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ContactPersonId | No | Contact person customer ID | |
No | Company email address | ||
InvoicingEmail | No | Billing email address | |
Name | Yes | Company name | |
Phone | No | Company phone number | |
TaxIdentifier | No | Tax identification number | |
WebsiteUrl | No | Company website URL |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"ContactPersonId": {
"description": "Contact person customer ID",
"type": "string"
},
"Email": {
"description": "Company email address",
"type": "string"
},
"InvoicingEmail": {
"description": "Billing email address",
"type": "string"
},
"Name": {
"description": "Company name",
"type": "string"
},
"Phone": {
"description": "Company phone number",
"type": "string"
},
"TaxIdentifier": {
"description": "Tax identification number",
"type": "string"
},
"WebsiteUrl": {
"description": "Company website URL",
"type": "string"
}
},
"required": [
"Name"
],
"type": "object"
}