POST /inventory-export-fields.json
Body Required
-
Inventory export
-
Name
-
Position
-
priceListId integer(int32) | null
Price list
-
Purpose
Values are
available
,barcode
,costPrice
,grams
,id
,inventoryAllocated
,inventoryQuantity
,price
,productName
,sku
,tags
,vendorSku
,vendorFulfillmentPolicy
, orvendorName
.
POST /inventory-export-fields.json
curl \
-X POST http://api.example.com/v1/inventory-export-fields.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"inventoryExportId":42,"name":"string","position":42,"priceListId":42,"purpose":"available"}'
Request example
{
"inventoryExportId": 42,
"name": "string",
"position": 42,
"priceListId": 42,
"purpose": "available"
}
Response examples (200)
{
"createdAt": "2024-05-04T09:42:00+00:00",
"id": 42,
"inventoryExportId": 42,
"name": "string",
"position": 42,
"priceListId": 42,
"purpose": "available",
"updatedAt": "2024-05-04T09:42:00+00:00"
}