This endpoint requires an agency owner token.
Token from the agency owner account.
Body Parameters
Email address of the sub-account to pause.
Response
Whether the request was successful.
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!"
}