Merge · Schema

AccountingPhoneNumber

# 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
created_at string The datetime that this object was created by Merge.
modified_at string The datetime that this object was modified by Merge.
number stringnull The phone number.
type stringnull The phone number's type.
View JSON Schema on GitHub

JSON Schema

merge-accountingphonenumber-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountingPhoneNumber",
  "title": "AccountingPhoneNumber",
  "type": "object",
  "properties": {
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The datetime that this object was created by Merge."
    },
    "modified_at": {
      "type": "string",
      "format": "date-time",
      "description": "The datetime that this object was modified by Merge."
    },
    "number": {
      "type": [
        "string",
        "null"
      ],
      "description": "The phone number."
    },
    "type": {
      "type": [
        "string",
        "null"
      ],
      "description": "The phone number's 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."
}