Conversation
List Conversations
GET /conversations
Headers:
Authorization: $OTO_API_KEY
OTO_USER_ID: {user_id}
Query-params (all optional):
?status=active|archived // filter by conversation status
?updated_since=YYYY-MM-DDTHH:MM:SSZ // return only conversations updated after this ISO-8601 timestamp
?limit=50 // max items to return (default 50, max 200)
?offset=0 // pagination offset{
"conversations": [
{
"id": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
"title": "Daily stand-up",
"created_at": "0000-00-00T00:00:00Z",
"updated_at": "0000-00-00T00:00:00Z",
"status": "active", // "active" | "archived"
"last_transcript_preview": "Yesterday we decided to …"
}
]
}Get Conversation Audio URL
Get Full Transcript
Get Conversation Summary Logs
Last updated