v1

latestOpenAPI 3.1.02026-07-263644911022.4 KB
Configuration Contexts

Get a reconciliation context

Use this endpoint to retrieve the details of a specific reconciliation context by its identifier.

get/v1/contexts/{contextId}

Path parameters

contextIdstring required

The unique identifier of the reconciliation context.

Headers

X-Request-Idstring

A unique identifier for tracing the request across services.

Response

Successfully retrieved context

idstring

Unique identifier for the context

tenantIdstring

Tenant ID this context belongs to

namestring

Name of the reconciliation context

type'1:1' | '1:N' | 'N:M'

Reconciliation topology type

intervalstring

Execution interval

status'DRAFT' | 'ACTIVE' | 'PAUSED' | 'ARCHIVED'

Current status of the context

feeToleranceAbsstring

Absolute fee tolerance amount

feeTolerancePctstring

Percentage fee tolerance

feeNormalization'NET' | 'GROSS'

Fee normalization mode

autoMatchOnUploadboolean

Whether matching triggers automatically after file upload

createdAtstring

Creation timestamp in RFC3339 format

updatedAtstring

Last update timestamp in RFC3339 format

Example response

{
  "id": "019c96a0-10a0-72d2-9fb0-2b7de8093182",
  "tenantId": "019c96a0-0a98-7287-9a31-786e0809c769",
  "name": "Bank Reconciliation Q1",
  "type": "1:1",
  "interval": "daily",
  "status": "ACTIVE",
  "feeToleranceAbs": "0.50",
  "feeTolerancePct": "0.01",
  "feeNormalization": "NET",
  "createdAt": "2025-01-15T10:30:00.000Z",
  "updatedAt": "2025-01-15T10:30:00.000Z"
}