Skip to content
TipPage Docs
Esc
navigateopen⌘Jpreview

Close tipping

Stop accepting new tips: the tip page shows its closed state and the tip endpoint rejects new checkouts server-side. A viewer already mid-payment when tipping closes still completes normally and their tip lands in the queue, and tips already queued are unaffected. Fires the tipping.closed webhook. Requires tipping:control.

POST/tipping/close
Authorization
AuthorizationBearer token (tp_live_...) · headerrequired
A TipPage API key, created in Dashboard → Settings → Developer.
Responses
200Tipping is closed.
successboolean
openboolean
401Missing or invalid API key (`missing_api_key` / `invalid_api_key`).
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
403The key lacks the required scope (`missing_scope`).
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
required_scopestring
429Rate limit exceeded - check the `RateLimit-*` headers.
errorstring
Request
curl -X POST "https://api.tippage.com/v1/tipping/close" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "success": true,
  "open": false
}