POST api/Followings/FollowingProfile
Request Information
URI Parameters
None.
Body Parameters
FollowingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FollowingID | integer |
None. |
|
| FollowingUserID | integer |
None. |
|
| UserID | integer |
None. |
|
| CreatedDate | date |
None. |
|
| UpdatedDate | date |
None. |
|
| IsFollowing | boolean |
None. |
|
| IsUnfollowing | boolean |
None. |
|
| IsAccept | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"followingID": 1,
"followingUserID": 1,
"userID": 1,
"createdDate": "2026-04-25T22:08:00.8664349+05:30",
"updatedDate": "2026-04-25T22:08:00.8664349+05:30",
"isFollowing": true,
"isUnfollowing": true,
"isAccept": true
}
application/xml, text/xml
Sample:
<FollowingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cultural_DAL.StoredProcedureModel"> <CreatedDate>2026-04-25T22:08:00.8664349+05:30</CreatedDate> <FollowingID>1</FollowingID> <FollowingUserID>1</FollowingUserID> <IsAccept>true</IsAccept> <IsFollowing>true</IsFollowing> <IsUnfollowing>true</IsUnfollowing> <UpdatedDate>2026-04-25T22:08:00.8664349+05:30</UpdatedDate> <UserID>1</UserID> </FollowingModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
FollowingResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | string |
None. |
|
| Message | string |
None. |
|
| FollowingID | integer |
None. |
|
| FollowingUserID | integer |
None. |
|
| UserID | integer |
None. |
|
| CreatedDate | date |
None. |
|
| UpdatedDate | date |
None. |
|
| IsFollowing | boolean |
None. |
|
| IsUnFollowing | boolean |
None. |
|
| IsAccept | boolean |
None. |
|
| ProfilePhoto | string |
None. |
|
| FollowerUserName | string |
None. |
|
| UnFollowerUserName | string |
None. |
|
| string |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": "sample string 1",
"message": "sample string 2",
"followingID": 1,
"followingUserID": 1,
"userID": 3,
"createdDate": "2026-04-25T22:08:00.8664349+05:30",
"updatedDate": "2026-04-25T22:08:00.8664349+05:30",
"isFollowing": true,
"isUnFollowing": true,
"isAccept": true,
"profilePhoto": "sample string 7",
"followerUserName": "sample string 8",
"unFollowerUserName": "sample string 9",
"email": "sample string 10"
}
application/xml, text/xml
Sample:
<FollowingResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cultural_DAL.StoredProcedureModel"> <CreatedDate>2026-04-25T22:08:00.8664349+05:30</CreatedDate> <Email>sample string 10</Email> <FollowerUserName>sample string 8</FollowerUserName> <FollowingID>1</FollowingID> <FollowingUserID>1</FollowingUserID> <IsAccept>true</IsAccept> <IsFollowing>true</IsFollowing> <IsUnFollowing>true</IsUnFollowing> <Message>sample string 2</Message> <ProfilePhoto>sample string 7</ProfilePhoto> <Status>sample string 1</Status> <UnFollowerUserName>sample string 9</UnFollowerUserName> <UpdatedDate>2026-04-25T22:08:00.8664349+05:30</UpdatedDate> <UserID>3</UserID> </FollowingResponseModel>