Skip to main content
POST
/
users
/
register
curl -X POST https://api.linkedcamp.com/users/register \
  -H "token: YOUR_AGENCY_OWNER_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Jane Smith",
    "email": "jane@example.com",
    "planId": "60f7a1b2c3d4e5f6a7b8c9d0"
  }'
{
  "success": true,
  "message": "Sub-account added 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

name
string
required
Full name of the new sub-account user.
email
string
required
Email address for the new sub-account. Must be unique and not already registered.
planId
string
The plan ID to assign to the sub-account. If not provided, defaults to “CUSTOMER”.

Response

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