Hi @Expiscornovus
firstly thank you for staying with me 😁
That API filter is [date] (which refers to a field within the form) when the record was created which is a time date field coming from the record.
Documentation on the web refers to REDCap
getfile.asp (illinois.edu)
I am exporting records the [date] refers to
filterLogic
String of logic text (e.g., [age] > 30) for filtering the data to be returned by this API method, in which the API will only return the records (or record-events, if a longitudinal project) where the logic evaluates as TRUE. This parameter is blank/null by default unless a value is supplied. Please note that if the filter logic contains any incorrect syntax, the API will respond with an error message.
The base of the parameters is
Required
token
The API token specific to your REDCap project and username (each token is unique to each user for each project). See the section on the left-hand menu for obtaining a token for a given project.
content
record
format
csv, json, xml [default], odm ('odm' refers to CDISC ODM XML format, specifically ODM version 1.3.1)
type- flat - output as one record per row [default]
- eav - output as one data point per row
- Non-longitudinal: Will have the fields - record*, field_name, value
- Longitudinal: Will have the fields - record*, field_name, value, redcap_event_name
* 'record' refers to the record ID for the project
Using you two variables how would combine that in the flow?
Adding context to this if the forms [date] field was a date it would be no issue as
[date](date of form) = 'Variable' (convertTimeZone(utcNow(),'UTC','Singapore Standard Time')
this works as todays date equals todays date on the record and passes through...
Regards