| 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 .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
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: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"messages":[{"date":"String","from":"String","body":"String","mediaUri":"String","mediaContentType":"String"}]}