Skip to main content
GET
/
workspaces
/
{workspaceId}
/
reports
List reports
curl --request GET \
  --url https://app.triplesession.com/api/public/ai-coach/workspaces/{workspaceId}/reports \
  --header 'Authorization: Bearer <token>'
{
  "reports": [
    {
      "id": "<string>",
      "name": "<string>",
      "owner_id": "<string>",
      "score": 123,
      "score_breakdown": {},
      "scorecard": "<string>",
      "scorecard_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "duration_in_minutes": 123,
      "source": "<string>",
      "status": "<string>",
      "evaluatee_user": {
        "name": "<string>",
        "first_name": "<string>",
        "email": "jsmith@example.com",
        "id": "<string>",
        "avatar_url": "<string>"
      },
      "share": {
        "id": "<string>",
        "deactivated_at": "2023-11-07T05:31:56Z"
      },
      "participants": [
        "<string>"
      ],
      "attendees": [
        "<string>"
      ],
      "crm_deals": [
        {
          "id": "<string>",
          "name": "<string>",
          "url": "<string>"
        }
      ]
    }
  ],
  "page": 2,
  "total_count": 1
}

Documentation Index

Fetch the complete documentation index at: https://docs.triplesession.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use the public API key generated for a workspace.

Path Parameters

workspaceId
string<uuid>
required

Workspace ID.

Query Parameters

page
integer
default:1

Page number. Missing, invalid, or values below 1 are treated as page 1.

Required range: x >= 1
limit
integer
default:50

Number of reports to return. Values are clamped between 1 and 50.

Required range: 1 <= x <= 50

Search text used to filter reports by name, evaluatee, attendee email, or CRM deal name. Values over 100 characters are rejected.

Required string length: 1 - 100
scorecardId
string<uuid>

Filter reports by scorecard ID.

Response

Reports visible to the workspace API key.

reports
object[]
required
page
integer
required
Required range: x >= 1
total_count
integer
required
Required range: x >= 0