Timestamp parameter

Used to request a business, menu, products or validate and order

The timestamp parameter is used to request a business, menu, products or orders on a given time, this timestamp has to be UNIX Timestamp.

On example, imagine that your business menu close at 7pm and now is 9pm, we can add a parameter to request the information at 6pm to get the menu.

...
fetch('http://apiv4.ordering.co/v400/es/demo/business/41/menus&timesmtap=1581444000')
  .then((response) => {
    return response.json();
  })
  .then((myJson) => {
    console.log(myJson);
  });
...