Skip to main content
DELETE
/
api
/
v1
/
tracked-accounts
/
{id}
Sleep Tracked Account
curl --request DELETE \
  --url https://www.catchthegoodones.com/api/v1/tracked-accounts/{id}
{
  "success": true
}
Puts a tracked account to sleep. The account’s history is preserved, but syncing is paused and the Stripe subscription quantity for that tier is decremented. Billing note: Sleeping an account removes a subscription item from your Stripe subscription for that tier.

Headers

HeaderRequiredDescription
AuthorizationYesBearer ctgo_your_api_key_here

Path parameters

ParameterTypeDescription
idintegerThe tracked account ID

Example

curl -X DELETE https://www.catchthegoodones.com/api/v1/tracked-accounts/1 \
  -H "Authorization: Bearer ctgo_your_api_key_here"

Response

{
  "success": true
}