Update Call Notes for a Call
Update the call notes for a call during the call, or after the call.
Request URL
GET {base_url}/{api_path}/callnotes/update?access_token={access_token}
Request parameter
| Parameter | Required | Type | Description |
|---|---|---|---|
| id | Yes | String | The unique ID of the call note. Note: You can get the group ID from the (30028) Call Note Status Updated event
report. |
| group_id | No | String | The group ID of the call note. Note:
|
| disposition_code_ids | No | String | The unique ID(s) of call disposition code(s). Note:
|
| remark | No | String | Remark of the call note. |
| update_entry | Yes | String | The scenario in which the call note is updated. Valid
value:
|
Response parameter
| Parameter | Type | Description |
|---|---|---|
| errcode | Integer | Returned error code.
Note: You can check the error code and
error message in Error Code and Error Message.
|
| errmsg | String | Returned message.
|
Example
Request example
Update the call note of a specific call.
POST /openapi/v1.0/callnotes/update?access_token=C6jOpKQia170ueuKCqwQbYXcqdjPcZuM HTTP/1.1
Host: yeastardocs.example.yeastarcloud.com
Content-Type: application/json
{
"disposition_code_ids": "22,25",
"group_id": "1741336006.432"
"id": "20250306100421-F1C65",
"remark": "Already resolve customer's issue",
"update_entry": "in-call"
}
Response example
HTTP/1.1 200 OK
{
"errcode": 0,
"errmsg": "SUCCESS"
}