Skip to main content
DELETE
/
v1
/
matching
/
groups
/
{matchGroupId}
Break/Unmatch a match group
curl --request DELETE \
  --url https://matcher.sandbox.lerian.net/v1/matching/groups/{matchGroupId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "incorrect match - amounts do not match"
}
'
{
  "code": "404",
  "title": "not_found",
  "message": "context not found",
  "error": "<string>"
}

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

matchGroupId
string
required

Match Group ID

Query Parameters

contextId
string
required

Context ID

Body

application/json

Unmatch payload with rejection reason

reason
string
required
Example:

"incorrect match - amounts do not match"

Response

Indicates that the operation was successful with no content to return.