GET api/contacts/byprofileid?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Contacts| Name | Description | Type | Additional 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": "29195393-2b96-47cd-8e79-21f351b546c7",
"MobilePhoneNumber": "sample string 2",
"EmailAddress": "sample string 3",
"FaxNumber": "sample string 4",
"LandLinePhoneNumber": "sample string 5",
"Id": "0acd5f42-6ce1-4cf9-a664-e43b307859d9",
"CreatedDate": "2025-12-05T20:24:50.4946593-08:00",
"ModifiedDate": "2025-12-05T20:24:50.4946593-08:00",
"DeletedDate": "2025-12-05T20:24:50.4946593-08:00"
},
{
"ProfileId": "29195393-2b96-47cd-8e79-21f351b546c7",
"MobilePhoneNumber": "sample string 2",
"EmailAddress": "sample string 3",
"FaxNumber": "sample string 4",
"LandLinePhoneNumber": "sample string 5",
"Id": "0acd5f42-6ce1-4cf9-a664-e43b307859d9",
"CreatedDate": "2025-12-05T20:24:50.4946593-08:00",
"ModifiedDate": "2025-12-05T20:24:50.4946593-08:00",
"DeletedDate": "2025-12-05T20:24:50.4946593-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:50.4946593-08:00</CreatedDate>
<DeletedDate>2025-12-05T20:24:50.4946593-08:00</DeletedDate>
<Id>0acd5f42-6ce1-4cf9-a664-e43b307859d9</Id>
<ModifiedDate>2025-12-05T20:24:50.4946593-08:00</ModifiedDate>
<EmailAddress>sample string 3</EmailAddress>
<FaxNumber>sample string 4</FaxNumber>
<LandLinePhoneNumber>sample string 5</LandLinePhoneNumber>
<MobilePhoneNumber>sample string 2</MobilePhoneNumber>
<ProfileId>29195393-2b96-47cd-8e79-21f351b546c7</ProfileId>
</Contacts>
<Contacts>
<CreatedDate>2025-12-05T20:24:50.4946593-08:00</CreatedDate>
<DeletedDate>2025-12-05T20:24:50.4946593-08:00</DeletedDate>
<Id>0acd5f42-6ce1-4cf9-a664-e43b307859d9</Id>
<ModifiedDate>2025-12-05T20:24:50.4946593-08:00</ModifiedDate>
<EmailAddress>sample string 3</EmailAddress>
<FaxNumber>sample string 4</FaxNumber>
<LandLinePhoneNumber>sample string 5</LandLinePhoneNumber>
<MobilePhoneNumber>sample string 2</MobilePhoneNumber>
<ProfileId>29195393-2b96-47cd-8e79-21f351b546c7</ProfileId>
</Contacts>
</ArrayOfContacts>