5
for records created based on Requests started on a specific date. Determine the date dynamically by referencing a date in Request data stored in a Request variable date
. The date that each Request starts is stored in another Request variable date_work_start
.https://MyOrganization.processmaker.net/api/1.0
. See Access ProcessMaker RESTful API Documentation for more information.https://MyOrganization.processmaker.net/api/1.0/collections/5/records
.collections/5/records
calls for the records in Collection 5
.https://MyOrganization.processmaker.net/api/1.0/collections/5/records?pmql=data.date_work_start
. Where data
is calling the information of the collection records which specifically call information in the variable date_work_start
. https://MyOrganization.processmaker.net/api/1.0/collections/5/records?pmql=data.date_work_start="{{date}}"
, where the {{date}}
is a comparison value that requires quotations marks.