List all price list schedulers

How to fetch a collection of price list schedulers via API

To fetch a collection of price list schedulers, send a GET request to the /api/price_list_schedulers endpoint.

Request

GET https://yourdomain.commercelayer.io/api/price_list_schedulers

Example

The following request fetches a collection of price list schedulers:

curl -g -X GET \
  'https://yourdomain.commercelayer.io/api/price_list_schedulers/' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token'

Remember that when you fetch a list of resources you get paginated result.

Sortable fields

The list of price list schedulers can be sorted by the following fields:

Attributes

  • name

  • starts_at

  • expires_at

  • id

  • disabled_at

  • created_at

  • updated_at

  • reference

  • reference_origin

Relationships

  • market

  • price_list

Filterable fields

The list of price list schedulers can be filtered by the following fields:

Attributes

  • name

  • starts_at

  • expires_at

  • id

  • disabled_at

  • created_at

  • updated_at

  • reference

  • reference_origin

  • metadata

Relationships

  • market

  • price_list

  • events

Last updated