---
title: "Create Goods"
method: POST
path: "/fulfillment/{countrycode}/goods/multiple"
tags: ["Fulfillment"]
---

# Create Goods

`POST /fulfillment/{countrycode}/goods/multiple`

This endpoint is used to create one or more goods records that can be added to an Inbound Plan or an Order.

## Request body

- object[] — Array of goods objects.
  - `sku` string, required — Unique product SKU in the client's information system. Case-insensitive.
  - `goodsUnitName` string, required — Short product name.
  - `goodsUnitFullName` string, nullable — Full product name.
  - `price` number, float, required — Price per product unit.
  - `inventExpireDays` integer, nullable — Shelf life in days. Enables expiration date control.

## Response `207`

Multi-Status. One or more goods were processed.

- object
  - `data` object[], required — Array of successfully created goods.
    - `id` string, uuid, required — Unique identifier of the product.
    - `sku` string, required — Product SKU in the client's information system.
    - `goodsUnitName` string, required — Short product name.
    - `goodsUnitFullName` string, nullable — Full product name.
    - `price` number, float, required — Price per product unit.
    - `inventExpireDays` integer, nullable — Shelf life in days.
    - `createdAt` string, date-time, required — Product creation date and time.
    - `updatedAt` string, date-time, required — Date and time of the last product update.
  - `errors` object, required — Validation errors for goods that could not be created.

---

[API](https://skmtc.net/novapost/apis/api-nova-post.md) · [All operations](https://skmtc.net/novapost/apis/api-nova-post/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/novapost/api-nova-post/revisions/60e380005037/schema)
