POST api/EverReady/UpdatePhoneCall

Update PhoneCall method.

!!! Requires Authorization! !!!

Request Information

URI Parameters

None.

Body Parameters

The PhoneCall object.

PhoneCallViewModel
NameDescriptionTypeAdditional information
id

Unique identifier of PhoneCall

string

None.

customerId

Unique identifier of Customer

string

None.

ownerId

Gets or sets the user owning the PhoneCall if any

string

None.

callType

Gets or sets callType of PhoneCall

string

None.

callDateTime

Gets or sets call date and time of PhoneCall

date

None.

callDurationInSeconds

Gets or sets call durations of PhoneCall

string

None.

description

Gets or sets description of PhoneCall

string

None.

createdDate

Gets or sets created date of the PhoneCall

date

None.

deletedDate

Gets or sets deleted date of the PhoneCall

date

None.

Request Formats

application/json, text/json

Sample:
{
  "id": "sample string 1",
  "customerId": "sample string 2",
  "ownerId": "sample string 3",
  "callType": "sample string 4",
  "callDateTime": "2026-01-09T22:05:52.6981351+00:00",
  "callDurationInSeconds": "sample string 6",
  "description": "sample string 7",
  "createdDate": "2026-01-09T22:05:52.6981351+00:00",
  "deletedDate": "2026-01-09T22:05:52.6981351+00:00"
}

application/xml, text/xml

Sample:
<PhoneCallViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TalentDesk.WebApi.Models.EverReady">
  <callDateTime>2026-01-09T22:05:52.6981351+00:00</callDateTime>
  <callDurationInSeconds>sample string 6</callDurationInSeconds>
  <callType>sample string 4</callType>
  <createdDate>2026-01-09T22:05:52.6981351+00:00</createdDate>
  <customerId>sample string 2</customerId>
  <deletedDate>2026-01-09T22:05:52.6981351+00:00</deletedDate>
  <description>sample string 7</description>
  <id>sample string 1</id>
  <ownerId>sample string 3</ownerId>
</PhoneCallViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage.

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.