curl --request GET \
--url http://localhost:3000/audit/export/{exportId} \
--header 'Authorization: Bearer <token>'{
"statusCode": 123,
"message": "OK",
"data": {
"status": "pending",
"requestedAt": "2023-11-07T05:31:56Z"
}
}Retrieves the status of a previously requested audit logs export. Returns download URL when completed.
curl --request GET \
--url http://localhost:3000/audit/export/{exportId} \
--header 'Authorization: Bearer <token>'{
"statusCode": 123,
"message": "OK",
"data": {
"status": "pending",
"requestedAt": "2023-11-07T05:31:56Z"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.