Home
Find the answer to your question
I am making a call to getJobs to get a report of my AddFixedPriceItem jobs for the past 7 days, however going by the response it seems that the time filter values that I am setting are being ignored. I am using SOAP with .NET. How can I get this to work? Below is my code snippet.
GetJobsRequest req = new GetJobsRequest();
|
The creationTimeFrom and creationTimeTo optional input fields. Since they are optional, ..NET adds the Specified property which needs to be set to true if you want to include those fields when making the call. If you change your code to include the highlighted lines you will see that the time filter fields are being taken into account.
GetJobsRequest req = new GetJobsRequest();
|