POST api/Blob/asset

Uploads an asset to the CDN.

Request Information

URI Parameters

None.

Body Parameters

The asset model to upload with.

UploadAssetBlobDto
NameDescriptionTypeAdditional information
AssetId

globally unique identifier

None.

Container

string

None.

BlobFolders

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AssetId": "03fdfb2d-27f9-4903-b0a8-dcdff9f2377c",
  "Container": "sample string 2",
  "BlobFolders": "sample string 3"
}

application/xml, text/xml

Sample:
<UploadAssetBlobDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Design.Models">
  <AssetId>03fdfb2d-27f9-4903-b0a8-dcdff9f2377c</AssetId>
  <BlobFolders>sample string 3</BlobFolders>
  <Container>sample string 2</Container>
</UploadAssetBlobDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.