Merge · Schema

AccountingPhoneNumberRequest

# The AccountingPhoneNumber Object ### Description The `AccountingPhoneNumber` object is used to represent a contact's or company's phone number. ### Usage Example Fetch from the `GET CompanyInfo` endpoint and view the company's phone numbers.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
number stringnull The phone number.
type stringnull The phone number's type.
integration_params objectnull
linked_account_params objectnull
View JSON Schema on GitHub

JSON Schema

merge-accountingphonenumberrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountingPhoneNumberRequest",
  "title": "AccountingPhoneNumberRequest",
  "type": "object",
  "properties": {
    "number": {
      "type": [
        "string",
        "null"
      ],
      "description": "The phone number."
    },
    "type": {
      "type": [
        "string",
        "null"
      ],
      "description": "The phone number's type."
    },
    "integration_params": {
      "type": [
        "object",
        "null"
      ],
      "additionalProperties": {
        "description": "Any type"
      }
    },
    "linked_account_params": {
      "type": [
        "object",
        "null"
      ],
      "additionalProperties": {
        "description": "Any type"
      }
    }
  },
  "description": "# The AccountingPhoneNumber Object\n### Description\nThe `AccountingPhoneNumber` object is used to represent a contact's or company's phone number.\n\n### Usage Example\nFetch from the `GET CompanyInfo` endpoint and view the company's phone numbers."
}