Skip to main content
GET
/
meetings
/
{id}
Get a meeting
curl --request GET \
  --url https://api.cura.inc/meetings/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "attributes": {
      "company_id": "<string>",
      "title": "<string>",
      "start_time": "<string>",
      "end_time": "<string>",
      "attendees": [
        {
          "email": "jsmith@example.com",
          "organizer": true,
          "name": "<string>"
        }
      ],
      "created_at": "<string>",
      "updated_at": "<string>"
    },
    "notes": [
      {
        "id": "<string>",
        "attributes": {
          "meeting_id": "<string>",
          "notes": "<string>",
          "transcript": {
            "segments": [
              {
                "text": "<string>",
                "speaker": "<string>",
                "startTime": 123,
                "endTime": 123
              }
            ]
          },
          "synced_at": "<string>",
          "created_at": "<string>",
          "updated_at": "<string>"
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Your workspace API key (cura_…), sent as Authorization: Bearer <key>.

Path Parameters

id
string<uuid>
required

Meeting id.

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$

Query Parameters

include
enum<string>

Set to notes to include the meeting's notes (and transcripts).

Available options:
notes

Response

The meeting.

data
object
required