post https://api.acefone.in/v1/call/note/
This API allows you to add a note to a call.
Sample Request
curl --request POST \
     --url https://api.acefone.in/v1/call/note/id \
     --header 'accept: application/json' \
     --header 'content-type: application/json'📘 Important!
Before we begin, note that the * sign denotes the mandatory variables in each table.
Request Variables (Path Params)
The following parameter is required to add a note to a call.
| Variable Name | Description | Data Type | 
|---|---|---|
| id | Unique ID of the call. | String | 
Request Variables (Body Params)
The following parameter is required to add a note to a call.
| Variable Name | Description | Data Type | 
|---|---|---|
| message | Note to be added for the call. | string | 
| agent_disposition | Agent Disposition to be added against the dialer calls. Multiple dispositions can be added seprated by | | string | 
Response Variables
The response returned is as following:
| Variable Name | Description | Data Type | 
|---|---|---|
| Success | The request success status, the possible values are: True (default) for success. False for failure. | Boolean | 
| Message | The message corresponding to the success status. For example, in 400 Response where the "success" variable pops as True, the message displayed is shown here. | String | 
