GET
/
{team_id}
/
notes
Get all notes
curl --request GET \
  --url https://api.superthread.com/v1/{team_id}/notes
{
  "cursor": "dmsjqh9d8w1hdjosjaasda",
  "count": 14,
  "notes": [
    {
      "id": "",
      "title": "Team Note",
      "transcript": "<string>",
      "transcripts": [
        {
          "content": "This is a transcript",
          "source": "author",
          "id": "43",
          "time_created": 1608742037016,
          "time_updated": 1608742037016
        }
      ],
      "user_notes": "<string>",
      "ai_notes": [
        {
          "id": "866a3b86-4651-482c-bb69-61921ea4548c",
          "note_template_id": "1da3b68c-3a82-495c-a6c9-e7a494281a36",
          "title": "Team Note",
          "content": "<string>",
          "time_updated": 1608742037016,
          "related_resources": [
            {
              "id": "123",
              "type": "card",
              "cosine_similarity": 0.8
            }
          ]
        }
      ],
      "user": {
        "user_id": "uDsu0j19",
        "type": "user",
        "source": {
          "type": "oauth",
          "client_id": "oczapier",
          "import_id": "bf1b9f76-3f95-42fc-bd7f-050b2f5f4197",
          "agent_id": "bf1b9f76-3f95-42fc-bd7f-050b2f5f4197",
          "email_addr": "[email protected]",
          "email_verified": false
        }
      },
      "user_updated": {
        "user_id": "uDsu0j19",
        "type": "user",
        "source": {
          "type": "oauth",
          "client_id": "oczapier",
          "import_id": "bf1b9f76-3f95-42fc-bd7f-050b2f5f4197",
          "agent_id": "bf1b9f76-3f95-42fc-bd7f-050b2f5f4197",
          "email_addr": "[email protected]",
          "email_verified": false
        }
      },
      "team_id": "tdsu0j19",
      "last_note_template_id": "<string>",
      "is_public": false,
      "public_settings": {
        "url": "https://notes.superthread.com/n/1"
      },
      "time_created": 1608742037016,
      "time_updated": 1608742037016,
      "meeting_metadata": {
        "id": "<string>",
        "name": "<string>",
        "description": "<string>",
        "links": [
          {
            "provider": "google",
            "link": "<string>"
          }
        ],
        "location": "<string>",
        "start_time": 1608742037016,
        "end_time": 1608742037016
      },
      "meeting_date": 1608742037016,
      "meeting_time": 1608742037016,
      "meeting_organizer": {
        "user_id": "uDsu0j19",
        "email": "[email protected]",
        "name": "John Doe"
      },
      "meeting_attendees": [
        {
          "user_id": "uDsu0j19",
          "email": "[email protected]",
          "name": "John Doe"
        }
      ]
    }
  ]
}

Path Parameters

team_id
string
required

Team ID is an alphanumerical string that identifies a Team. This is externally referred to as a "Workspace".

Query Parameters

cursor
string

Cursor for pagination

count
integer

Max number of items to return, defaults to 50 if unset

Response

200
application/json

Array of team notes visible to current user

The response is of type object.