Soxway Docs
Blocklist

Bulk add to blocklist

Add up to 500 domain patterns at once.

POST
/v1/account/blocklist/bulk

Authorization

bearerAuth
AuthorizationBearer <token>

Personal access token obtained via POST /v1/auth/token

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://api.soxway.io/v1/account/blocklist/bulk" \  -H "Content-Type: application/json" \  -d '{    "entries": [      "spam.com",      "malware.net"    ]  }'
{
  "inserted": 0,
  "skipped": 0,
  "total_requested": 0
}