GET api/Followup/GetHistory?followUpId={followUpId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
followUpId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of FollowUpChangeLogModel
NameDescriptionTypeAdditional information
FollowUpId

integer

None.

Field

string

None.

Event

string

None.

CreatedBy

string

None.

CreatedOn

date

None.

CreateTimestamp

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "FollowUpId": 1,
    "Field": "sample string 2",
    "Event": "sample string 3",
    "CreatedBy": "sample string 4",
    "CreatedOn": "2024-11-21T08:48:00.3084178+00:00",
    "CreateTimestamp": "2024-11-21T08:48:00.3084178+00:00"
  },
  {
    "FollowUpId": 1,
    "Field": "sample string 2",
    "Event": "sample string 3",
    "CreatedBy": "sample string 4",
    "CreatedOn": "2024-11-21T08:48:00.3084178+00:00",
    "CreateTimestamp": "2024-11-21T08:48:00.3084178+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfFollowUpChangeLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Walsh.Model.Models.FollowUp">
  <FollowUpChangeLogModel>
    <CreateTimestamp xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
      <d3p1:DateTime>2024-11-21T08:48:00.3084178Z</d3p1:DateTime>
      <d3p1:OffsetMinutes>0</d3p1:OffsetMinutes>
    </CreateTimestamp>
    <CreatedBy>sample string 4</CreatedBy>
    <CreatedOn>2024-11-21T08:48:00.3084178+00:00</CreatedOn>
    <Event>sample string 3</Event>
    <Field>sample string 2</Field>
    <FollowUpId>1</FollowUpId>
  </FollowUpChangeLogModel>
  <FollowUpChangeLogModel>
    <CreateTimestamp xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
      <d3p1:DateTime>2024-11-21T08:48:00.3084178Z</d3p1:DateTime>
      <d3p1:OffsetMinutes>0</d3p1:OffsetMinutes>
    </CreateTimestamp>
    <CreatedBy>sample string 4</CreatedBy>
    <CreatedOn>2024-11-21T08:48:00.3084178+00:00</CreatedOn>
    <Event>sample string 3</Event>
    <Field>sample string 2</Field>
    <FollowUpId>1</FollowUpId>
  </FollowUpChangeLogModel>
</ArrayOfFollowUpChangeLogModel>