QuickBooks
QUICKBOOKS_CREATE_CUSTOMER
Create a new customer in QuickBooks with the given parameters.
Remote quickbooks
Remote (network-hosted)
Other tools also called QUICKBOOKS_CREATE_CUSTOMER?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title",
"default": null,
"examples": [
"Mr.",
"Dr.",
"CEO",
"Director"
],
"nullable": true,
"maxLength": 16,
"description": "Title of the person (max 16 characters - keep it short like 'Mr.', 'Dr.', 'CEO'). This tag supports i18n, all locales. The DisplayName attribute or at least one of Title, GivenName, MiddleName, FamilyName, Suffix, or FullyQualifiedName attributes are required during create."
},
"suffix": {
"type": "string",
"title": "Suffix",
"default": null,
"nullable": true,
"maxLength": 16,
"description": "Suffix of the name. For example, Jr. The DisplayName attribute or at least one of Title, GivenName, MiddleName, FamilyName, or Suffix attributes is required for object create."
},
"given_name": {
"type": "string",
"title": "Given Name",
"default": null,
"nullable": true,
"maxLength": 100,
"description": "Given name or first name of a person. The DisplayName attribute or at least one of Title, GivenName, MiddleName, FamilyName, or Suffix attributes is required for object create."
},
"family_name": {
"type": "string",
"title": "Family Name",
"default": null,
"nullable": true,
"maxLength": 100,
"description": "Family name or the last name of the person. The DisplayName attribute or at least one of Title, GivenName, MiddleName, FamilyName, or Suffix attributes is required for object create."
},
"middle_name": {
"type": "string",
"title": "Middle Name",
"default": null,
"nullable": true,
"maxLength": 100,
"description": "Middle name of the person. The person can have zero or more middle names. The DisplayName attribute or at least one of Title, GivenName, MiddleName, FamilyName, or Suffix attributes is required for object create."
},
"display_name": {
"type": "string",
"title": "Display Name",
"default": null,
"nullable": true,
"maxLength": 500,
"description": "The name as displayed. Must be unique across all Customer, Vendor, and Employee objects. Cannot be removed with sparse update. If not supplied, the system generates DisplayName by concatenating customer name components supplied in the request from the following list: Title, GivenName, MiddleName, FamilyName, and Suffix."
}
}
}