input InventoryGenerateSnapshotInput
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String | Use this when you are a 3PL acting on behalf of one of your customers |
warehouse_id | String | |
notification_email | String | |
post_url | String | |
post_url_pre_check | Boolean | If false, a pre-check on the POST URL will not be performed. This eliminates immediate validation and feedback in the mutation response, before sending the request to the worker. Nonetheless, disabling this check can be useful if a one-time token is used to authenticate the endpoint. |
new_format | Boolean | If True, the snapshot structure will be organized by customer account id, rather than by SKU alone, adding support for different customer accounts having repeated SKUs. |
updated_from | ISODateTime | to filter out products updated since that time |
has_inventory | Boolean | to filter out products that don't have inventory |
Referenced By
- inventory_generate_snapshot Mutation
Example
{
"customer_account_id": "abc123",
"warehouse_id": "abc123",
"notification_email": "abc123",
"post_url": "abc123",
"post_url_pre_check": true,
"new_format": true,
"updated_from": "abc123",
"has_inventory": true
}