PUT api/Content/v2/RemoveFollow

Request Information

URI Parameters

None.

Body Parameters

APIFollower
NameDescriptionTypeAdditional information
CustomerId

integer

None.

UniqueId

globally unique identifier

None.

UserUniqueId

integer

None.

FollowingId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "UniqueId": "a10b3c4c-5637-46bd-a9e8-0a357fadde3c",
  "UserUniqueId": 3,
  "FollowingId": 4
}

application/xml, text/xml

Sample:
<APIFollower xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <CustomerId>1</CustomerId>
  <FollowingId>4</FollowingId>
  <UniqueId>a10b3c4c-5637-46bd-a9e8-0a357fadde3c</UniqueId>
  <UserUniqueId>3</UserUniqueId>
</APIFollower>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIResult
NameDescriptionTypeAdditional information
Status

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <Message>sample string 2</Message>
  <Status>true</Status>
</APIResult>