Skip to main content
GET
/
tokens
curl -X GET "https://api.linkedcamp.com/tokens?accountEmail=user@example.com" \
  -H "token: YOUR_AGENCY_OWNER_TOKEN"
{
  "success": true,
  "message": "Api token found successfully!",
  "token": "abc123..."
}

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.

Query Parameters

accountEmail
string
required
The email address of the sub-account to retrieve the API token for.

Response

success
boolean
Whether the request was successful.
message
string
A human-readable result message.
token
string
The API token for the specified sub-account.
curl -X GET "https://api.linkedcamp.com/tokens?accountEmail=user@example.com" \
  -H "token: YOUR_AGENCY_OWNER_TOKEN"
{
  "success": true,
  "message": "Api token found successfully!",
  "token": "abc123..."
}