| Required role: | User |
| GET | /sessions/{sessionId}/transcript |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| SessionId | path | string | No | the session whose transcript you want to get |
| IncludeHistorical | query | bool? | No | Include previous messages from this chat party |
| HistoricalCutOffDate | query | string | No | How far back to include in historical messages. Max 6 months in past |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Messages | form | List<ChatTranscriptMessage> | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Date | form | string | No | |
| From | form | string | No | |
| Body | form | string | No | |
| MediaUri | form | string | No | |
| MediaContentType | form | string | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /sessions/{sessionId}/transcript HTTP/1.1
Host: evovoice.io
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
messages:
[
{
date: String,
from: String,
body: String,
mediaUri: String,
mediaContentType: String
}
]
}