Update a price list scheduler
How to update an existing price list scheduler via API
To update an existing price list scheduler, send a PATCH
request to the /api/price_list_schedulers/: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/price_list_schedulers/:id
Arguments
Body Parameter | Type | Required |
---|---|---|
type |
| Required |
id |
| Required |
attributes.name |
| Optional |
attributes.starts_at |
| Optional |
attributes.expires_at |
| Optional |
attributes._disable |
| Optional |
attributes._enable |
| Optional |
attributes.reference |
| Optional |
attributes.reference_origin |
| Optional |
attributes.metadata |
| Optional |
relationships.market |
| Optional |
relationships.price_list |
| Optional |
Example
The following request updates the price list scheduler identified by the ID "xYZkjABcde":
Last updated