ArchivedBy
and ArchivedDate
). Custom fields aren't supported.curl --location --request PUT '/rest/api/3/issues/archive/export' \
--header 'Content-Type: application/json' \
--data-raw '{
"archivedBy": [
"uuid-rep-001",
"uuid-rep-002"
],
"archivedDate": {
"dateAfter": "2023-01-01",
"dateBefore": "2023-01-12"
},
"archivedDateRange": {
"dateAfter": "2023-01-01",
"dateBefore": "2023-01-12"
},
"issueTypes": [
"10001",
"10002"
],
"projects": [
"FOO",
"BAR"
],
"reporters": [
"uuid-rep-001",
"uuid-rep-002"
]
}'
{"payload":"{projects=[FOO, BAR], reporters=[uuid-rep-001, uuid-rep-002], issueTypes=[10001, 10002], archivedDate={dateAfterInstant=2023-01-01, dateBeforeInstant=2023-01-12}, archivedBy=[uuid-rep-001, uuid-rep-002]}","progress":0,"status":"ENQUEUED","submittedTime":1623230887000,"taskId":"10990"}