POST api/connectslip/putreview

Request Information

URI Parameters

None.

Body Parameters

PutReviewRequest
NameDescriptionTypeAdditional information
ChapterId

integer

None.

Title

string

None.

ReviewId

integer

None.

ToUserId

integer

None.

ToProfileId

integer

None.

Rating

byte

None.

Comments

string

None.

FromProfileId

integer

None.

ReportToAdmin

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ChapterId": 1,
  "Title": "sample string 2",
  "ReviewId": 3,
  "ToUserId": 4,
  "ToProfileId": 5,
  "Rating": 64,
  "Comments": "sample string 7",
  "FromProfileId": 8,
  "ReportToAdmin": true
}

application/xml, text/xml

Sample:
<PutReviewRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ModelsLayer">
  <ChapterId>1</ChapterId>
  <Comments>sample string 7</Comments>
  <FromProfileId>8</FromProfileId>
  <Rating>64</Rating>
  <ReportToAdmin>true</ReportToAdmin>
  <ReviewId>3</ReviewId>
  <Title>sample string 2</Title>
  <ToProfileId>5</ToProfileId>
  <ToUserId>4</ToUserId>
</PutReviewRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.