Page through the appview's denylist, newest first. Requires the administrative credential. You cannot operate a list you cannot read: without this, the only way to audit a takedown is to open the database.
Parameters
Output
application/jsoncursor
string
Optional
Pass back as cursor for the next page. Absent at the end.
entries
array
Required
No description available.
Errors
AdminDisabled
No administrative credential is configured, so the administrative surface does not exist. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AdminDisabled",
"description": "No administrative credential is configured, so the administrative surface does not exist."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"entries"
],
"properties": {
"cursor": {
"type": "string",
"description": "Pass back as cursor for the next page. Absent at the end."
},
"entries": {
"type": "array",
"items": {
"ref": "#entry",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 200,
"minimum": 1,
"description": "Entries per page."
},
"cursor": {
"type": "string",
"description": "The cursor from the previous page. Encodes the created-at instant and the value together, so an entry added mid-scan can neither appear twice nor be skipped."
}
}
},
"description": "Page through the appview's denylist, newest first. Requires the administrative credential. You cannot operate a list you cannot read: without this, the only way to audit a takedown is to open the database."
}