GET api/User/GetProfileBlockedUser?UserID={UserID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
UserID

integer

Required

Body Parameters

None.

Response Information

Resource Description

BlockedUserListResponse
NameDescriptionTypeAdditional information
Status

string

None.

Message

string

None.

Token

string

None.

Blocked

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "token": "sample string 3",
  "blocked": true
}

application/xml, text/xml

Sample:
<BlockedUserListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cultural_DAL.Common">
  <Blocked>true</Blocked>
  <Message>sample string 2</Message>
  <Status>sample string 1</Status>
  <Token>sample string 3</Token>
</BlockedUserListResponse>