Update a delivery lead time
How to update an existing delivery lead time via API
To update an existing delivery lead time, send a PATCH
request to the /api/delivery_lead_times/:id
endpoint, where id
is the ID of the resource that you want to update.
Here below the list of all the possible arguments that you can pass with the request body.
Request
PATCH https://yourdomain.commercelayer.io/api/delivery_lead_times/:id
Arguments
type
string
Required
id
string
Required
attributes.min_hours
integer
Optional
attributes.max_hours
integer
Optional
attributes.reference
string
Optional
attributes.reference_origin
string
Optional
attributes.metadata
object
Optional
relationships.stock_location
object
Optional
relationships.shipping_method
object
Optional
Example
The following request updates the delivery lead time identified by the ID "xYZkjABcde":
Last updated