v1

latestOpenAPI 3.0.32026-07-24434977.4 KB
Custom Hotlists

Add a batch of entries to a hotlist

Add a batch of entries to the hotlist with the provided hotlistID. All entries will be normalized (O->0) and have whitespace trimmed. Duplicate entries will be ignored.

post/hotlists/{hotlistId}/entries/addBatch

Path parameters

hotlistIdstring uuid required

hotlist uuid

Request body

Example request

{
  "entries": [
    {
      "note": {
        "message": "Vehicle observed at 5th and Main. Contact Det. Smith at 555-0123."
      }
    }
  ]
}

Response

The batch of hotlist entries was successfully normalized and created.

Example response

{
  "entries": [
    {
      "note": {
        "message": "Vehicle observed at 5th and Main. Contact Det. Smith at 555-0123."
      }
    }
  ]
}