GET api/contacts/all

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of 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": "d4372670-1acc-4612-b937-a4560c95b351",
    "MobilePhoneNumber": "sample string 2",
    "EmailAddress": "sample string 3",
    "FaxNumber": "sample string 4",
    "LandLinePhoneNumber": "sample string 5",
    "Id": "4ba08a45-a085-41b3-9dd0-89432f9814f3",
    "CreatedDate": "2025-12-05T20:24:13.4306202-08:00",
    "ModifiedDate": "2025-12-05T20:24:13.4306202-08:00",
    "DeletedDate": "2025-12-05T20:24:13.4306202-08:00"
  },
  {
    "ProfileId": "d4372670-1acc-4612-b937-a4560c95b351",
    "MobilePhoneNumber": "sample string 2",
    "EmailAddress": "sample string 3",
    "FaxNumber": "sample string 4",
    "LandLinePhoneNumber": "sample string 5",
    "Id": "4ba08a45-a085-41b3-9dd0-89432f9814f3",
    "CreatedDate": "2025-12-05T20:24:13.4306202-08:00",
    "ModifiedDate": "2025-12-05T20:24:13.4306202-08:00",
    "DeletedDate": "2025-12-05T20:24:13.4306202-08:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfContacts xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuicDoctor.Data.Data">
  <Contacts>
    <CreatedDate>2025-12-05T20:24:13.4306202-08:00</CreatedDate>
    <DeletedDate>2025-12-05T20:24:13.4306202-08:00</DeletedDate>
    <Id>4ba08a45-a085-41b3-9dd0-89432f9814f3</Id>
    <ModifiedDate>2025-12-05T20:24:13.4306202-08:00</ModifiedDate>
    <EmailAddress>sample string 3</EmailAddress>
    <FaxNumber>sample string 4</FaxNumber>
    <LandLinePhoneNumber>sample string 5</LandLinePhoneNumber>
    <MobilePhoneNumber>sample string 2</MobilePhoneNumber>
    <ProfileId>d4372670-1acc-4612-b937-a4560c95b351</ProfileId>
  </Contacts>
  <Contacts>
    <CreatedDate>2025-12-05T20:24:13.4306202-08:00</CreatedDate>
    <DeletedDate>2025-12-05T20:24:13.4306202-08:00</DeletedDate>
    <Id>4ba08a45-a085-41b3-9dd0-89432f9814f3</Id>
    <ModifiedDate>2025-12-05T20:24:13.4306202-08:00</ModifiedDate>
    <EmailAddress>sample string 3</EmailAddress>
    <FaxNumber>sample string 4</FaxNumber>
    <LandLinePhoneNumber>sample string 5</LandLinePhoneNumber>
    <MobilePhoneNumber>sample string 2</MobilePhoneNumber>
    <ProfileId>d4372670-1acc-4612-b937-a4560c95b351</ProfileId>
  </Contacts>
</ArrayOfContacts>