Merge · Schema

AccountingAttachmentRequest

# The Accounting Attachment Object ### Description The `AccountingAttachment` object is used to represent a company's attachments. ### Usage Example Fetch from the `LIST AccountingAttachments` endpoint and view a company's attachments.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
file_name stringnull The attachment's name.
file_url stringnull The attachment's url.
company stringnull The company the accounting attachment belongs to.
integration_params objectnull
linked_account_params objectnull
View JSON Schema on GitHub

JSON Schema

merge-accountingattachmentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountingAttachmentRequest",
  "title": "AccountingAttachmentRequest",
  "type": "object",
  "properties": {
    "file_name": {
      "type": [
        "string",
        "null"
      ],
      "description": "The attachment's name."
    },
    "file_url": {
      "type": [
        "string",
        "null"
      ],
      "format": "uri",
      "description": "The attachment's url."
    },
    "company": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid",
      "description": "The company the accounting attachment belongs to."
    },
    "integration_params": {
      "type": [
        "object",
        "null"
      ],
      "additionalProperties": {
        "description": "Any type"
      }
    },
    "linked_account_params": {
      "type": [
        "object",
        "null"
      ],
      "additionalProperties": {
        "description": "Any type"
      }
    }
  },
  "description": "# The Accounting Attachment Object\n### Description\nThe `AccountingAttachment` object is used to represent a company's attachments.\n\n### Usage Example\nFetch from the `LIST AccountingAttachments` endpoint and view a company's attachments."
}