v1
latestOpenAPI 3.1.02026-07-24180245513.9 KBCancel DICT proxy claim
Cancel a proxy claim. Allowed start status depends on the claim type:
- type=portability — cancellable from open or waiting_resolution.
- type=ownership — cancellable from open, waiting_resolution, or confirmed.
Either role (claimer or donor) can call cancel. The scheme_data.cancelled_by field reflects the row's role — the side that initiated the cancel — and is stamped on this call.
Cancellation is async at the scheme. On success the response returns status = pending_cancellation: the request was accepted and is awaiting the scheme to finalise it. The claim is flipped to cancelled by the proxy_claim.cancellation_completed inbound event. On provider rejection the response returns 200 with status = cancellation_rejected and a populated status_details (rejections are stored business states, not HTTP errors).
Cancellation does not affect the linked proxy_key: if an ownership claim is cancelled after being confirmed (e.g. DICT FRAUD), the donor-side proxy_key.disabled state is not auto-reverted. Manual reconciliation if needed.
Path parameters
ID of the proxy claim to cancel.
Request body
Example request
{
"scheme_data": {
"reason": "USER_REQUESTED"
}
}Response
Proxy claim moved to pending_cancellation (or cancellation rejected by the provider).
Example response
{
"id": "e5f6a7b8-c9d0-1234-efff-123456789012",
"object": "proxy_claim",
"scheme": "dict",
"type": "portability",
"role": "claimer",
"status": "open",
"proxy_type": "tax_id",
"proxy_type_code": "cpf",
"proxy_identification": "12345678901",
"claimer_name": "Maria Silva",
"claimer_account_identification": "0001234-5",
"claimer_account_type": "CACC",
"claimer_account_issuer": "12345678",
"claimer_servicer": "12345678",
"connected_account_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"resolution_period_end": "2026-01-08T12:00:00Z",
"completion_period_end": "2026-01-15T12:00:00Z",
"scheme_data": {
"claim_id": "claim-bacen-uuid-001",
"claimer_tax_identification_number": "12345678901",
"claimer_owner_type": "individual",
"claimer_opening_date": "2020-01-01T00:00:00Z"
},
"metadata": {},
"created_at": "2026-01-01T12:00:00Z"
}