i am using following URL with post request https://jira.domain.com/rest/api/2/search
request body
{
"jql": "project = AF AND created='2022/09/06'",
"startAt": 1,
"maxResults": 15,
"fields": [
"summary",
"status",
"assignee",
"project",
"created",
"priority",
"duedate",
"description",
"issuetype"
]
}
i have two issues created at date '2022/09/06'. but it is giving no result
{
"startAt": 0,
"maxResults": 15,
"total": 0,
"issues": []
}