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
- Array [
- ]
count integerrequired
The total number of results retrieved across all pages.
next (string | null)
The URL to the next page of results.
previous (string | null)
The URL to the previous page of results.
devices object[]required
id stringrequired
Possible values: Value must match regular expression ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
date date-timerequired
{
"count": 0,
"devices": [
{
"id": "string"
}
]
}
Loading...