Individual Files
These steps outline how to upload a single, independent file (such as a content file or plugin script).
- The client makes a POST call to the
/
endpoint with the following Content-Type value:S
essions/None/Uploads/application/vnd.bsn.start.content.upload.arguments.201701+json
. The POST request body includes information about the file.- The response body includes an upload token for the file.
- The client uploads the file to the server by calling POST on the
/
endpoint. If the file is larger than approximately 256KB, the client will need to make multiple POST calls and use theS
essions/None/Uploads/{UploadToken}/chunks/?offset
URL parameter to segment the file into chunks. - The client completes the upload by calling PUT on the
/
endpoint with the following Content-Type value:S
essions/None/Uploads/{UploadToken}/application/vnd.bsn.complete.content.upload.arguments.201701+json
.
Note
Unlike other endpoints, the "/None/"
directory is case-sensitive and must be capitalized.
GET /
Retrieves currently active webpage-upload sessions.
Parameters
marker
string
A value specifying which page to retrieve. This value is useful if the isTruncated
entry in the response body of the previous GET call indicates that the number of WebpageUploadStatus instances exceeds the pageSize
.
filter
string
An expression for filtering search results.
pageSize
int
The maximum number of WebpageUploadStatus instances that can be contained in the response body
______________________________________________________________
Headers
Accept: application/vnd.bsn.webpage.upload.status.pagedlist.201701+json
______________________________________________________________
Response Bodies
The Paged List Entity (2017/01)
item
WebpageUploadStatus[]
An array of WebpageUploadStatus object instances representing active webpage-upload sessions. Each WebpageUploadStatus instance can have the following entries:
name string
: The name of the webpage (i.e. the collection of files that make up the webpage)
: A unique identifier for the webpage-upload sessionS
essionToken string
UploadToken string
: A unique identifier for the HTML-file upload session
contentId int
: A unique identifier for the Content instance associated with the file being uploaded. This value is 0 while the upload session is in-progress.
fileName string
: The name of the file being uploaded
sha1Hash
string
: The SHA1 hash value of the file contents
state string
: The current state of the content upload session. These are the possible state values: "unknown",
"queued",
"started",
"uploading",
"stopped",
"uploaded",
"verified",
"cancelled",
"corrupted",
"collected",
"terminated",
"completed"
startTime string
: A UTC timestamp indicating when the content upload session began. The date/time is formatted as yyyy-mm-ddThh:mm:ss.sssZ
.
endTime
string
: A UTC timestamp indicating when the content upload session ended. The date/time is formatted as yyyy-mm-ddThh:mm:ss.sssZ
.
lastActivityTime string
: A UTC timestamp indicating the last activity relating to the content upload session. The date/time is formatted as yyyy-mm-ddThh:mm:ss.sssZ
.
chunks
: An array of Chunk object instances representing chunks of the file. Each Chunk instance can have the following entries:Chunk[]
count int
: The number of chunks with the specified length
and state
. A zero value is used for the section of the file that has not been uploaded/queued yet.
length int
: The byte length of the chunk(s)
state
string
: The Upload Endpoints (2017/01)#state of the chunk(s)
assets
: An array of WebPageAsset object instances representing asset files that are part of the webpage. The server currently returns a WebPageAsset[]
null
value for this parameter.
POST /
Creates a new webpage-upload session for the webpage and its asset files. This operation returns a token for the entire webpage-upload session, as well as a token for each asset-file upload.
Headers
Content-Type: application/vnd.bsn.start.webpage.upload.arguments.201701+json
-or- application/vnd.bsn.start.webpage.update.arguments.201701+json
Accept: application/vnd.bsn.webpage.upload.status.201701+json, application/vnd.bsn.error+json
______________________________________________________________
Request Body
name
string
The name of the webpage (i.e. the collection of files that make up the webpage)
fileName
string
The name of the HTML file
mediaType
string
The media type, which must be "Webpage"
for the HTML file
fileSize int
The size of the HTML file (in bytes)
sha1Hash string
The SHA1 hash value of the file contents
assets
WebPageAsset[]
An array of WebPageAsset object instances representing asset files to upload as part of the webpage. Each WebPageAsset instance can have the following entries:
fileName string
: The name of the asset file
relativePath string
: The path of the asset file relative to the HTML file. The path should be formatted as follows: "\\[directoryA]\\[directoryAb]\\[...]"
.
fileSize int
: The size of the asset file (in bytes)
mediaType
string
: The media type of the asset file. "Auto"
, "Text"
, "Image"
, "Video"
,"Audio"
, "Webpage"
, and "DeviceWebpage"
types are accepted.
sha1Hash string
: The SHA1 hash value of the file contents
______________________________________________________________
Response Body
name string
The name of the webpage (i.e. the collection of files that make up the webpage)
S
essionToken string
The identifier for the webpage-upload session
fileName string
The name of the HTML file
UploadToken string
A unique identifier for the HTML-file upload session
contentId int
A unique identifier for the Content instance associated with the file being uploaded. This value is 0 while the upload session is in-progress.
fileSize
int
The size of the file (in bytes)
sha1Hash string
The SHA1 hash value of the file contents
state string
The current state of the HTML-file upload session. This value defaults to "started"
in the POST response.
startTime string
A UTC timestamp indicating when the content upload session began. The date/time is formatted as yyyy-mm-ddThh:mm:ss.sssZ
.
endTime string
A UTC timestamp indicating when the content upload session ended. This value is null
when the session is active.
lastActivityTime string
A UTC timestamp indicating the last activity relating to the content upload session. The date/time is formatted as yyyy-mm-ddThh:mm:ss.sssZ
.
chunks
Chunk[]
An array of Chunk object instances representing chunks of the HTML/asset file. Each Chunk instance can have the following entries:
count int
: The order of the chunk in the sequence
length int
: The length (in bytes) of the chunk
state string
: The Upload Endpoints (2017/01)#state of the chunk
assets
WebPageAsset[]
An array of WebPageAsset object instances representing asset files to upload as part of the webpage.
GET /{SessionToken}/
Returns the asset-file upload sessions associated with the specifed webpage-upload session.
Headers
Accept: application/vnd.bsn.webpage.upload.status.201701+json
______________________________________________________________
Response Body
name string
The name of the webpage (i.e. the collection of files that make up the webpage)
S
essionToken string
A unique identifier for the webpage-upload session
assets
WebPageAsset[]
An array of WebPageAsset object instances representing asset files to upload as part of the webpage. Each WebPageAsset instance can have the following entries:
: The identifier for the webpage-upload session.S
essionToken string
fileName string
: The name of the asset file
UploadToken string
: A unique identifier for the asset-file upload session
contentId int:
A unique identifier for the content instance associated with the file. This value is 0 while the upload session is in-progress.
fileSize
int
: The size of the file (in bytes)
sha1Hash string
: The SHA1 hash value of the file contents
state string
: The current Upload Endpoints (2017/01)#state of the file upload session
startTime string
: A UTC timestamp indicating when the content upload session began. The date/time is formatted as yyyy-mm-ddThh:mm:ss.sssZ
.
endTime string
: A UTC timestamp indicating when the content upload session ended. This value is null
when the session is active.
lastActivityTime string
: A UTC timestamp indicating the last activity relating to the content upload session. The date/time is formatted as yyyy-mm-ddThh:mm:ss.sssZ
.
chunks
: An array of Chunk object instances representing chunks of the HTML/asset file. The server currently returns Chunk[]
null
for this parameter.
PUT /{SessionToken}/
Completes a webpage-upload session.
Headers
Content-Type: application/vnd.bsn.complete.webpage.upload.arguments.201701+json
______________________________________________________________
Request Body
name
string
The name of the webpage (i.e. the collection of files that make up the webpage)
fileName
string
The name of the HTML file
fileSize int
The size of the HTML file (in bytes)
relativePath
string
The relative path of the HTML file. The path should be formatted as follows: "\\[directoryA]\\[directoryAb]\\[...]"
. For files in the same directory as the HTML file (or the HTML file itself), the path is specified as "\\"
.
DELETE /{SessionToken}/
Terminates the specified webpage-upload session. The server returns code 204 on success.
GET /{SessionToken}/Uploads/
Returns currently active file uploads that are part of the specified webpage-upload session (including both the HTML file and its asset files). Calling GET on the /
endpoint returns independent file uploads (i.e. uploads that are not part of a webpage-upload session).S
essions/None/Uploads/
Parameters
marker
string
A value specifying which page to retrieve. This value is useful if the isTruncated
entry in the response body of the previous GET call indicates that the number of WebpageUploadStatus instances exceeds the pageSize
.
filter
string
An expression for filtering search results.
pageSize int
The maximum number of WebpageUploadStatus instances that can be contained in the response body
______________________________________________________________
Headers
Accept: application/vnd.bsn.content.upload.status.pagedlist.201701+json, application/vnd.bsn.error+json
______________________________________________________________
Response Body
totalItemCount int
The total number of WebpageUploadStatus instances relevant to the query
pageSize int
The maximum number of WebpageUploadStatus instances that can be returned in a single response
isTruncated bool
A flag indicating whether the totalItemCount
exceeds the pageSize
nextMarker string
A value that can be included with a subsequent GET call to return additional results that have been truncated
sortExpression string
The sort expression specified in the URL
filterExpression
string
The filter expression specified in the URL
items
: An array of Content object instances representing HTML and asset file uploads that are part of the session. Each WebpageUploadStatus instance can have the following entries: ContentUploadStatus[]
: The identifier for the webpage-upload session. The value will be S
essionToken stringnull
for an independent file upload.
fileName string
: The name of the file
UploadToken string
: A unique identifier for the file upload session
contentId int:
A unique identifier for the Content instance associated with the file. This value is 0 while the upload session is in-progress.
fileSize
int
: The size of the file (in bytes)
sha1Hash string
: The SHA1 hash value of the file contents
state string
: The current Upload Endpoints (2017/01)#state of the file upload session
startTime string
: A UTC timestamp indicating when the content upload session began. The date/time is formatted as yyyy-mm-ddThh:mm:ss.sssZ
.
endTime string
: A UTC timestamp indicating when the content upload session ended. This value is null
when the session is active.
lastActivityTime string
: A UTC timestamp indicating the last activity relating to the content upload session. The date/time is formatted as yyyy-mm-ddThh:mm:ss.sssZ
.
chunks
: An array of Chunk object instances representing chunks of the HTML/asset file. The server currently returns Chunk[]
null
for this parameter.
POST /{SessionToken}/Uploads/
Begins a new file upload. Calling POST on the /
endpoint begins an independent file upload.S
essions/None/Uploads/
GET /{SessionToken}/Uploads/{UploadToken}/
Returns the specified active file upload that is part of the specified webpage-upload session. Calling GET on the /
endpoint retrieves an independent file upload (i.e. an upload that is not part of a webpage-upload session).S
essions/None/Uploads/{UploadToken}/
Headers
Accept: application/vnd.bsn.content.upload.status.201701+json
______________________________________________________________
Response Body
S
essionToken string
The identifier for the webpage-upload session. The value will be null
for an independent file upload.
fileName string
The name of the file
UploadToken string
A unique identifier for the file upload session
contentId int
A unique identifier for the Content instance associated with the file. This value is 0 while the upload session is in-progress.
fileSize
int
The size of the file (in bytes)
sha1Hash string
The SHA1 hash value of the file contents
state string
The current Upload Endpoints (2017/01)#state of the file upload session
startTime string
A UTC timestamp indicating when the content upload session began. The date/time is formatted as yyyy-mm-ddThh:mm:ss.sssZ
.
endTime string
A UTC timestamp indicating when the content upload session ended. This value is null
when the session is active.
lastActivityTime string
A UTC timestamp indicating the last activity relating to the content upload session. The date/time is formatted as yyyy-mm-ddThh:mm:ss.sssZ
.
chunks
Chunk[]
An array of Chunk object instances representing chunks of the file. Each Chunk instance can have the following entries:
count int
: The number of chunks with the specified length
and state
. A zero value is used for the section of the file that has not been uploaded/queued yet.
length int
: The byte length of the chunk(s)
state
string
: The Upload Endpoints (2017/01)#state of the chunk(s)
PUT /{SessionToken}/Uploads/{UploadToken}/
Starts, completes, or updates a file upload session (depending on the value of the Content-Type header). Calling PUT on the /
endpoint modifies an independent file upload.S
essions/None/Uploads/{UploadToken}/
Headers
Content-Type:
application/vnd.bsn.content.upload.arguments.201701+json
-or- application/vnd.bsn.start.content.upload.arguments.201701+json
-or- application/vnd.bsn.complete.content.upload.arguments.201701+json
-or- application/vnd.bsn.content.update.arguments.201701+json
-or- application/vnd.bsn.start.content.update.arguments.201701+json
-or- application/vnd.bsn.complete.content.update.arguments.201701+json
-or- application/vnd.bsn.webpage.asset.upload.arguments.201701+json
-or- application/vnd.bsn.start.webpage.asset.upload.arguments.201701+json
-or- application/vnd.bsn.complete.webpage.asset.upload.arguments.201701+json
Accept: application/vnd.bsn.content.upload.status.201701+json, application/vnd.bsn.content.upload.negotiation.status.201701+json, application/vnd.bsn.error+json
______________________________________________________________
Request Body
fileName string
The name of the file
fileSize int
The size of the file (in bytes)
relativePath string
The relative path of the file. The path should be formatted as follows: "\\[directoryA]\\[directoryAb]\\[...]"
. For files in the same directory as the HTML file (or the HTML file itself), the path is specified as "\\"
.
DELETE /{SessionToken}/Uploads/{UploadToken}/
Terminates the specified upload that is part of the specified webpage-upload session. Calling DELETE on the /
endpoint terminates an independent file upload. The server returns code 204 on success.S
essions/None/Uploads/{UploadToken}/
GET /{SessionToken}/Uploads/{UploadToken}/Chunks/
Returns the status of all file chunks that are part of the file specified file upload.
Headers
Accept: application/vnd.bsn.upload.content.chunk.status.list.201701+json
______________________________________________________________
Response Body
chunks
Chunk[]
An array of Chunk object instances representing chunks of the file. Each Chunk instance can have the following entries:
count int
: The number of chunks with the specified length
and state
. A zero value is used for the section of the file that has not been uploaded/queued yet.
length int
: The byte length of the chunk(s)
state string
: The Upload Endpoints (2017/01)#state of the chunk(s)
POST /{SessionToken}/Uploads/{UploadToken}/Chunks/
Appends a file chunk to the file upload, placing it in the queue for assembly. The server returns code 202 upon completion.
File chunks don't have to be uploaded in order, and multiple chunks can be uploaded simultaneously. We recommend a default chunk size of 256KB for multi-chunk files, though this number can be flexible depending on network performance.
Parameter
offset
The offset of the file chunk (in bytes) from the beginning of the file.
______________________________________________________________
Headers
Accept: application/vnd.bsn.error+json
Content-Type: application/octet-stream
Content-Length: [fileChunkLength]
______________________________________________________________
Request Body
The request body should contain the file-chunk as binary data.