PUT api/VoiceMail/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

GoCallMessage
NameDescriptionTypeAdditional information
FileName

string

None.

Time

date

None.

CallerNumber

string

None.

CalledNumber

string

None.

IsNew

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "FileName": "sample string 1",
  "Time": "2025-12-10T15:35:08.7248339+01:00",
  "CallerNumber": "sample string 3",
  "CalledNumber": "sample string 4",
  "IsNew": true
}

application/xml, text/xml

Sample:
<GoCallMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VisWebApiDB">
  <CalledNumber>sample string 4</CalledNumber>
  <CallerNumber>sample string 3</CallerNumber>
  <FileName>sample string 1</FileName>
  <IsNew>true</IsNew>
  <Time>2025-12-10T15:35:08.7248339+01:00</Time>
</GoCallMessage>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.