List abuse reports
client.AbuseReports.List(ctx, params) (*V4PagePagination[AbuseReportListResponse], error)
GET/accounts/{account_id}/abuse-reports
List the abuse reports for a given 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 abuse reports
package main
import (
"context"
"fmt"
"github.com/cloudflare/cloudflare-go"
"github.com/cloudflare/cloudflare-go/abuse_reports"
"github.com/cloudflare/cloudflare-go/option"
)
func main() {
client := cloudflare.NewClient(
option.WithAPIToken("Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY"),
)
page, err := client.AbuseReports.List(context.TODO(), abuse_reports.AbuseReportListParams{
AccountID: cloudflare.F("023e105f4ecef8ad9ca31a8372d0c353"),
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", page)
}
{
"success": true,
"errors": [
{
"message": "message"
}
],
"messages": [
{
"message": "message"
}
],
"result": {
"reports": [
{
"id": "id",
"cdate": "2009-11-10T23:00:00Z",
"domain": "domain",
"mitigation_summary": {
"accepted_url_count": 0,
"active_count": 0,
"external_host_notified": true,
"in_review_count": 0,
"pending_count": 0
},
"status": "accepted",
"type": "PHISH",
"justification": "justification",
"original_work": "original_work",
"submitter": {
"company": "company",
"email": "email",
"name": "name",
"telephone": "telephone"
},
"urls": [
"string"
]
}
]
},
"result_info": {
"count": 0,
"page": 0,
"per_page": 0,
"total_count": 0,
"total_pages": 0
}
}Returns Examples
{
"success": true,
"errors": [
{
"message": "message"
}
],
"messages": [
{
"message": "message"
}
],
"result": {
"reports": [
{
"id": "id",
"cdate": "2009-11-10T23:00:00Z",
"domain": "domain",
"mitigation_summary": {
"accepted_url_count": 0,
"active_count": 0,
"external_host_notified": true,
"in_review_count": 0,
"pending_count": 0
},
"status": "accepted",
"type": "PHISH",
"justification": "justification",
"original_work": "original_work",
"submitter": {
"company": "company",
"email": "email",
"name": "name",
"telephone": "telephone"
},
"urls": [
"string"
]
}
]
},
"result_info": {
"count": 0,
"page": 0,
"per_page": 0,
"total_count": 0,
"total_pages": 0
}
}