DELETE PropertyTypes
Deletes the given property type, including all properties of that type.
Request Information
URI Parameters
None.
Body Parameters
Property type to delete
PropertyType| Name | Description | Type | Additional information | 
|---|---|---|---|
| PropertyTypeId | globally unique identifier | None. | |
| Name | string | None. | |
| Description | string | None. | |
| AssetType | AssetType | None. | |
| DataType | DataType | None. | |
| Unit | Unit | None. | |
| MinValue | decimal number | None. | |
| MaxValue | decimal number | None. | |
| MinLength | integer | None. | |
| MaxLength | integer | None. | |
| HasValidValues | boolean | None. | |
| ValidValues | Collection of ValidValue | None. | |
| SourceSystemId | string | None. | |
| CompanyId | globally unique identifier | None. | |
| CreateDate | date | None. | |
| CreateUser | string | None. | |
| LastModifiedDate | date | None. | |
| LastModifiedUser | string | None. | 
Request Formats
application/json, text/json
            Sample:
{
  "PropertyTypeId": "988cc685-ec7f-4754-ab82-7283d69979e8",
  "Name": "sample string 1",
  "Description": "sample string 2",
  "AssetType": {
    "AssetTypeId": "c1867129-3fed-4fc4-a5eb-911be6f94aea",
    "Name": "sample string 1",
    "Description": "sample string 2",
    "DisplayColor": "sample string 3",
    "SourceSystemId": "sample string 4",
    "CompanyId": "a1d87c71-70ff-4dbb-8fb9-07d0d988d336",
    "CreateDate": "2025-10-31T00:38:40.5715491-07:00",
    "CreateUser": "sample string 6",
    "LastModifiedDate": "2025-10-31T00:38:40.5715491-07:00",
    "LastModifiedUser": "sample string 7"
  },
  "DataType": {
    "DataTypeId": "58ca50a9-8b83-4e2b-bd65-159664277771",
    "Name": "sample string 1"
  },
  "Unit": {
    "UnitId": "52c79e91-d3a6-4790-ad03-d5f747edd9d4",
    "Code": "sample string 1",
    "Description": "sample string 2",
    "SourceSystemId": "sample string 3",
    "CompanyId": "b8d9797a-9b50-4f29-9c57-e2e9be4e12a5",
    "CreateDate": "2025-10-31T00:38:40.5715491-07:00",
    "CreateUser": "sample string 5",
    "LastModifiedDate": "2025-10-31T00:38:40.5715491-07:00",
    "LastModifiedUser": "sample string 6"
  },
  "MinValue": 1.0,
  "MaxValue": 1.0,
  "MinLength": 1,
  "MaxLength": 1,
  "HasValidValues": true,
  "ValidValues": [
    {
      "ValidValueId": "d39b6975-24e3-4860-a7c1-c7877c3abe3e",
      "FieldId": "8788b060-7b0c-4e54-9214-82b2d247ba26",
      "FieldName": "sample string 1",
      "FieldLabel": "sample string 2",
      "ValueText": "sample string 3",
      "LabelText": "sample string 4"
    },
    {
      "ValidValueId": "d39b6975-24e3-4860-a7c1-c7877c3abe3e",
      "FieldId": "8788b060-7b0c-4e54-9214-82b2d247ba26",
      "FieldName": "sample string 1",
      "FieldLabel": "sample string 2",
      "ValueText": "sample string 3",
      "LabelText": "sample string 4"
    }
  ],
  "SourceSystemId": "sample string 4",
  "CompanyId": "6886e307-83ce-4a62-9c27-7100dd53efad",
  "CreateDate": "2025-10-31T00:38:40.5715491-07:00",
  "CreateUser": "sample string 6",
  "LastModifiedDate": "2025-10-31T00:38:40.5715491-07:00",
  "LastModifiedUser": "sample string 7"
}
        Response Information
Resource Description
| Name | Description | Type | Additional information | 
|---|---|---|---|
| Data | Object | None. | |
| Total | integer | None. | |
| Message | string | None. | 
Response Formats
application/json, text/json
            Sample:
{
  "Data": {},
  "Total": 1,
  "Message": "sample string 2"
}