Get Bulk Searches
This endpoint facilitates retrieval of detailed information regarding multiple search batches processed by the organization. To obtain batch details, send a GET request to the designated endpoint. Specify the organization's search reference parameter to uniquely identify the batches you wish to access. The response provides an array of batch objects containing metadata such as batch ID and name, alongside a status indicator denoting the success of the retrieval operation.
GET/api/bulk-searches
GET https://api.amlwatcher.com/api/bulk-searches HTTP/1.1Host: api.amlwatcher.comAuthorization: Bearer Token
Response
Parameters | Description |
---|---|
error | Whenever there is an error in your request, this param will have details of that error; otherwise it’ll remain empty. |
status | The status field is set to either “SUCCESS” or “FAIL”, indicating that the API request resulted in a successful or failure/error condition respectively. |
data | An array containing the actual response elements. |
Sample Response
{
"data": [
{
"batch_id": "d8059a6b6bc09fb4cda91fa3",
"batch_name": "Batch 2"
},
{
"batch_id": "007497900b6345b0eef3bd21",
"batch_name": "Batch 1"
}
],
"error": false,
"status": "SUCCESS"
}