Retrieves all place types
Request Headers
| Header | Value | Required | Description |
|---|---|---|---|
| ECI-ApiKey | string | Yes | Your API key. See Authentication. |
| Content-Type | application/json | Yes | All requests must specify JSON content type. |
Query Parameters
| Name | Description | Type | Required |
|---|---|---|---|
| filter | string (string) | Optional |
Filters
| Filter | Description | Type | Operators |
|---|---|---|---|
| placeEntityTypeID | Integer | equals not equals less than between one of greater than less than equal greater than equal not one of | |
| placeEntityTypeInfo | Place Entity Type Name | String | equals not equals one of like not like not one of |
| placeTypeCode | Place Type Code | String | equals not equals one of like not like not one of |
| placeTypeId | Integer | equals not equals less than between one of greater than less than equal greater than equal not one of | |
| placeTypeInfo | Place Type Name | String | equals not equals one of like not like not one of |
| structure | Structure | Boolean | equals |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
Array of:
PlaceTypeResponse
| Property | Description | Type | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| icon | Icon | ||||||||||
|
Icon properties
|
|||||||||||
| isSystemPlaceType | Flag to indicate if the place type is a system-level place type | boolean | |||||||||
| placeEntityType | PlaceEntityTypeV202406 | ||||||||||
|
PlaceEntityTypeV202406 properties
|
|||||||||||
| placeTypeCode | The place type code | string | |||||||||
| placeTypeId | The place type identifier | integer (int32) | |||||||||
| placeTypeInfo | The place type info | string | |||||||||
| structure | Indicates if the place is a structure | boolean | |||||||||
Example Response
[
{ "icon": { "code": "string", "color": "string"
}, "isSystemPlaceType": false, "placeEntityType": { "placeEntityTypeId": 1, "placeEntityTypeInfo": "string"
}, "placeTypeCode": "string", "placeTypeId": 1, "placeTypeInfo": "string", "structure": false
}
]