GET api/MemberFollowUp/FindMemberFollowUpGeneric/{id}

Find member generic follow up

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

MemberFollowUpGeneric
NameDescriptionTypeAdditional information
MemberFollowUpGroupTransactionID

integer

None.

MemberID

integer

None.

Called

boolean

None.

CalledByUserID

integer

None.

FollowUp

boolean

None.

IsComplete

boolean

None.

ActionStatusID

integer

None.

Comment

string

None.

CalledByUserName

string

None.

ActionStatusName

string

None.

AssignedToUserName

string

None.

AssignedToUserAvatar

string

None.

Response Formats

application/json, text/json

Sample:
{
  "MemberFollowUpGroupTransactionID": 1,
  "MemberID": 2,
  "Called": true,
  "CalledByUserID": 4,
  "FollowUp": true,
  "IsComplete": true,
  "ActionStatusID": 7,
  "Comment": "sample string 8",
  "CalledByUserName": "sample string 9",
  "ActionStatusName": "sample string 10",
  "AssignedToUserName": "sample string 11",
  "AssignedToUserAvatar": "sample string 12"
}

application/xml, text/xml

Sample:
<MemberFollowUpGeneric xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XPH.Entities.FollowUp">
  <ActionStatusID>7</ActionStatusID>
  <ActionStatusName>sample string 10</ActionStatusName>
  <AssignedToUserAvatar>sample string 12</AssignedToUserAvatar>
  <AssignedToUserName>sample string 11</AssignedToUserName>
  <Called>true</Called>
  <CalledByUserID>4</CalledByUserID>
  <CalledByUserName>sample string 9</CalledByUserName>
  <Comment>sample string 8</Comment>
  <FollowUp>true</FollowUp>
  <IsComplete>true</IsComplete>
  <MemberFollowUpGroupTransactionID>1</MemberFollowUpGroupTransactionID>
  <MemberID>2</MemberID>
</MemberFollowUpGeneric>