Skip to main content
GET
/
v1
/
meetings
List Meetings
curl --request GET \
  --url https://public-api.frictio.ai/v1/meetings \
  --header 'X-Api-Key: <api-key>' \
  --header 'X-Workspace-Id: <x-workspace-id>'
{
  "data": [
    {
      "meeting_id": "a1b2c3d4-...",
      "frictio_meeting_url": "https://app.frictio.ai/ws/e1f2a3b4-.../meetings/1234567890",
      "workspace_id": "e1f2a3b4-...",
      "title": "PoC実装レビュー - UI & 認証対応",
      "platform": "Zoom",
      "start_time": "2026-06-05T10:00:00.000Z",
      "end_time": "2026-06-05T10:30:00.000Z",
      "duration": 1800,
      "base_type": "MEETING",
      "recording_source": "REALTIME_BOT_RECORDING",
      "crm_type": "HUBSPOT",
      "transcript_config": {
        "languages": [
          "ja",
          "en"
        ]
      },
      "meeting_owner": {
        "name": "大橋 勇輔",
        "email": "sample@syslea.io",
        "teams": [
          {
            "team_id": "b2c3d4e5-...",
            "name": "営業チーム"
          }
        ]
      },
      "attendees": [
        {
          "attendee_user_name": "大橋 勇輔",
          "attendee_user_email": "sample@syslea.io",
          "is_workspace_member": true,
          "is_internal": true,
          "teams": [
            {
              "team_id": "b2c3d4e5-...",
              "name": "営業チーム"
            }
          ],
          "contact_id": "a1b2c3d4-..."
        }
      ],
      "crm_integrations": [
        {
          "record_id": "12345678901",
          "record_name": "株式会社シスリー",
          "record_url": "https://app.hubspot.com/contacts/12345678901",
          "record_object_type": "deal"
        }
      ],
      "related_objects": [
        {
          "display_name": "大橋 勇輔",
          "object_id": "a1b2c3d4-...",
          "object_type": "contact",
          "fields": {
            "company_ids": [
              "c1d2e3f4-..."
            ],
            "is_internal": false
          },
          "sync_crm_object": {
            "record_id": "12345678901",
            "record_name": "株式会社シスリー",
            "record_url": "https://app.hubspot.com/contacts/12345678901",
            "record_object_type": "deal"
          }
        }
      ]
    }
  ],
  "pagination": {
    "next_cursor": "eyJpZCI6MTIzfQ=="
  }
}

Authorizations

X-Api-Key
string
header
required

Headers

X-Workspace-Id
string
required

ワークスペースID

Query Parameters

from
string<date-time>

指定日時以降のミーティングを取得。 toと組み合わせて期間指定が可能です。 例: from=2026-02-01 & to=2026-03-01 → 2月中に実施されたミーティング

to
string<date-time>

指定日時より前のミーティングを取得。

base_type
enum<string>

ミーティング種別のフィルタ。指定された種別のミーティングのみでフィルタリングされます。

Available options:
MEETING,
CALL
contact_ids
string[]

参加者のContact IDでフィルタ(複数指定はOR条件)

limit
integer
default:30

取得件数の上限(1〜50、デフォルト30)

Required range: 1 <= x <= 50
cursor
string

ページネーションカーソル。レスポンスの next_cursor を指定してください。

Response

成功

data
object[]
required
pagination
object
required