Path parameters
-
id
integer(int64) Required Numeric ID of the instance
Minimum value is
1
.
Body
Required
-
createdAt
string(date-time) Created at
-
delivery
string | null Required Delivery
Values are
email
,s3
, ors3_external
. Default value iss3
. -
emails
array[string] | null Emails
-
enabled
boolean | null Required Enabled
Default value is
true
. -
id
integer(int32) | null Id
-
inventoryType
string | null Required Inventory type
Values are
all
,inventory_feeds
, orinhouse
. Default value isall
. -
lastExportedAt
string(date-time) | null Last exported at
-
name
string Required Name
-
overwrite
boolean | null Required Overwrite
Default value is
true
. -
s3Bucket
string | null S3 bucket
-
s3Key
string | null S3 key
-
s3Path
string | null S3 path
-
s3Secret
string | null S3 secret
-
scheduledType
string | null Required Scheduled type
Values are
shared
ordedicated
. Default value isshared
. -
sendingSchedule
string | null Required Sending schedule
Values are
daily
,hourly
, ormanual
. Default value ismanual
. -
updatedAt
string(date-time) Updated at
PUT
/inventory-exports/{id}.json
curl \
--request PUT 'http://api.example.com/v1/inventory-exports/{id}.json' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"createdAt":"2025-05-04T09:42:00Z","delivery":"s3","emails":["string"],"enabled":true,"id":42,"inventoryType":"all","lastExportedAt":"2025-05-04T09:42:00Z","name":"string","overwrite":true,"s3Bucket":"string","s3Key":"string","s3Path":"string","s3Secret":"string","scheduledType":"shared","sendingSchedule":"manual","updatedAt":"2025-05-04T09:42:00Z"}'
Request examples
{
"createdAt": "2025-05-04T09:42:00Z",
"delivery": "s3",
"emails": [
"string"
],
"enabled": true,
"id": 42,
"inventoryType": "all",
"lastExportedAt": "2025-05-04T09:42:00Z",
"name": "string",
"overwrite": true,
"s3Bucket": "string",
"s3Key": "string",
"s3Path": "string",
"s3Secret": "string",
"scheduledType": "shared",
"sendingSchedule": "manual",
"updatedAt": "2025-05-04T09:42:00Z"
}