Get devices from blocklist
GET/api/v8/partner/fraud/blocklist
Get devices from blocklist
Request
Query Parameters
page integer
Default value: 1
The page number. The response is capped to maximum of 50 results per page.
page_size integer
Default value: 1000
The number of results per page.
Example: 10
Responses
- 200
Returns a list of blocked blocklists.
- application/json
- Schema
- Example (from schema)
Schema
count integerrequired
The total number of results retrieved across all pages.
next string
The URL to the next page of results.
previous string
The URL to the previous page of results.
results null[]required
The collection of processed Blocklist documents
{
"count": 0,
"next": "string",
"previous": "string",
"results": [
null
]
}
Loading...