POST api/UIPath

Update Status of a specific PR in Dynamic V

Request Information

URI Parameters

None.

Body Parameters

UpdateStatusData
NameDescriptionTypeAdditional information
id

PR ID

integer

None.

status

Status of PR

integer

None.

description

Error description (if exists)

string

None.

reference

Reference

string

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "status": 2,
  "description": "sample string 3",
  "reference": "sample string 4"
}

application/xml, text/xml

Sample:
<UIPath.UpdateStatusData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LinkIT.Data.WebApi">
  <description>sample string 3</description>
  <id>1</id>
  <reference>sample string 4</reference>
  <status>2</status>
</UIPath.UpdateStatusData>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'UpdateStatusData'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.