POST reportingapi/Report/Documents?clientID={clientID}&instanceID={instanceID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientID

string

Required

instanceID

string

Required

Body Parameters

Telerik.Reporting.Services.WebApi.CreateDocumentArgs
NameDescriptionTypeAdditional information
Format

string

None.

DeviceInfo

Dictionary of string [key] and Object [value]

None.

UseCache

boolean

None.

BaseDocumentID

string

None.

ActionID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "format": "sample string 1",
  "deviceInfo": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "useCache": true,
  "baseDocumentID": "sample string 3",
  "actionID": "sample string 4"
}

application/xml, text/xml

Sample:
<CreateDocumentArgs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Telerik.Reporting.Services.WebApi">
  <ActionID>sample string 4</ActionID>
  <BaseDocumentID>sample string 3</BaseDocumentID>
  <DeviceInfo xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringanyType>
      <d2p1:Key>sample string 1</d2p1:Key>
      <d2p1:Value />
    </d2p1:KeyValueOfstringanyType>
    <d2p1:KeyValueOfstringanyType>
      <d2p1:Key>sample string 3</d2p1:Key>
      <d2p1:Value />
    </d2p1:KeyValueOfstringanyType>
  </DeviceInfo>
  <Format>sample string 1</Format>
  <UseCache>true</UseCache>
</CreateDocumentArgs>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

System.Net.Http.HttpResponseMessage
NameDescriptionTypeAdditional information
Version

System.Version

None.

Content

System.Net.Http.HttpContent

None.

StatusCode

System.Net.HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

System.Net.Http.HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.