POST
/
location-capacity
/
actions
/
bulk-create
Bulk Create Overrides
curl --request POST \
  --url https://api.fabric.inc/v3/location-capacity/actions/bulk-create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-fabric-tenant-id: <x-fabric-tenant-id>' \
  --data '{
  "capacity": 30,
  "schedule": {
    "startDate": "2022-05-12T09:30:31Z",
    "endDate": "2022-05-12T09:30:31Z"
  },
  "reasonCode": "holiday",
  "notes": "Any additional info",
  "createdBy": "Carl Doe",
  "updatedBy": "Carl Doe",
  "locationNumbers": [
    "1234",
    "5678"
  ]
}'
[
  {
    "capacityOverrideId": "9320183a01e214",
    "capacityOverrideNumber": "capacityOverride1",
    "locationNumber": "23",
    "status": "CREATED",
    "capacity": 30,
    "schedule": {
      "startDate": "2022-05-12T09:30:31Z",
      "endDate": "2022-05-12T09:30:31Z"
    },
    "reasonCode": "holiday",
    "notes": "Any additional info",
    "createdBy": "Carl Doe",
    "createdAt": "2022-05-12T09:30:31Z",
    "updatedBy": "Carl Doe",
    "updatedAt": "2022-05-12T09:30:31Z",
    "auditLogs": [
      {
        "lineItemId": "b03b72dc-78d8-4ea4-90fc-2fe6a1fe6569",
        "auditId": "a05b72dc-78d8-4ea4-90fc-2fe6a1fe1111",
        "auditType": "CANCEL",
        "employeeId": 6227,
        "auditedAt": "2023-03-12T09:24:54.804Z",
        "source": "POS",
        "reasonCode": "Scratched item",
        "subReasonCode": "Scratched item",
        "policyCode": "POS",
        "note": "Note",
        "lineItemNumber": 1,
        "sku": "SKU0023",
        "quantity": 1,
        "amount": 2.4,
        "paymentToken": {
          "token": "pi_34tr6787rt",
          "paymentType": "VISA"
        },
        "updatedFields": [
          {
            "fieldName": "UOM",
            "fieldOriginalValue": "PK"
          }
        ],
        "attributes": {
          "key": "value"
        },
        "isSuccess": true
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-fabric-tenant-id
string
required

A header used by fabric to identify the tenant making the request. You must include tenant id in the authentication header for an API request to access any of fabric’s endpoints. You can retrieve the tenant id , which is also called account id, from Copilot. This header is required.

x-fabric-request-id
string

Unique request ID

x-fabric-channel-id
string

x-fabric-channel-id identifies the sales channel through which the API request is being made; primarily for multichannel use cases. It is an optional field. The default US channel is 12 while the default Canada channel is 13.

Body

application/json

Request payload for creating Capacity Overrides in bulk across multiple locations. Each override specifies custom allocation limits and applies to a defined schedule.

capacity
integer
required

The maximum number of allocations each location can handle simultaneously. When current allocations reach this number, the location is considered "AtCapacity" and will not receive further allocations during the override period.

Example:

30

schedule
object
required

The date and time range during which the capacity override will be active.

reasonCode
string
required

A merchant-defined reason code indicating the purpose of the override (for example, seasonal demand, maintenance, holidays).

Example:

"holiday"

locationNumbers
string[]
required

A list of unique identifiers for the locations affected by the override.

Example:
["1234", "5678"]
notes
object

Optional notes or additional context related to the override request.

createdBy
string

Identifier or name of the user or system initiating this bulk override request.

Example:

"Carl Doe"

updatedBy
string

Identifier or name of the user or system that last updated the override request.

Example:

"Carl Doe"

Response

Created

capacity
integer
required

The maximum number of allocations the location can accept at any point during the override period. When currentAllocations equals this value, the location is considered "AtCapacity" and cannot receive further orders.

Example:

30

schedule
object
required

The date and time window during which the capacity override is in effect.

reasonCode
string
required

A merchant-defined reason for the override, used for traceability or reporting (for example, holiday, peak demand).

Example:

"holiday"

capacityOverrideId
string

A system-generated unique identifier for the capacity override.

Example:

"9320183a01e214"

capacityOverrideNumber
string

A merchant-defined unique reference number for the capacity override.

Example:

"capacityOverride1"

locationNumber
string

A unique identifier for the location where the capacity override applies, as defined by the merchant.

Example:

"23"

status
enum<string>

The current status of the capacity override.

Available options:
CREATED,
STARTED,
ENDED,
CANCELLED
Example:

"CREATED"

notes
object

Optional notes or comments providing additional context for the override.

createdBy
string

Identifier or name of the user or system that created the override.

Example:

"Carl Doe"

createdAt
string<date-time>

The timestamp when the capacity override was created, in ISO 8601 UTC format.

Example:

"2022-05-12T09:30:31Z"

updatedBy
string

Identifier or name of the user or system that last updated the override.

Example:

"Carl Doe"

updatedAt
string<date-time>

The timestamp of the most recent update to the override record, in ISO 8601 UTC format.

Example:

"2022-05-12T09:30:31Z"

auditLogs
object[]

A list of audit log entries tracking changes made to the override.