GET api/contacts/byid?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Contacts
NameDescriptionTypeAdditional information
ProfileId

globally unique identifier

None.

MobilePhoneNumber

string

None.

EmailAddress

string

None.

FaxNumber

string

None.

LandLinePhoneNumber

string

None.

Id

globally unique identifier

None.

CreatedDate

date

None.

ModifiedDate

date

None.

DeletedDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "ProfileId": "76adf9d5-4349-44ea-8e62-53acf4064781",
  "MobilePhoneNumber": "sample string 2",
  "EmailAddress": "sample string 3",
  "FaxNumber": "sample string 4",
  "LandLinePhoneNumber": "sample string 5",
  "Id": "aca717b8-d56e-48bf-9c6b-be2d88a87c2f",
  "CreatedDate": "2025-12-05T20:24:50.7996633-08:00",
  "ModifiedDate": "2025-12-05T20:24:50.7996633-08:00",
  "DeletedDate": "2025-12-05T20:24:50.7996633-08:00"
}

application/xml, text/xml

Sample:
<Contacts xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuicDoctor.Data.Data">
  <CreatedDate>2025-12-05T20:24:50.7996633-08:00</CreatedDate>
  <DeletedDate>2025-12-05T20:24:50.7996633-08:00</DeletedDate>
  <Id>aca717b8-d56e-48bf-9c6b-be2d88a87c2f</Id>
  <ModifiedDate>2025-12-05T20:24:50.7996633-08:00</ModifiedDate>
  <EmailAddress>sample string 3</EmailAddress>
  <FaxNumber>sample string 4</FaxNumber>
  <LandLinePhoneNumber>sample string 5</LandLinePhoneNumber>
  <MobilePhoneNumber>sample string 2</MobilePhoneNumber>
  <ProfileId>76adf9d5-4349-44ea-8e62-53acf4064781</ProfileId>
</Contacts>