Saltar al contenido principal
GET
/
v1
/
exceptions
/
{exceptionId}
Get exception
curl --request GET \
  --url https://matcher.sandbox.lerian.net/v1/exceptions/{exceptionId} \
  --header 'Authorization: Bearer <token>'
{
  "assignedTo": "user@example.com",
  "createdAt": "2025-01-15T10:30:00.000Z",
  "dueAt": "2025-01-20T10:30:00.000Z",
  "externalIssueId": "RECON-1234",
  "externalSystem": "JIRA",
  "id": "019c96a0-10d2-7134-ba5f-664142ee7052",
  "reason": "Amount mismatch detected",
  "resolutionNotes": "Resolved via force match",
  "resolutionReason": "BUSINESS_DECISION",
  "resolutionType": "FORCE_MATCH",
  "severity": "HIGH",
  "status": "OPEN",
  "transactionId": "019c96a0-10ce-75fc-a273-dc799079a99c",
  "updatedAt": "2025-01-15T10:30:00.000Z"
}

Autorizaciones

Authorization
string
header
requerido

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

Encabezados

X-Request-Id
string

A unique identifier for tracing the request across services.

Parámetros de ruta

exceptionId
string
requerido

Exception ID

Respuesta

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

Exception details

assignedTo
string

User the exception is assigned to

Ejemplo:

"user@example.com"

createdAt
string

Creation timestamp in RFC3339 format

Ejemplo:

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

dueAt
string

Due date for resolution in RFC3339 format

Ejemplo:

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

externalIssueId
string

External issue ID in the external system

Ejemplo:

"RECON-1234"

externalSystem
string

External system where exception was dispatched

Ejemplo:

"JIRA"

id
string

Unique identifier for the exception

Ejemplo:

"019c96a0-10d2-7134-ba5f-664142ee7052"

reason
string

Reason the exception was raised

Ejemplo:

"Amount mismatch detected"

resolutionNotes
string

Resolution notes when resolved

Ejemplo:

"Resolved via force match"

resolutionReason
string

Reason for the resolution

Ejemplo:

"BUSINESS_DECISION"

resolutionType
enum<string>

Type of resolution applied

Opciones disponibles:
FORCE_MATCH,
ADJUST_ENTRY
Ejemplo:

"FORCE_MATCH"

severity
enum<string>

Severity level

Opciones disponibles:
LOW,
MEDIUM,
HIGH,
CRITICAL
Ejemplo:

"HIGH"

status
enum<string>

Current status

Opciones disponibles:
OPEN,
ASSIGNED,
PENDING_RESOLUTION,
RESOLVED
Ejemplo:

"OPEN"

transactionId
string

Transaction ID this exception is for

Ejemplo:

"019c96a0-10ce-75fc-a273-dc799079a99c"

updatedAt
string

Last update timestamp in RFC3339 format

Ejemplo:

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