POST Response/CanViewPendingApprovalResponses

Verify if the user is capable of viewing responses when the selected responses are in Awaiting Approval status or have had the response rejected.

Request Information

URI Parameters

None.

Body Parameters

ApproveResponseDTO
NameDescriptionTypeAdditional information
Message

Response Message

string

None.

ResponseIDs

Response ID's

Collection of globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "Message": "sample string 1",
      "ResponseIDs": [
        "7e13cebd-b9fc-4405-8ce9-215c53431aaf",
        "a7e2fa76-681f-45b5-a60e-f302fe4649d4"
      ]
    }
  ]
}

text/javascript

Sample:
{"results":[{"Message":"sample string 1","ResponseIDs":["7e13cebd-b9fc-4405-8ce9-215c53431aaf","a7e2fa76-681f-45b5-a60e-f302fe4649d4"]}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<ApproveResponseDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <Message>sample string 1</Message>
  <ResponseIDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>7e13cebd-b9fc-4405-8ce9-215c53431aaf</d2p1:guid>
    <d2p1:guid>a7e2fa76-681f-45b5-a60e-f302fe4649d4</d2p1:guid>
  </ResponseIDs>
</ApproveResponseDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
{
  "results": [
    true
  ]
}

text/javascript

Sample:
{"results":[true]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

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