Retrieve the submission status of a report to the National Center for Missing & Exploited Children. Shows whether the report has been submitted and the current status with NCMEC.
curl --request GET \
--url https://api.fluxer.app/v1/admin/reports/{report_id}/ncmec-status \
--header 'Authorization: <api-key>'{
"status": "not_submitted",
"ncmec_report_id": "<string>",
"submitted_at": "<string>",
"submitted_by_admin_id": "<string>",
"failure_reason": "<string>"
}Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.
The report id
Success
NCMEC submission status
not_submitted, submitted, failed NCMEC report ID if submitted
ISO 8601 timestamp when the report was submitted
ID of the admin who submitted the report
Reason for submission failure if failed
curl --request GET \
--url https://api.fluxer.app/v1/admin/reports/{report_id}/ncmec-status \
--header 'Authorization: <api-key>'{
"status": "not_submitted",
"ncmec_report_id": "<string>",
"submitted_at": "<string>",
"submitted_by_admin_id": "<string>",
"failure_reason": "<string>"
}