Retrieves the address type with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The address type id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the address type, or 404 Not Found if it doesn't exist.
db_address_type| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary key |
globally unique identifier | |
| name |
Name of this address type. |
string | |
| is_company |
Indicates this address type represents a company's main address. |
boolean | |
| is_delivery |
Indicates this address type represents a delivery address. |
boolean | |
| is_default |
Indicates this is the default address type pre-selected when adding a new address. |
boolean | |
| is_working_address |
Indicates addresses of this type can have projects/installations created on them (see ). |
boolean | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "e8a35bc9-4b4c-4945-ab1d-10b4d8984409",
"name": "sample string 2",
"is_company": true,
"is_delivery": true,
"is_default": true,
"is_working_address": true,
"modified_dateutc": "2026-09-16T10:14:19.6208711+00:00"
}
application/xml, text/xml
Sample:
<db_address_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>e8a35bc9-4b4c-4945-ab1d-10b4d8984409</id> <is_company>true</is_company> <is_default>true</is_default> <is_delivery>true</is_delivery> <is_working_address>true</is_working_address> <modified_dateutc>2026-09-16T10:14:19.620Z</modified_dateutc> <name>sample string 2</name> </db_address_type>