POST api/Follower/FollowProfile

Request Information

URI Parameters

None.

Body Parameters

FollowersModel
NameDescriptionTypeAdditional information
FollowersID

globally unique identifier

None.

FollowUserID

integer

None.

UserID

integer

None.

CreatedDate

date

None.

UpdatedDate

date

None.

IsFollow

boolean

None.

IsUnFollow

boolean

None.

IsAccept

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "followersID": "b3b5931c-7dea-431b-a38b-e0154968ed23",
  "followUserID": 1,
  "userID": 1,
  "createdDate": "2026-04-25T22:08:01.4104683+05:30",
  "updatedDate": "2026-04-25T22:08:01.4104683+05:30",
  "isFollow": true,
  "isUnFollow": true,
  "isAccept": true
}

application/xml, text/xml

Sample:
<FollowersModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cultural_DAL.StoredProcedureModel">
  <CreatedDate>2026-04-25T22:08:01.4104683+05:30</CreatedDate>
  <FollowUserID>1</FollowUserID>
  <FollowersID>b3b5931c-7dea-431b-a38b-e0154968ed23</FollowersID>
  <IsAccept>true</IsAccept>
  <IsFollow>true</IsFollow>
  <IsUnFollow>true</IsUnFollow>
  <UpdatedDate>2026-04-25T22:08:01.4104683+05:30</UpdatedDate>
  <UserID>1</UserID>
</FollowersModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

FollowersResponseModel
NameDescriptionTypeAdditional information
Status

string

None.

Message

string

None.

FollowersID

globally unique identifier

None.

FollowUserID

integer

None.

UserID

integer

None.

CreatedDate

date

None.

UpdatedDate

date

None.

IsFollow

boolean

None.

IsUnFollow

boolean

None.

IsAccept

boolean

None.

ProfilePhoto

string

None.

FollowerUserName

string

None.

UnFollowerUserName

string

None.

Email

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "followersID": "775004af-4268-496b-97a5-1228e332fe91",
  "followUserID": 1,
  "userID": 4,
  "createdDate": "2026-04-25T22:08:01.4104683+05:30",
  "updatedDate": "2026-04-25T22:08:01.4104683+05:30",
  "isFollow": true,
  "isUnFollow": true,
  "isAccept": true,
  "profilePhoto": "sample string 8",
  "followerUserName": "sample string 9",
  "unFollowerUserName": "sample string 10",
  "email": "sample string 11"
}

application/xml, text/xml

Sample:
<FollowersResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cultural_DAL.StoredProcedureModel">
  <CreatedDate>2026-04-25T22:08:01.4104683+05:30</CreatedDate>
  <Email>sample string 11</Email>
  <FollowUserID>1</FollowUserID>
  <FollowerUserName>sample string 9</FollowerUserName>
  <FollowersID>775004af-4268-496b-97a5-1228e332fe91</FollowersID>
  <IsAccept>true</IsAccept>
  <IsFollow>true</IsFollow>
  <IsUnFollow>true</IsUnFollow>
  <Message>sample string 2</Message>
  <ProfilePhoto>sample string 8</ProfilePhoto>
  <Status>sample string 1</Status>
  <UnFollowerUserName>sample string 10</UnFollowerUserName>
  <UpdatedDate>2026-04-25T22:08:01.4104683+05:30</UpdatedDate>
  <UserID>4</UserID>
</FollowersResponseModel>