Hello.
I am attempting to create a bulk program member extract job using the updatedAt filter but am receiving a 1003 error.
"errors": [
{
"code": "1003",
"message": "filter not specified"
}
I have little experience with APIs and need some help on what this error is telling me. Using the same call but adding another filter of "programId" returns the expected result.
Here is my json. https://588-rpl-556.mktorest.com/bulk/v1/program/members/export/create.json
{
"format": "CSV",
"fields": [
"firstName",
"lastName",
"email",
"createdAt",
"membershipDate",
"updatedAt",
"program",
"programId",
"statusName",
"leadId",
"reachedSuccess",
"isExhausted"
],
"filter": {
"updatedAt": {
"startAt": "2022-09-01T00:00:00Z",
"endAt": "2022-10-01T00:00:00Z"
}
}
}
What could be causing this error?
Thanks.
... View more