List submitted abuse reports
GET/accounts/{account_id}/abuse-reports/submitted
List abuse reports submitted by the account.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
Accepted Permissions (at least one required)
List submitted abuse reports
curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/abuse-reports/submitted \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN"{
"result": {
"reports": [
{
"id": "id",
"cdate": "2019-12-27T18:11:19.117Z",
"denial_reason": "unable_to_confirm",
"domain": "domain",
"status": "submitted",
"type": "PHISH",
"submitter": {
"company": "company",
"email": "email",
"name": "name",
"telephone": "telephone"
}
}
]
},
"success": true,
"errors": [
{
"message": "message",
"code": "string"
}
],
"messages": [
{
"message": "message"
}
],
"result_info": {
"count": 0,
"page": 0,
"per_page": 0,
"total_count": 0,
"total_pages": 0
}
}Returns Examples
{
"result": {
"reports": [
{
"id": "id",
"cdate": "2019-12-27T18:11:19.117Z",
"denial_reason": "unable_to_confirm",
"domain": "domain",
"status": "submitted",
"type": "PHISH",
"submitter": {
"company": "company",
"email": "email",
"name": "name",
"telephone": "telephone"
}
}
]
},
"success": true,
"errors": [
{
"message": "message",
"code": "string"
}
],
"messages": [
{
"message": "message"
}
],
"result_info": {
"count": 0,
"page": 0,
"per_page": 0,
"total_count": 0,
"total_pages": 0
}
}