Skip to content

Delete Payment Proof

Removes one proof file from your own view — e.g. you uploaded the wrong file by mistake. This is a soft delete: your provider can still see and download it for their records, it just drops out of your own List Payment Proofs and can no longer be downloaded through your own API key.

DELETE /v1/payments/:id/proofs/:proofId

Authentication

Authorization: Bearer <api-key>

The payment must belong to a subscription owned by your tenant.

Path parameters

ParameterDescription
idThe payment ID
proofIdThe proof file's id, from List Payment Proofs

Response

200 OK

json
{ "ok": true }

Errors

StatusCodeWhen
401UNAUTHORIZEDMissing or invalid API key
404PAYMENT_NOT_FOUNDPayment doesn't exist, or belongs to a different tenant
404NOT_FOUNDThe proof doesn't belong to this payment, or is already deleted
409CONFLICTThe payment is already VERIFIED — its proof files can no longer be changed
429TOO_MANY_REQUESTSRate limit exceeded

Notes

  • The cumulative 10-file limit enforced on upload only counts active files — deleting one frees up room for another upload.

Comprobify API Documentation