Skip to main content
POST
/
users
/
cancel
curl -X POST https://api.linkedcamp.com/users/cancel \
  -H "token: YOUR_AGENCY_OWNER_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "jane@example.com",
    "reason": "Client requested cancellation",
    "description": "The client no longer needs LinkedIn outreach services."
  }'
{
  "success": true,
  "message": "User deleted 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. This action is irreversible.

Headers

token
string
required
Token from the agency owner account.

Body Parameters

email
string
required
Email address of the sub-account to cancel.
reason
string
required
Reason for cancelling the sub-account.
description
string
required
Detailed description of why the sub-account is being cancelled.

Response

success
boolean
Whether the request was successful.
message
string
A human-readable result message.
curl -X POST https://api.linkedcamp.com/users/cancel \
  -H "token: YOUR_AGENCY_OWNER_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "jane@example.com",
    "reason": "Client requested cancellation",
    "description": "The client no longer needs LinkedIn outreach services."
  }'
{
  "success": true,
  "message": "User deleted successfully!"
}