URL

https://devwebapi.leadmaster.com/api/Logcall/EndCall

Description

Handles incoming HTTP POST requests for the "EndCall" endpoint, processes the JSON payload, and updates the call log to mark the end of a call in the database.

HttpMethod

POST

Response Information

HttpResponseMessage indicating the success or failure of the EndCall API execution.

Response body formats

application/json, text/json

Sample:
{
  "StatusCode": 100,
  "IsSuccess": true,
  "Message": "sample string 2",
  "Result": "sample string 3"
}

application/xml, text/xml

Sample:
<APIResponseBaseOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessObjects.ViewModel">
  <IsSuccess>true</IsSuccess>
  <Message>sample string 2</Message>
  <Result>sample string 3</Result>
  <StatusCode>Continue</StatusCode>
</APIResponseBaseOfstring>