SOLVED

Re: API bulk Extract Job Giving 1003 Error

Go to solution
mfeiner
Level 1

API bulk Extract Job Giving 1003 Error

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.
 
{
  "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.
Tags (4)
1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: API bulk Extract Job Giving 1003 Error

You must also provide programId or programIds. There’s no such thing as an all-programs export.

View solution in original post

4 REPLIES 4
SanfordWhiteman
Level 10 - Community Moderator

Re: API bulk Extract Job Giving 1003 Error

Contact Support to have that filter type enabled.

mfeiner
Level 1

Re: API bulk Extract Job Giving 1003 Error

I do not think that is the problem. Per the Marketo documentation that would throw a different error: 1035, I am getting a 1003.

mfeiner_0-1666362818279.png

 

SanfordWhiteman
Level 10 - Community Moderator

Re: API bulk Extract Job Giving 1003 Error

You must also provide programId or programIds. There’s no such thing as an all-programs export.

mfeiner
Level 1

Re: API bulk Extract Job Giving 1003 Error

Bummer. Thanks for the help!