Skip to main content
POST
/
v1
/
imports
/
transactions
/
{transactionId}
/
ignore
Ignore a transaction
curl --request POST \
  --url https://matcher.sandbox.lerian.net/v1/imports/transactions/{transactionId}/ignore \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "Duplicate entry - already processed manually"
}
'
{
  "amount": "1000.50",
  "contextId": "550e8400-e29b-41d4-a716-446655440000",
  "createdAt": "2025-01-15T10:30:00.000Z",
  "currency": "USD",
  "date": "2025-01-15T00:00:00.000Z",
  "description": "Wire transfer from ABC Corp",
  "externalId": "TXN-12345",
  "extractionStatus": "EXTRACTED",
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "jobId": "550e8400-e29b-41d4-a716-446655440000",
  "sourceId": "550e8400-e29b-41d4-a716-446655440000",
  "status": "PENDING"
}

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.

Path Parameters

transactionId
string
required

Transaction ID

Query Parameters

context_id
string
required

Context ID for ownership verification

Body

application/json

Ignore transaction request

Ignore transaction request

reason
string
required

Reason for ignoring the transaction

Example:

"Duplicate entry - already processed manually"

Response

Indicates that the request was successful and the response contains the expected data.

Ignore transaction response

amount
string

Transaction amount as string

Example:

"1000.50"

contextId
string

Context ID this transaction belongs to

Example:

"550e8400-e29b-41d4-a716-446655440000"

createdAt
string

Creation timestamp in RFC3339 format

Example:

"2025-01-15T10:30:00.000Z"

currency
string

Currency code

Example:

"USD"

date
string

Transaction date in RFC3339 format

Example:

"2025-01-15T00:00:00.000Z"

description
string

Description of the transaction

Example:

"Wire transfer from ABC Corp"

externalId
string

External identifier from the source system

Example:

"TXN-12345"

extractionStatus
enum<string>

Extraction status

Available options:
PENDING,
EXTRACTED,
FAILED
Example:

"EXTRACTED"

id
string

Unique identifier for the transaction

Example:

"550e8400-e29b-41d4-a716-446655440000"

jobId
string

Job ID that ingested this transaction

Example:

"550e8400-e29b-41d4-a716-446655440000"

sourceId
string

Source ID this transaction belongs to

Example:

"550e8400-e29b-41d4-a716-446655440000"

status
enum<string>

Current matching status

Available options:
PENDING,
MATCHED,
UNMATCHED
Example:

"PENDING"