Endpoints
Workspace Endpoints
Endpoints for workspace users and credits balance
The workspace tag contains team and billing-related read operations.
List Workspace Users
GET /v2/workspace/users
Returns workspace team members and LinkedIn integration details.
Authentication
Required: bearer token.
Example Request
curl -X GET "https://api.teamfluence.com/v2/workspace/users" \
-H "Authorization: Bearer $TEAMFLUENCE_API_KEY" \
-H "Accept: application/json"Response Fields
| Field | Type | Notes |
|---|---|---|
| id | string | Workspace user identifier |
| string | User email | |
| first_name | string | null | First name |
| last_name | string | null | Last name |
| is_active_seat | boolean | Whether user occupies an active seat |
| integration_status | string | null | NOT_CONNECTED, CONNECTED, or DISCONNECTED |
| linkedin_username | string | null | LinkedIn username |
| last_linkedin_update | string | null | Last LinkedIn sync datetime |
Example Response
[
{
"id": "usr_123",
"email": "owner@example.com",
"first_name": "Alex",
"last_name": "Doe",
"is_active_seat": true,
"integration_status": "CONNECTED",
"linkedin_username": "alex-doe",
"last_linkedin_update": "2026-07-20T11:41:09Z"
}
]Get Workspace Credits Balance
GET /v2/workspace/credits
Returns current workspace credits balance.
Example Request
curl -X GET "https://api.teamfluence.com/v2/workspace/credits" \
-H "Authorization: Bearer $TEAMFLUENCE_API_KEY" \
-H "Accept: application/json"Response Fields
| Field | Type | Notes |
|---|---|---|
| current_balance | integer | Available workspace credits |
| last_updated | string | null | Last update datetime |
Example Response
{
"current_balance": 1482,
"last_updated": "2026-07-29T08:12:10Z"
}