GET api/contacts/{id}/contactheatstatuses
Get all ContactHeatStatuses that are related to the supplied Contact id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The primary key of the Contact record in the Hobsons database. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ContactHeatStatusDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
The primary key of the record in the Hobsons database. |
integer |
None. |
| CrmNumber |
The identifier of the Contact associated with the given record. |
integer |
Required Range: inclusive between 1 and 2147483647 |
| HeatStatusId |
A reference to the primary key of the HeatStatus that is binded to the record. |
integer |
Required Range: inclusive between 1 and 99999999 |
| HeatStatusName |
The name of the HeatStatus that is binded to the record. |
string |
None. |
| DateModified |
Reflects the date that the given change was made. |
date |
None. |
| Reason |
The reason the Contacts HeatStatus was changed. |
string |
Required String length: inclusive between 0 and 100 |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"CrmNumber": 2,
"HeatStatusId": 3,
"HeatStatusName": "sample string 4",
"DateModified": "2025-11-06T17:30:23.2948317+11:00",
"Reason": "sample string 5"
}