1. Entries
Qeep
  • Screening
    • Screen transaction
      POST
    • Get screening result by ID
      GET
    • Rescreen transaction
      POST
    • List screening requests
      GET
    • Record screening outcome
      POST
  • Watchlists
    • Entries
      • Add watchlist entry
        POST
      • List watchlist entries
        GET
      • Remove watchlist entry
        DELETE
      • Export watchlist entries
        GET
      • Bulk import watchlist entries
        POST
    • Jobs
      • Cancel a watchlist import job
      • Get watchlist import job
      • List watchlist import jobs
      • Sync watchlist
    • List watchlists
      GET
    • Create watchlist
      POST
    • Update watchlist
      PATCH
  • Schemas
    • ValidationErrorDetail
    • RecordOutcome
    • ErrorDetails
    • ApiErrorResponse
    • ScreeningResult
    • Watchlist
    • ScreenTransaction
    • CreateWatchlist
    • ScreeningRequestsList
    • WatchlistsList
    • Rescreen
    • UpdateWatchlist
    • WatchlistEntriesList
    • WatchlistEntry
    • AddEntry
    • RemoveWatchlistEntry
    • SyncWatchlist
    • WatchlistImportJob
    • WatchlistExport
    • WatchlistImportJobsList
  1. Entries

Bulk import watchlist entries

POST
/v1/txn-monitoring/lists/{id}/entries/import
Upload a CSV or XLSX file of entries. Creates a background import job that deduplicates by sourceId; poll the returned job for progress and results.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Path Params

Responses

🟢201
application/json
Successful response
Bodyapplication/json

🟠400
🟠401
🟠403
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.qeeptech.com/v1/txn-monitoring/lists//entries/import' \
--header 'Authorization: Bearer <token>'
Response Response Example
201 - Example 1
{
    "success": true,
    "data": {
        "id": "string",
        "watchlistId": "string",
        "status": "string",
        "fileName": "string",
        "totalRows": 0,
        "importedRows": 0,
        "skippedRows": 0,
        "failedRows": 0,
        "progressPercent": 0,
        "errors": [
            {
                "row": -9007199254740991,
                "sourceId": "string",
                "primaryName": "string",
                "message": "string"
            }
        ],
        "errorMessage": "string",
        "createdAt": "string",
        "completedAt": "string"
    },
    "message": "string",
    "meta": {
        "timestamp": "2019-08-24T14:15:22.123Z",
        "requestId": "string",
        "traceId": "string",
        "spanId": "string",
        "path": "string",
        "pagination": {
            "page": 0,
            "limit": 0,
            "total": 0,
            "totalPages": 0,
            "hasNext": true,
            "hasPrevious": true
        }
    }
}
Modified at 2026-08-02 23:22:43
Previous
Export watchlist entries
Next
Cancel a watchlist import job
Built with