Pleo · Schema

BookkeepingAccountBatchCreateRequestV1

Expense ManagementCompany CardsSpend ManagementReimbursementsAccountingFinTechFinance

Properties

Name Type Description
companyId string Pleo's internal identifier for the company the accounts are associated with.
items array List of bookkeeping accounts to be created. The number of accounts in the batch must be between 1 and 1000.
View JSON Schema on GitHub

JSON Schema

pleo-bookkeeping-account-batch-create-request-v1-schema.json Raw ↑
{
  "required": [
    "companyId",
    "items"
  ],
  "type": "object",
  "properties": {
    "companyId": {
      "type": "string",
      "description": "Pleo's internal identifier for the company the accounts are associated with.",
      "format": "uuid"
    },
    "items": {
      "maxItems": 1000,
      "minItems": 1,
      "type": "array",
      "description": "List of bookkeeping accounts to be created.\nThe number of accounts in the batch must be between 1 and 1000.",
      "items": {
        "$ref": "#/components/schemas/BookkeepingAccountBatchRequestItemV1"
      }
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BookkeepingAccountBatchCreateRequestV1"
}