Filter v10 rest for greater than date.

I've got a request that looks like this

172.20.5.91/.../ORDER_orderentry
But I would like to add filter[2][enh_schedule_active_from_c] > 2015-07-20

Is this possible?  I realise I can't do a greater than symbol in http parameter, but is there a way around this, I couldn't find an example of this in the rest documentation.

http://support.sugarcrm.com/02_Documentation/04_Sugar_Developer/Sugar_Developer_Guide_7.6/70_API/Web...

Kind Regards,
Jon
Parents
  • Hi Jonathan,

    You can get more details on filter arguments in the REST API help section, found in your instance at /rest/v10/help

    For this particular query, you can do: filter[2][enh_schedule_active_from_c][$gt]=2015-07-20

    I hope that helps!

    -Alan
Reply
  • Hi Jonathan,

    You can get more details on filter arguments in the REST API help section, found in your instance at /rest/v10/help

    For this particular query, you can do: filter[2][enh_schedule_active_from_c][$gt]=2015-07-20

    I hope that helps!

    -Alan
Children