Retrieve appointments of the day

To retrieve the appointments of the day we need 3 conditions:

  • intervention_id > 0
  • start >= 2011-09-10
  • end <= 2011-09-11

This results in the following query:

GET https://www.clicrdv.com/api/v1/groups/:group_id/vevents.json?apikey=xxxxxx&\
      conditions[0][field]=intervention_id&\
      conditions[0][op]=>&\
      conditions[0][value]=0&\
      conditions[1][field]=start&\
      conditions[1][op]=%3E%3D&\
      conditions[1][value]=2011-09-10%2000:00:00&\
      conditions[2][field]=end&\
      conditions[2][op]=%3C%3D&\
      conditions[2][value]=2011-09-11%2000:00:00\

Refer to the Filtering and pagination section for detailed settings.