GET api/locations/byid?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Locations| Name | Description | Type | Additional information |
|---|---|---|---|
| ProfileId | globally unique identifier |
None. |
|
| CountryCode | string |
None. |
|
| CountryName | string |
None. |
|
| State | string |
None. |
|
| Suite | string |
None. |
|
| Street | string |
None. |
|
| City | string |
None. |
|
| PostalCode | string |
None. |
|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| TimeZone | string |
None. |
|
| Id | globally unique identifier |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| DeletedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"ProfileId": "116c2be0-a6c6-4a03-be7d-57c12dd564f7",
"CountryCode": "sample string 2",
"CountryName": "sample string 3",
"State": "sample string 4",
"Suite": "sample string 5",
"Street": "sample string 6",
"City": "sample string 7",
"PostalCode": "sample string 8",
"Latitude": 9.1,
"Longitude": 10.1,
"TimeZone": "sample string 11",
"Id": "ab08f819-18fd-46da-ae6e-8db066318185",
"CreatedDate": "2025-12-05T20:24:51.002244-08:00",
"ModifiedDate": "2025-12-05T20:24:51.002244-08:00",
"DeletedDate": "2025-12-05T20:24:51.002244-08:00"
}
application/xml, text/xml
Sample:
<Locations xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuicDoctor.Data.Data"> <CreatedDate>2025-12-05T20:24:51.002244-08:00</CreatedDate> <DeletedDate>2025-12-05T20:24:51.002244-08:00</DeletedDate> <Id>ab08f819-18fd-46da-ae6e-8db066318185</Id> <ModifiedDate>2025-12-05T20:24:51.002244-08:00</ModifiedDate> <City>sample string 7</City> <CountryCode>sample string 2</CountryCode> <CountryName>sample string 3</CountryName> <Latitude>9.1</Latitude> <Longitude>10.1</Longitude> <PostalCode>sample string 8</PostalCode> <ProfileId>116c2be0-a6c6-4a03-be7d-57c12dd564f7</ProfileId> <State>sample string 4</State> <Street>sample string 6</Street> <Suite>sample string 5</Suite> <TimeZone>sample string 11</TimeZone> </Locations>