GET api/interactions/{id}/interactionstatuses

Get all InteractionStatuses that are related to the supplied Interaction id.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

InteractionStatusDto
NameDescriptionTypeAdditional 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": "2024-05-20T11:22:29.1365168+10:00"
}