Add a note to a call

This API allows you to add a note to a call.

Sample Request

curl --request POST \
     --url https://api.servetel.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 NameDescriptionData Type
idUnique ID of the call.String

Request Variables (Body Params)

The following parameter is required to add a note to a call.

Variable NameDescriptionData Type
messageNote to be added for the call.string
agent_dispositionAgent 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 NameDescriptionData Type
SuccessThe request success status, the possible values are: True (default) for success. False for failure.Boolean
MessageThe 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
Language
Click Try It! to start a request and see the response here!