POST api/event/InsertFollowList
Request Information
URI Parameters
None.
Body Parameters
InsertFollowListProfile| Name | Description | Type | Additional information |
|---|---|---|---|
| LoginUserId | integer |
None. |
|
| FollowingUserId | integer |
None. |
|
| IsFollowing | boolean |
None. |
|
| IsUnfollowing | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"loginUserId": 1,
"followingUserId": 2,
"isFollowing": true,
"isUnfollowing": true
}
application/xml, text/xml
Sample:
<InsertFollowListProfile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cultural.Common"> <FollowingUserId>2</FollowingUserId> <IsFollowing>true</IsFollowing> <IsUnfollowing>true</IsUnfollowing> <LoginUserId>1</LoginUserId> </InsertFollowListProfile>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />