You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/pages/messaging/agent-chat-api/changelog/index.mdx
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,9 @@ The developer preview version provides a preview of the upcoming changes to the
31
31
### Chats
32
32
33
33
- The **List Archives** ([Web](/messaging/agent-chat-api/v3.7/#list-archives) & [RTM](/messaging/agent-chat-api/rtm-reference/#list-archives)) method has a new filter, `chat_ids`.
34
+
- The **List Chats** ([Web](/messaging/agent-chat-api/v3.7/#list-chats) & [RTM](/messaging/agent-chat-api/v3.7/rtm-reference/#list-chats)) method's response body field `chats_summary` was renamed to `chats_info`.
35
+
- The **Login** ([RTM](/messaging/agent-chat-api/v3.7/rtm-reference/#login)) method's response body field `chats_summary` was renamed to `chats_info`.
36
+
- The **Chat summary** data structure is renamed to [**Chat info**](/messaging/agent-chat-api/v3.7/data-structures#chat-info) and its field `last_thread_summary` is renamed to `last_thread_info`.
Copy file name to clipboardExpand all lines: src/pages/messaging/agent-chat-api/v3.7/data-structures/index.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -423,7 +423,7 @@ Apart from [Events](#events) and [Users](#users), there are also other common da
423
423
424
424
-[Access](#access)
425
425
-[Chats](#chats)
426
-
-[Chat summaries](#chat-summaries)
426
+
-[Chat info](#chat-info)
427
427
-[Form fields](#form-fields)
428
428
-[Filled form fields](#filled-form-fields)
429
429
-[Properties](#properties)
@@ -447,11 +447,11 @@ Apart from [Events](#events) and [Users](#users), there are also other common da
447
447
|`properties`| optional ||
448
448
|`access`| optional ||
449
449
450
-
## Chat summaries
450
+
## Chat info
451
451
452
-
**Chat summary** is similar to the **Chat** data structure. The difference is that **Chat** contains a `thread` object, while **Chat summary** includes `last_thread_summary` and `last_event_per_type`.
452
+
**Chat info** is similar to the **Chat** data structure. The difference is that **Chat** contains a `thread` object, while **Chat info** includes `last_thread_info` and `last_event_per_type`.
453
453
454
-
<CodeResponseversion="v3.7"type="agent"title={'Sample Chat summary data structure'}json="chatSummary"/>
454
+
<CodeResponseversion="v3.7"type="agent"title={'Sample Chat info data structure'}json="chatInfo"/>
|`filters`| No |`object`| When paginating, `filters` provided in the first request are remembered and automatically used for the subsequent requests. Providing a new `filters` object will result in a `validation` error. To reset the filters, start paginating with a new set of filters. |
142
142
|`filters.active`| No |`bool`| Possible values: `true` - active chats only, `false` - inactive chats only, `null` or not provided - both active and inactive chats. |
143
-
|`filters.include_chats_without_threads`| No |`bool`| Defines if the returned chat summary includes chats without any threads; default: `true`. |
143
+
|`filters.include_chats_without_threads`| No |`bool`| Defines if the returned chat info includes chats without any threads; default: `true`. |
144
144
|`filters.group_ids`| No |`array`| Array of group IDs. Max array size: 200 |
145
145
|`filters.properties.<namespace>.<name>.<filter_type>`| No |`any`||
146
146
|`sort_order`| No |`string`| Possible values: `asc` - oldest chats first, `desc` - newest chats first (default) |
@@ -159,7 +159,7 @@ There's only one value allowed for a single property.
It returns a list of the chats an agent has access to. Together with a **chat**, the **events** of **one thread** from this chat are returned.
488
488
489
-
The list classification is based on threads; 1 chat per 1 thread. Thus, the same **chat** object may appear on the list several times, but each time with a different **thread**. The returned **chat** is a complete object, not only a **chat summary**.
489
+
The list classification is based on threads; 1 chat per 1 thread. Thus, the same **chat** object may appear on the list several times, but each time with a different **thread**. The returned **chat** is a complete object, not only a **chat info**.
|`filters`| No |`object`| When paginating, `filters` provided in the first request are remembered and automatically used for the subsequent requests. Providing a new `filters` object will result in a `validation` error. To reset the filters, start paginating with a new set of filters. |
184
184
|`filters.active`| No |`bool`| Possible values: `true` - active chats only, `false` - inactive chats only, `null` or not provided - both active and inactive chats. |
185
-
|`filters.include_chats_without_threads`| No |`bool`| Defines if the returned chat summary includes chats without any threads; default: `true`. |
185
+
|`filters.include_chats_without_threads`| No |`bool`| Defines if the returned chat info includes chats without any threads; default: `true`. |
186
186
|`filters.group_ids`| No |`array`| Array of group IDs. Max array size: 200 |
187
187
|`filters.properties.<namespace>.<name>.<filter_type>`| No |`any`||
188
188
|`sort_order`| No |`string`| Possible values: `asc` - oldest chats first, `desc` - newest chats first (default) |
@@ -201,7 +201,7 @@ There's only one value allowed for a single property.
@@ -257,7 +257,7 @@ There's only one value allowed for a single property.
257
257
}, {
258
258
// "Agent" user object
259
259
}],
260
-
"last_thread_summary": {
260
+
"last_thread_info": {
261
261
"id": "K600PKZON8",
262
262
"created_at": "2020-05-07T07:11:28.288340Z",
263
263
"user_ids": [
@@ -543,7 +543,7 @@ It returns a thread that the current agent has access to in a given chat.
543
543
544
544
It returns a list of the chats an agent has access to. Together with a **chat**, the **events** of **one thread** from this chat are returned.
545
545
546
-
The list classification is based on threads; 1 chat per 1 thread. Thus, the same **chat** object may appear on the list several times, but each time with a different **thread**. The returned **chat** is a complete object, not only a**chat summary**.
546
+
The list classification is based on threads; 1 chat per 1 thread. Thus, the same **chat** object may appear on the list several times, but each time with a different **thread**. The returned **chat** is a complete object, not only the**chat info**.
Copy file name to clipboardExpand all lines: src/pages/messaging/customer-chat-api/changelog/index.mdx
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,12 @@ The developer preview version provides a preview of the upcoming changes to the
19
19
20
20
</Warning>
21
21
22
+
## [v3.7] - Developer preview
23
+
24
+
### Chats
25
+
26
+
- The **List Chats** ([Web](/messaging/customer-chat-api/v3.7/#list-chats) & [RTM](/messaging/customer-chat-api/v3.7/rtm-reference/#list-chats)) method's response body field `chats_summary` was renamed to `chats_info`.
Copy file name to clipboardExpand all lines: src/pages/messaging/customer-chat-api/v3.7/data-structures/index.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -394,7 +394,7 @@ Apart from [Events](#events) and [Users](#users), there are also other common da
394
394
395
395
-[Access](#access)
396
396
-[Chats](#chats)
397
-
-[Chat summaries](#chat-summaries)
397
+
-[Chat info](#chat-info)
398
398
-[Forms](#forms)
399
399
-[Form fields](#form-fields)
400
400
-[Filled form fields](#filled-form-fields)
@@ -418,11 +418,11 @@ Apart from [Events](#events) and [Users](#users), there are also other common da
418
418
|`properties`| optional ||
419
419
|`access`| optional ||
420
420
421
-
## Chat summaries
421
+
## Chat info
422
422
423
-
**Chat summary** is similar to the **Chat** data structure. The difference is that **Chat** contains a `thread` object, while **Chat summary** includes `last_event_per_type`.
423
+
**Chat info** is similar to the **Chat** data structure. The difference is that **Chat** contains a `thread` object, while **Chat info** includes `last_event_per_type`.
424
424
425
-
<CodeResponseversion="v3.7"type="customer"title={'Sample Chat summary data structure'}json="chatSummary"/>
425
+
<CodeResponseversion="v3.7"type="customer"title={'Sample Chat info data structure'}json="chatInfo"/>
0 commit comments