createdAfter parameter in api/issues/search not working for the datetime

Hi, the correct format is yyyy-MM-dd'T'HH:mm:ssZ, so in your example createdAfter=2017-10-19T13:00:00+0200 is correct, but you need to url-encode the + character to %2b : createdAfter=2017-10-19T13:00:00%2b0200

1 Like