Deleting account invitation from an offer

Revoking an invitation removes the offer from the merchant's Capital Dashboard immediately, preventing them from submitting an application under that offer.

When to delete an invitation

Common reasons to revoke an account invitation:

  • The wrong account was invited — for example, a test account ID was passed instead of the merchant's production account.
  • The merchant is no longer eligible for the offer terms after the invitation was issued (e.g., updated credit assessment).
  • The merchant has opted out and you want to remove the offer from their Dashboard proactively rather than waiting for expired_at.
  • You are withdrawing the offer for this merchant and replacing it with a different one.

How to delete an invitation via Lender Dashboard

  1. Open Offers tab on Lender Dashboard.
  2. Click Accounts button on selected offer.
  3. Click Remove and Confirm button on account to remove the invitation

How to delete an invitation via API

curl -XDELETE https://api.paymongo.com/v1/capitals/lenders/offers/{offer_id}/accounts/{account_id}

On success, the offer is immediately removed from the merchant's Capital Dashboard. The account_id in the path is the account whose invitation you are revoking — the offer itself and all other invited accounts are unaffected.

If the invitation has already expired naturally (past expired_at), calling this endpoint is a no-op and returns a success response.

Effect on in-progress applications

Deleting an invitation does not cancel an application the merchant has already submitted. If a merchant submitted an application before the invitation was revoked, that application continues through the normal review and approval flow. To prevent disbursement after an application has been submitted, use the reject decision endpoint instead.