UserMotiveUpload Data Type

Request payload for uploading an image to the user's private motive library. Supply either a public URL or base64-encoded file content.

Available Since
1.3.0
Properties
Name Type Description
attachment string The binary data of the motive file.
filename string The name of the Motive File.
url string The Url that Shirtplatform will download the file from.
Used in
UserMotiveUpload (JSON)
{
  "userMotiveUpload" : {
    "attachment" : "...",
    "filename" : "...",
    "url" : "..."
  }
}
UserMotiveUpload Data Type

Request payload for uploading an image to the user's private motive library. Supply either a public URL or base64-encoded file content.

Available Since
1.3.0
Properties
Name Type Description
attachment base64Binary The binary data of the motive file.
filename string The name of the Motive File.
url string The Url that Shirtplatform will download the file from.
Used in
UserMotiveUpload (XML)
<userMotiveUpload>
  <attachment>...</attachment>
  <filename>...</filename>
  <url>...</url>
</userMotiveUpload>