---
title: "Bulk create/update catalog entries (async)"
method: POST
path: "/catalog/entries/bulk"
tags: ["catalog"]
---

# Bulk create/update catalog entries (async)

`POST /catalog/entries/bulk`

Creates or updates multiple catalog entries asynchronously. Returns 202 with batch tracking info. Maximum 1000 entries per request. Poll GET /batch/{id}/progress for status.

**Deprecation notice:** The previous synchronous bulk API has been deprecated. This async endpoint is the recommended behavior going forward — it avoids timeouts on large batches and provides progress tracking via the batch polling API.

## Headers

- `Authorization` string, required
- `X-Api-Key` string, required
- `X-API-Version` string
- `Idempotency-Key` string

## Request body

- object
  - `ottimate_company_id` integer, required — Company ID these entries belong to.
  - `entries` CatalogEntriesBulkPostRequestBodyContentApplicationJsonSchemaEntriesItems[], required — Catalog entries to create or update. Existing entries are matched by catalog_unique_key.
    - `erp_vendor_id` string, required — Vendor ID from your ERP/accounting system.
    - `erp_vendor_name` string, nullable — Human-readable vendor label for erp_vendor_id.
    - `item_name` string, nullable
    - `description` string, nullable
    - `original_description` string, nullable
    - `sku` string, nullable
    - `upc` string, nullable
    - `size` string, nullable — Pack size (e.g. '6 CT').
    - `uom` string, nullable
    - `price` number, double, nullable
    - `unit_price` number, double, nullable
    - `last_purchased_price` number, double, nullable
    - `is_split_case` boolean
    - `dimensions` CatalogEntriesBulkPostRequestBodyContentApplicationJsonSchemaEntriesItemsDimensions
    - `properties` CatalogEntriesBulkPostRequestBodyContentApplicationJsonSchemaEntriesItems — recursive
    - `authorized_vendor` boolean
    - `catalog_unique_key` string, nullable — Upsert key used to locate an existing entry to match, if present. Does not become the entry's stored key — the persisted catalog_unique_key is always auto-derived from the company's configured key format.
    - `reference_id` string, nullable
    - `buying_format` string, nullable
    - `prices` CatalogEntriesBulkPostRequestBodyContentApplicationJsonSchemaEntriesItemsPricesItems[], nullable — Prices to create for this entry. Omitting is deprecated and returns a warning.
      - `price` number, double, required
      - `unit_price` number, double, nullable
      - `price_type` 'company' | 'location_group' | 'location'
      - `ottimate_location_id` integer, nullable
      - `ottimate_group_id` integer, nullable
      - `start_date` string, date-time, nullable
      - `end_date` string, date-time, nullable
      - `reference_id` string, nullable
    - `allowances` CatalogEntriesBulkPostRequestBodyContentApplicationJsonSchemaEntriesItemsAllowancesItems[], nullable — Allowances to create for this entry. Omitting is deprecated and returns a warning.
      - `allowance_type` string
      - `amount` number, double, nullable
      - `unit_allowance` number, double
      - `percent_allowance` number, double
      - `target` 'company' | 'location_group' | 'location'
      - `ottimate_location_id` integer, nullable
      - `ottimate_group_id` integer, nullable
      - `start_date` string, date-time, required
      - `end_date` string, date-time, nullable
      - `reference_id` string, nullable

## Response `202`

Asynchronous processing started. Poll batch_url for status.

- CatalogEntriesBulkAsyncResponse — Response returned immediately when a bulk entries request is accepted for async processing.
  - `version` string, required — API version of this response
  - `status` string, required — Processing status
  - `batch_id` string, required — Unique identifier for this batch job. Use to poll for progress.
  - `batch_url` string, required — URL to poll for batch progress (GET)
  - `results_url` string, required — URL to retrieve batch results once completed (GET)
  - `summary` CatalogEntriesBulkAsyncResponseSummary, required — Summary of the submitted request
    - `count` integer — Number of entries submitted for processing

## Other responses

- `400` — Bad request - Invalid parameters or request format
- `401` — Unauthorized - Authentication required or invalid credentials
- `403` — Forbidden - Access denied or insufficient permissions

## Changes

- **2026-08-27** `f7c4667f0606` — 1 info
  - added optional request body
- **2026-08-22** `75aab60eedc9` — 2 breaking, 1 warning
  - for the `header` request parameter `Idempotency-Key`, the minLength was increased from `0` to `1`
  - added the pattern `^[A-Za-z0-9._\-+=/]{1,128}$` to the `header` request parameter `Idempotency-Key`
  - for the `header` request parameter `Idempotency-Key`, the maxLength was set to `128`
- **2026-08-19** `c0b5cf6c7a72` — 1 info
  - added the non-success response with the status `403`
- **2026-08-17** `c231509a03cf` — 2 breaking, 4 info
  - the `message` response's property type/format changed from `string`/`` to ``/`` for status `400`
  - the `message` response's property type/format changed from `string`/`` to ``/`` for status `401`
  - the response property `code` became required for the status `400`
  - the response property `code` became required for the status `401`
  - …2 more
- **2026-08-13** `1f089f3e34d9` — 6 breaking
  - the response property `code` became optional for the status `400`
  - the response property `code` became optional for the status `401`
  - the response property `message` became optional for the status `400`
  - the response property `message` became optional for the status `401`
  - …2 more

[Change history](https://skmtc.dev/ottimate/apis/api-reference/changes/catalog/entries/bulk/post.md)

---

[API](https://skmtc.dev/ottimate/apis/api-reference.md) · [All operations](https://skmtc.dev/ottimate/apis/api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/ottimate/api-reference/revisions/ba91ff4c6969/schema)
