Skip to main content
POST
/
v1
/
transcript
/
project
/
{projectID}
Get All Project Transcripts
curl --request POST \
  --url https://analytics-api.voiceflow.com/v1/transcript/project/{projectID} \
  --header 'Content-Type: application/json' \
  --data '
{
  "filters": [
    {
      "id": "<string>",
      "op": "gt",
      "value": 123
    }
  ],
  "endDate": "2023-11-07T05:31:56Z",
  "sessionID": "<string>",
  "startDate": "2023-11-07T05:31:56Z",
  "environmentID": "<string>"
}
'
{
  "transcripts": [
    {
      "id": "<string>",
      "sessionID": "<string>",
      "projectID": "<string>",
      "environmentID": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "expiresAt": "2023-11-07T05:31:56Z",
      "endedAt": "2023-11-07T05:31:56Z",
      "recordingURL": "<string>",
      "properties": [
        {
          "value": "<string>",
          "metadata": {},
          "createdAt": "2023-11-07T05:31:56Z",
          "updatedAt": "2023-11-07T05:31:56Z",
          "id": "<string>",
          "name": "<string>",
          "type": "<string>",
          "default": true
        }
      ],
      "evaluations": [
        {
          "value": 123,
          "reason": "<string>",
          "cost": 123,
          "createdAt": "2023-11-07T05:31:56Z",
          "updatedAt": "2023-11-07T05:31:56Z",
          "id": "<string>",
          "name": "<string>",
          "description": "<string>",
          "default": true,
          "type": "boolean"
        }
      ]
    }
  ]
}

Path Parameters

projectID
string
required

Query Parameters

take
integer
default:25
Required range: 1 < x < 100
skip
integer
default:0
Required range: x > 0
order
enum<string>
default:DESC
Available options:
ASC,
DESC
encode
boolean

Body

application/json
filters
object[]
Maximum array length: 50
endDate
string<date-time>
sessionID
string
startDate
string<date-time>
environmentID

Response

200 - application/json
transcripts
object[]
required