Skip to main content
POST
/
users
/
pause
curl -X POST https://api.linkedcamp.com/users/pause \
  -H "token: YOUR_AGENCY_OWNER_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "jane@example.com"
  }'
{
  "success": true,
  "message": "Sub-account paused successfully!"
}

Documentation Index

Fetch the complete documentation index at: https://docs.linkedcamp.com/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint requires an agency owner token.

Headers

token
string
required
Token from the agency owner account.

Body Parameters

email
string
required
Email address of the sub-account to pause.

Response

success
boolean
Whether the request was successful.
message
string
A human-readable result message.
curl -X POST https://api.linkedcamp.com/users/pause \
  -H "token: YOUR_AGENCY_OWNER_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "jane@example.com"
  }'
{
  "success": true,
  "message": "Sub-account paused successfully!"
}