Skip to main content
GET
/
v1
/
all-day-sessions
/
{id}
Fetch a session with all detected segments
curl --request GET \
  --url http://localhost:3000/v1/all-day-sessions/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "queued",
  "recording_url": "<string>",
  "duration_seconds": 123,
  "segments_detected": 1,
  "segments_analyzed": 1,
  "segments_pending_review": 1,
  "segments_skipped": 1,
  "segments": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "start_seconds": 123,
      "end_seconds": 123,
      "confidence": 123,
      "customer_name": "<string>",
      "is_sales_conversation": true,
      "detected_outcome": "<string>",
      "summary": "<string>",
      "status": "detected",
      "analysis_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "analysis_url": "<string>",
      "playback": {
        "recording_url": "<string>",
        "start_seconds": 123,
        "end_seconds": 123,
        "browser_seek_js": "<string>",
        "ffmpeg_extract": "<string>"
      },
      "created_at": "<string>",
      "analyzed_at": "<string>"
    }
  ],
  "options": {},
  "metadata": {},
  "callback_url": "<string>",
  "error": {
    "code": "<string>",
    "message": "<string>",
    "details": {}
  },
  "created_at": "<string>",
  "started_at": "<string>",
  "completed_at": "<string>",
  "partner_org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "partner_rep_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Documentation Index

Fetch the complete documentation index at: https://docs.goparlay.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Response

200 - application/json

Default Response

id
string<uuid>
required
status
enum<string>
required
Available options:
queued,
transcribing,
detecting,
analyzing,
completed,
failed
recording_url
string
required
duration_seconds
integer | null
required
segments_detected
integer
required
Required range: x >= 0
segments_analyzed
integer
required
Required range: x >= 0
segments_pending_review
integer
required
Required range: x >= 0
segments_skipped
integer
required
Required range: x >= 0
segments
object[]
required
options
object
required
metadata
object
required
callback_url
string | null
required
error
object
required
created_at
string
required
started_at
string | null
required
completed_at
string | null
required
partner_org_id
string<uuid> | null
required
partner_rep_id
string<uuid> | null
required