URL

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

Description

Handles incoming HTTP POST requests for the "StartCall" endpoint, processes the JSON payload, and updates/inserts call logs in the database based on the specified CompanyId.

HttpMethod

POST

Response Information

HttpResponseMessage indicating the success or failure of the StartCall 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>