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.
Token from the agency owner account.
Body Parameters
Full name of the new sub-account user.
Email address for the new sub-account. Must be unique and not already registered.
The plan ID to assign to the sub-account. If not provided, defaults to “CUSTOMER”.
Response
Whether the request was successful.
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!"
}