create_company
Create a new company in Autotask by providing company details including name, type, contact information, and owner assignment to manage business relationships.
Instructions
Create a new company in Autotask
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address1 | No | Company address line 1 | |
city | No | Company city | |
companyName | Yes | Company name | |
companyType | Yes | Company type ID | |
isActive | No | Whether the company is active | |
ownerResourceID | No | Owner resource ID | |
phone | No | Company phone number | |
postalCode | No | Company postal/ZIP code | |
state | No | Company state/province |
Input Schema (JSON Schema)
{
"properties": {
"address1": {
"description": "Company address line 1",
"type": "string"
},
"city": {
"description": "Company city",
"type": "string"
},
"companyName": {
"description": "Company name",
"type": "string"
},
"companyType": {
"description": "Company type ID",
"type": "number"
},
"isActive": {
"description": "Whether the company is active",
"type": "boolean"
},
"ownerResourceID": {
"description": "Owner resource ID",
"type": "number"
},
"phone": {
"description": "Company phone number",
"type": "string"
},
"postalCode": {
"description": "Company postal/ZIP code",
"type": "string"
},
"state": {
"description": "Company state/province",
"type": "string"
}
},
"required": [
"companyName",
"companyType"
],
"type": "object"
}