create_contact
Add new contacts to Autotask by providing company ID, name, email, phone, and job title information for customer relationship management.
Instructions
Create a new contact in Autotask
Input Schema
Name | Required | Description | Default |
---|---|---|---|
companyID | Yes | Company ID for the contact | |
emailAddress | No | Contact email address | |
firstName | Yes | Contact first name | |
lastName | Yes | Contact last name | |
phone | No | Contact phone number | |
title | No | Contact job title |
Input Schema (JSON Schema)
{
"properties": {
"companyID": {
"description": "Company ID for the contact",
"type": "number"
},
"emailAddress": {
"description": "Contact email address",
"type": "string"
},
"firstName": {
"description": "Contact first name",
"type": "string"
},
"lastName": {
"description": "Contact last name",
"type": "string"
},
"phone": {
"description": "Contact phone number",
"type": "string"
},
"title": {
"description": "Contact job title",
"type": "string"
}
},
"required": [
"companyID",
"firstName",
"lastName"
],
"type": "object"
}