Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DC-183 #423

Merged
merged 1 commit into from
Mar 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 44 additions & 42 deletions docs/conversation-api/api-reference/action-items.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,50 +118,52 @@ Header Name | Required | Description

```javascript
{
"actionItems": [
{
"id": "6603306467065856",
"text": "Surbhi Rathore can schedule a visit from one of our technicians for tomorrow afternoon at 1:00 PM.",
"type": "action_item",
"score": 0.9602078494794586,
"messageIds": [
"5175845967626240"
],
"entities": [
"actionItems": [
{
"type": "datetime",
"text": "tomorrow afternoon at 1:00 pm",
"offset": 68,
"value": "2021-10-31 13:00:00"
},
{
"type": "person",
"text": "Surbhi Rathore",
"offset": 0,
"value": {
"assignee": true,
"id": "4f6de4aa-05e5-4697-b8ea-7a962eecfd77",
"name": "Surbhi Rathore",
"userId": "[email protected]"
}
"id": "4567077831573504",
"text": "Vikram you need to work on figuring out a plan in which we can make this hackathon work for our customers first, and then Kunal then can go out and implement it for the rest of the world.",
"type": "action_item",
"score": 0.9456050585275944,
"messageIds": [
"4854542482014208"
],
"entities": [
{
"type": "person",
"text": "Vikram",
"offset": 0,
"value": {
"assignee": true,
"name": "Vikram"
}
},
{
"type": "person",
"text": "Kunal",
"offset": 122,
"value": {
"assignee": true,
"name": "Kunal"
}
}
],
"phrases": [
{
"type": "action_phrase",
"text": "make this hackathon work for our customers first"
}
],
"from": {
"id": "c99e7baf-8d9c-4668-ae08-6bd3384bc642",
"name": "Surbhi",
"userId": "[email protected]"
},
"definitive": true,
"assignee": {
"name": "Vikram"
}
}
],
"phrases": [],
"from": {
"id": "4f6de4aa-05e5-4697-b8ea-7a962eecfd77",
"name": "Surbhi Rathore",
"userId": "[email protected]"
},
"definitive": false,
"assignee": {
"id": "4f6de4aa-05e5-4697-b8ea-7a962eecfd77",
"name": "Surbhi Rathore",
"email": "[email protected]"
},
"dueBy": "2021-10-31T20:00:00.000Z"
}
]
}
]
```

### Response Parameters
Expand Down