v1
latestOpenAPI 3.1.02026-07-263644911022.4 KBConfiguration Match Rules
List match rules
Use this endpoint to retrieve all match rules under a specific context. You can filter the results by rule type. The response uses cursor-based pagination.
get/v1/contexts/{contextId}/rules
Path parameters
contextIdstring required
The unique identifier of the reconciliation context.
Query parameters
limitinteger
The maximum number of items to include in the response.
cursorstring
The cursor value for retrieving the next page of results.
type'EXACT' | 'TOLERANCE' | 'DATE_LAG'
Filter by rule type
Headers
X-Request-Idstring
A unique identifier for tracing the request across services.
Response
List of match rules with cursor pagination
Example response
{
"hasMore": true,
"items": [
{
"contextId": "019c96a0-10a0-72d2-9fb0-2b7de8093182",
"createdAt": "2025-01-15T10:30:00.000Z",
"id": "019c96a0-1071-7a0d-9916-a831221de252",
"priority": 1,
"type": "EXACT",
"updatedAt": "2025-01-15T10:30:00.000Z"
}
],
"limit": 20,
"nextCursor": "eyJpZCI6IjEyMyJ9",
"prevCursor": "eyJpZCI6IjEyMiJ9"
}