Skip to main content
POST
/
v1
/
exceptions
/
bulk
/
resolve
Bulk resolve exceptions
curl --request POST \
  --url https://matcher.sandbox.lerian.net/v1/exceptions/bulk/resolve \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "exception_ids": [
    "<string>"
  ],
  "resolution": "ACCEPTED",
  "reason": "<string>"
}
'
{
  "succeeded": [
    "<string>"
  ],
  "failed": [
    {
      "exception_id": "<string>",
      "error": "<string>"
    }
  ],
  "total": 10
}

Authorizations

Authorization
string
header
required

Bearer token authentication (format: "Bearer {token}")

Headers

X-Request-Id
string

A unique identifier for tracing the request across services.

X-Idempotency-Key
string

A unique key to ensure safe retries of the request.

Body

application/json

Bulk resolve payload

Request payload for bulk resolving exceptions

exception_ids
string[]
required

List of exception IDs to resolve (maximum 100)

Required array length: 1 - 100 elements
resolution
string
required

Resolution status for all exceptions

Maximum string length: 255
Example:

"ACCEPTED"

reason
string

Shared resolution reason

Maximum string length: 1000

Response

Bulk operation completed (check response for partial failures)

Response from a bulk operation with success and failure details

succeeded
string[]

List of exception IDs that were processed successfully

failed
object[]

List of failures with exception IDs and error messages

total
integer

Total number of exceptions in the request

Example:

10