Saltar al contenido principal
DELETE
/
v1
/
claims
/
{claimId}
Cancel claim
curl --request DELETE \
  --url http://localhost:4011/v1/claims/{claimId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "key": "12345678901",
  "accountId": "550e8400-e29b-41d4-a716-446655440000"
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

JWT token obtained from the authentication endpoint

Path Parameters

claimId
string
required

Claim ID to cancel

Body

application/json
key
string
required

Pix key to cancel claim for

Example:

"12345678901"

accountId
string<uuid>
required

Account ID canceling the claim

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

Claim cancelled successfully

I