Documentation

Teamfluence API v2.0

REST API reference for Teamfluence workspace, leads, and system endpoints

The Teamfluence API exposes workspace and lead data through a secure JSON REST interface.

Base URL and Version

Authentication

All protected endpoints require a bearer token in the Authorization header.

Authorization: Bearer <your_api_key>

Generate your API key from Teamfluence workspace settings.

Warning

Use HTTPS only. Requests over HTTP or requests without authentication fail.

Endpoint Groups

  • workspace: workspace users and credits balance
  • leads: list and update leads
  • default: health check endpoint

OpenAPI Schema

The machine-readable API specification is available at:

Terms and Contact

Example Request

curl -X GET "https://api.teamfluence.com/v2/workspace/credits" \
  -H "Authorization: Bearer $TEAMFLUENCE_API_KEY" \
  -H "Accept: application/json"