GET api/PhoneCall/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ApiPhoneCall
NameDescriptionTypeAdditional information
date

date

None.

statusID

integer

None.

ID

integer

None.

phoneNumber

string

None.

note

string

None.

callID

integer

None.

hasFile

boolean

None.

matchesCall

boolean

None.

userID

integer

None.

duration

integer

None.

fileLink

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 3,
  "date": "2025-08-29T02:57:13.426771+01:00",
  "statusID": 2,
  "note": "sample string 5",
  "phoneNumber": "sample string 4",
  "callID": 1,
  "matchesCall": true,
  "duration": 8,
  "hasFile": true,
  "fileLink": "sample string 9",
  "userID": 1
}

application/octet-stream, multipart/form-data

Sample:
{"ID":3,"date":"2025-08-29T02:57:13.426771+01:00","statusID":2,"note":"sample string 5","phoneNumber":"sample string 4","callID":1,"matchesCall":true,"duration":8,"hasFile":true,"fileLink":"sample string 9","userID":1}

application/xml, text/xml

Sample:
<PhoneCallController.ApiPhoneCall xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HTMW.Controllers">
  <ID>3</ID>
  <callID>1</callID>
  <date>2025-08-29T02:57:13.426771+01:00</date>
  <duration>8</duration>
  <fileLink>sample string 9</fileLink>
  <hasFile>true</hasFile>
  <matchesCall>true</matchesCall>
  <note>sample string 5</note>
  <phoneNumber>sample string 4</phoneNumber>
  <statusID>2</statusID>
  <userID>1</userID>
</PhoneCallController.ApiPhoneCall>