> ## Documentation Index
> Fetch the complete documentation index at: https://docs.catchthegoodones.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Wake a tracked account

> Resume a slept account: re-activates syncing and increments Stripe quantity

Wakes a sleeping account. Increments the Stripe subscription quantity for the tier. Requires an active subscription.

## Example

```bash theme={null}
curl -X POST https://www.catchthegoodones.com/api/v2/accounts/7/wake \
  -H "Authorization: Bearer ctgo_your_api_key_here"
```

## Response

```json theme={null}
{ "success": true, "accountId": 7, "awake": true }
```

## Errors

| Code                    | HTTP | When                                 |
| ----------------------- | ---- | ------------------------------------ |
| `subscription_required` | 403  | User has no active paid subscription |
| `Account not found`     | 404  |                                      |

## Auth

Bearer or session cookie.
