Body
Required
-
adjustmentReasonId
integer(int32) | null Adjustment reason
-
archiveReason
string | null Required Archive reason
Values are
subscription
orother
. Default value isother
. -
caseInsensitiveSkus
boolean | null Case insensitive skus
-
enabled
boolean | null Required Enabled
Default value is
true
. -
fileUri
string Required File uri
-
importSchedule
string | null Required Import schedule
Values are
daily
,hourly
, ormanual
. Default value ismanual
. -
lastImportedAt
string(date-time) | null Last imported at
-
lastImportedUri
string | null Last imported uri
-
name
string Required Name
-
warehouseId
integer(int32) Required Warehouse
POST
/inventory-imports.json
curl \
--request POST 'http://api.example.com/v1/inventory-imports.json' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"adjustmentReasonId":42,"archiveReason":"other","caseInsensitiveSkus":true,"enabled":true,"fileUri":"string","importSchedule":"manual","lastImportedAt":"2025-05-04T09:42:00Z","lastImportedUri":"string","name":"string","warehouseId":42}'
Request examples
{
"adjustmentReasonId": 42,
"archiveReason": "other",
"caseInsensitiveSkus": true,
"enabled": true,
"fileUri": "string",
"importSchedule": "manual",
"lastImportedAt": "2025-05-04T09:42:00Z",
"lastImportedUri": "string",
"name": "string",
"warehouseId": 42
}
Response examples (200)
{
"adjustmentReasonId": 42,
"archiveReason": "other",
"caseInsensitiveSkus": true,
"createdAt": "2025-05-04T09:42:00Z",
"enabled": true,
"fileUri": "string",
"id": 42,
"importSchedule": "manual",
"lastImportedAt": "2025-05-04T09:42:00Z",
"lastImportedUri": "string",
"name": "string",
"updatedAt": "2025-05-04T09:42:00Z",
"warehouseId": 42
}