Skip to main content
POST
/
api
/
v2
/
accounts
/
{id}
/
wake
Wake a tracked account
curl --request POST \
  --url https://api.example.com/api/v2/accounts/{id}/wake
Wakes a sleeping account. Increments the Stripe subscription quantity for the tier. Requires an active subscription.

Example

curl -X POST https://www.catchthegoodones.com/api/v2/accounts/7/wake \
  -H "Authorization: Bearer ctgo_your_api_key_here"

Response

{ "success": true, "accountId": 7, "awake": true }

Errors

CodeHTTPWhen
subscription_required403User has no active paid subscription
Account not found404

Auth

Bearer or session cookie.