Show/Hide Toolbars

PerfectApps™ Help Guide

Get Asset: The GetAsset method allows you to retrieve attached files. It will return the asset's contents.

 

REQUEST ATTRIBUTES

assetId

string

This is the ID of the asset to retrieve

tokenIn

string

This is the security token that is obtained by the previous API call. See API Security topic for more details

 

 

RETURN ATTRIBUTES

asset

base64binary

The contents of the asset as a base 64 binary array

GetAssetResult

int

An integer result indicating success (= 0) or an error (<> 0)

tokenOut

string

This is the new security token that should be used for the next function call after this one. See the API Security topic for more details

 

REST

The following is a sample REST request and response. The placeholders shown need to be replaced with actual values.

 

POST /REST/api/portal/GetAsset HTTP/1.1

Host: <server url>

Content-Type: multipart/form-data

 

Content-Disposition: form-data; name="assetId" string

Content-Disposition: form-data; name="tokenIn" string

 

HTTP/1.1 200 OK

Content-Length: length

Content-Type: application/json; charset=utf-8

{

"asset":base64binary,

"GetAssetResult":int,

"tokenOut":string

}

 

Return to: Account API Methods (REST), Integration