Merge · Schema

CompanyInfo

# The CompanyInfo Object ### Description The `CompanyInfo` object contains information about the company of the linked account. If the company has multiple entities (also known as subsidiaries), each entity may show up as a single `CompanyInfo` record. ### Usage Example Fetch from the `GET CompanyInfo` endpoint and view a company's information.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
id string
remote_id stringnull The third-party API ID of the matching object.
created_at string The datetime that this object was created by Merge.
modified_at string The datetime that this object was modified by Merge.
name stringnull The company's name.
legal_name stringnull The company's legal name.
tax_number stringnull The company's tax number.
fiscal_year_end_month integernull The company's fiscal year end month.
fiscal_year_end_day integernull The company's fiscal year end day.
currency object The currency set in the company's accounting platform. The currency code in ISO 4217 format.
remote_created_at stringnull When the third party's company was created.
urls arraynull The company's urls.
addresses array
phone_numbers array
remote_was_deleted boolean Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited cove
field_mappings object
remote_data arraynull
View JSON Schema on GitHub

JSON Schema

merge-companyinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CompanyInfo",
  "title": "CompanyInfo",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "remote_id": {
      "type": [
        "string",
        "null"
      ],
      "description": "The third-party API ID of the matching object."
    },
    "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."
    },
    "name": {
      "type": [
        "string",
        "null"
      ],
      "description": "The company's name."
    },
    "legal_name": {
      "type": [
        "string",
        "null"
      ],
      "description": "The company's legal name."
    },
    "tax_number": {
      "type": [
        "string",
        "null"
      ],
      "description": "The company's tax number."
    },
    "fiscal_year_end_month": {
      "type": [
        "integer",
        "null"
      ],
      "description": "The company's fiscal year end month."
    },
    "fiscal_year_end_day": {
      "type": [
        "integer",
        "null"
      ],
      "description": "The company's fiscal year end day."
    },
    "currency": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/TransactionCurrencyEnum"
        },
        {
          "type": "null"
        }
      ],
      "description": "The currency set in the company's accounting platform. The currency code in ISO 4217 format."
    },
    "remote_created_at": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time",
      "description": "When the third party's company was created."
    },
    "urls": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "type": "string"
      },
      "description": "The company's urls."
    },
    "addresses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Address"
      }
    },
    "phone_numbers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AccountingPhoneNumber"
      }
    },
    "remote_was_deleted": {
      "type": "boolean",
      "description": "Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/)."
    },
    "field_mappings": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/CompanyInfoFieldMappings"
        },
        {
          "type": "null"
        }
      ]
    },
    "remote_data": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "$ref": "#/components/schemas/RemoteData"
      }
    }
  },
  "description": "# The CompanyInfo Object\n### Description\nThe `CompanyInfo` object contains information about the company of the linked account. If the company has multiple entities (also known as subsidiaries), each entity may show up as a single `CompanyInfo` record.\n\n### Usage Example\nFetch from the `GET CompanyInfo` endpoint and view a company's information."
}