Parameters
JSON body
Request body
application/jsonipstringRequiredIP address to ban.
Example
1.2.3.4reasonstringOptionalReason for the ban.
Example
Fraudulent ordersAdd an IP address to the organisation ban list. The IP is resolved to a geo record automatically.
JSON body
ipstringRequiredIP address to ban.
1.2.3.4reasonstringOptionalReason for the ban.
Fraudulent orders1 status code documented
successbooleanRequiredWhether the IP was banned successfully.
geoIdnumberRequiredGeo IP record ID of the banned IP.
{
"success": false,
"geoId": 0
}POST /bff/settings/ip-ban-add
curl -X POST "https://api.bizkithub.com/bff/settings/ip-ban-add" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"ip": "1.2.3.4",
"reason": "Fraudulent orders"
}'All BizKitHub public API endpoints require authentication via API key.