POST Report/UpdateRequestOrders?pageId={pageId}&objectId={objectId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pageId

integer

Required

objectId

integer

Required

Body Parameters

RequestOrdersDTI
NameDescriptionTypeAdditional information
CurrentUserId

integer

None.

CurrentUserProfileId

integer

None.

RequestId

integer

None.

OrderIdsSelected

Collection of ObjectId

None.

OrderIdsDeselected

Collection of ObjectId

None.

Request Formats

application/json, text/json

Sample:
{
  "CurrentUserId": 1,
  "CurrentUserProfileId": 2,
  "RequestId": 3,
  "OrderIdsSelected": [
    {
      "Id": 1
    },
    {
      "Id": 1
    }
  ],
  "OrderIdsDeselected": [
    {
      "Id": 1
    },
    {
      "Id": 1
    }
  ]
}

application/xml, text/xml

Sample:
<RequestOrdersDTI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BasicQA.Models.Report">
  <CurrentUserId>1</CurrentUserId>
  <CurrentUserProfileId>2</CurrentUserProfileId>
  <OrderIdsDeselected xmlns:d2p1="http://schemas.datacontract.org/2004/07/Basic.Sso.Model.Authentication">
    <d2p1:ObjectId>
      <d2p1:Id>1</d2p1:Id>
    </d2p1:ObjectId>
    <d2p1:ObjectId>
      <d2p1:Id>1</d2p1:Id>
    </d2p1:ObjectId>
  </OrderIdsDeselected>
  <OrderIdsSelected xmlns:d2p1="http://schemas.datacontract.org/2004/07/Basic.Sso.Model.Authentication">
    <d2p1:ObjectId>
      <d2p1:Id>1</d2p1:Id>
    </d2p1:ObjectId>
    <d2p1:ObjectId>
      <d2p1:Id>1</d2p1:Id>
    </d2p1:ObjectId>
  </OrderIdsSelected>
  <RequestId>3</RequestId>
</RequestOrdersDTI>

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 'RequestOrdersDTI'.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>