Retrieves all address types, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of address types.
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": "ed2461d6-5cca-4215-8473-8b1ae6cc5d22",
"name": "sample string 2",
"is_company": true,
"is_delivery": true,
"is_default": true,
"is_working_address": true,
"modified_dateutc": "2026-09-16T10:12:01.7195451+00:00"
}
application/xml, text/xml
Sample:
<db_address_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>ed2461d6-5cca-4215-8473-8b1ae6cc5d22</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:12:01.719Z</modified_dateutc> <name>sample string 2</name> </db_address_type>