Remove an IP or set of IP addresses from the false positive database

POST {{baseUrl}}/v1/false/remove/ip

Authentication

The API is protected by a Bearer authentication schema. Bearer authentication (also called token authentication) is an HTTP authentication scheme that involves security tokens called bearer tokens. It is used to authenticate the user. All the different endpoints expect a Bearer token in the Authorization header.

Example:

curl -X 'POST' \
  'https://REGION.report.threatjammer.com/test' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer YOUR_API_KEY'

You can obtain a token after registering on the ThreatJammer.com website for free.

The body of the request must be a JSON object with the following fields: - addresses: a list of IPv4 or IPv6 addresses to remove from the false positive database. These IP addresses will be again analyzed by the risk assessment engine performed by the service.

All the other fields are ignored.

The service returns a 202 response code if the request is accepted. Then, the service will process the request asynchronously sending the information to the abuse reporting engine as soon as possible. The response body is empty. The service will not return a 200 response code in any case. Assume 202 as the only valid response.

If the Bearer token is not valid, the service returns a 401 response code.

If the object passed in the body is not valid, the service returns a 422 response code. Please check the request format.

There is a limit of 6 hits per minute per token. If the limit is reached, the service returns a 429 response code.

Request Body

{"addresses"=>["magna"], "ttl"=>61297846, "type"=>"pariatur id incididunt fugiat", "tags"=>["4J-I2FLKP2HCKO-GPWZ8BRP-P4", "D3PAR55W9-GQL-W8WT5F9RDW-JVM-UO-TRWID-I3G4UVFV"]}

HEADERS

KeyDatatypeRequiredDescription
Content-Typestring
Acceptstring

RESPONSES

status: OK

{}