Transcripts
Get all Transcripts
Paginate through all transcripts and return basic metadata only. Use the single transcript endpoint to fetch the entire transcript data. Will only return transcripts that the current authenticated user has permission to see.
You can filter transcripts using the filter query parameter. The filter parameter is a string that you can specify conditions based on the following properties.
| Property Name | Type | Allowed Operators | Examples |
|---|---|---|---|
| id | int32 | = | id=1 |
| createdAt | datetime | >, <, >=, <= | createdAt<2025-02-04T10:48:24Z |
get/v2/transcripts
Query parameters
totalCountboolean
Include total count of the collection in the pagination response
cursorstring
Cursor for the next or previous page
limitinteger
Number of items to include in the page
filterstring
Filter options
Response
OK
Example response
{
"data": [
{
"id": 1234,
"note": {
"creator": {
"id": 1,
"firstName": "Jane",
"lastName": "Doe",
"primaryEmailAddress": "jane.smith@northpointvc.com",
"type": "internal"
},
"mentions": [
{
"id": 1,
"type": "person",
"person": {
"id": 1,
"firstName": "Jane",
"lastName": "Smith",
"primaryEmailAddress": "jane.smith@northpointvc.com",
"type": "internal"
}
}
]
},
"languageCode": "en"
}
],
"pagination": {
"prevUrl": "https://api.affinity.co/v2/foo?cursor=ICAgICAgYmVmb3JlOjo6Nw",
"nextUrl": "https://api.affinity.co/v2/foo?cursor=ICAgICAgIGFmdGVyOjo6NA"
}
}