GET api/interactions/{id}/interactionstatuses
Get all InteractionStatuses that are related to the supplied Interaction id.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
InteractionStatusDtoName | Description | Type | Additional information |
---|---|---|---|
Id |
The primary key of the record in the Hobsons database. |
integer |
None. |
InteractionId |
A reference to the primary key of the Interaction record that is associated with this record. |
integer |
Required Range: inclusive between 1 and 99999999 |
ContactStatusId |
A reference to the primary key of the ContactStatus record that is associated with this record. |
integer |
Required Range: inclusive between 1 and 99999999 |
ContactStatusName |
The name of the ContactStatus record that is associated with this record. |
string |
None. |
DateCreated |
The date that the InteractionStatus record was created (in the Hobsons database). |
date |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": 1, "InteractionId": 2, "ContactStatusId": 3, "ContactStatusName": "sample string 4", "DateCreated": "2025-01-22T22:08:37.1561938+11:00" }