DELETE
/
v1
/
entries
/
{entryId}
Delete key
curl --request DELETE \
  --url http://localhost:4011/v1/entries/{entryId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "accountId": "01989f9e-6508-79f8-9540-835be49fbd0d"
}'
{
  "key": "user@example.com"
}

Authorizations

Authorization
string
header
required

JWT token obtained from the authentication endpoint

Path Parameters

entryId
string
required

Pix key to delete

Body

application/json
accountId
string<uuid>
required

Account ID requesting deletion

Example:

"01989f9e-6508-79f8-9540-835be49fbd0d"

Response

Pix key deleted successfully

key
string

Deleted Pix key

Example:

"user@example.com"