PUT api/v1/Reports/Video/AddToQueue

Request Information

URI Parameters

NameDescriptionTypeAdditional information
version

string

None.

Body Parameters

AddToQueueRequest
NameDescriptionTypeAdditional information
classId

integer

None.

blobName

string

None.

isVariant

boolean

None.

status

string

None.

fileSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "classId": 1,
  "blobName": "sample string 2",
  "isVariant": true,
  "status": "sample string 4",
  "fileSize": 5
}

text/html

Sample:
{"classId":1,"blobName":"sample string 2","isVariant":true,"status":"sample string 4","fileSize":5}

text/xml

Sample:
<AddToQueueRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShotClassCore.Models">
  <blobName>sample string 2</blobName>
  <classId>1</classId>
  <fileSize>5</fileSize>
  <isVariant>true</isVariant>
  <status>sample string 4</status>
</AddToQueueRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json, text/html

Sample:
true

text/xml

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