updateCompanies
Modify company details such as name, tax identifier, email, phone, and website URLs in the Mews hospitality platform using structured input data.
Instructions
Updates company information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
CompanyUpdates | Yes | Array of company update objects |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"CompanyUpdates": {
"description": "Array of company update objects",
"items": {
"properties": {
"CompanyId": {
"description": "Unique identifier of the company to update",
"type": "string"
},
"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": [
"CompanyId"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"CompanyUpdates"
],
"type": "object"
}