version 8.3.8

Back | 

WsAssetAssociatedFile

URL

de.piksel.tech/services/index.php?&mode=json
Use "request" param as post variable for submitting json/xml request payload for all POST requests.

Request Headers

Name

Parameters

  • assetId => AssetId of the asset for the file to be added to

    fileId => The asset id of an existing file to be associated

  • isNew => Set if uploading a new file (true|false)
  • title => Title of new file, required if isNew=true
  • filename => FTP path and name to the file

Request

Adds a new associated file to an asset, this must be a valid existing asset

Request format

{
  "request": {
    "authentication": {
      "app_token": "7cd207c2-6808-11e3-b865-22000a8a28ea",
      "client_token": "d4c1b92c0acb102ba3e10015c5f061d1",
      "user_token": "f277cb9d46e45f67f44de949cdde110f"
    },
    "header": {
      "header_version": 1,
      "api_version": "5",
      "no_cache": true
    },
    "Ws_Asset_Associated_File": {
      "assetId": "1",
      "fileId": "3",
      "isNew": true,
      "title": "Name of new file",
      "filename": "\/home\/files\/myfile.extension"
    }
  }
}

Test Example

{ "request": { "authentication": { "app_token": "#app_token#", "client_token": "#client_token#", "user_token": "#user_token#" }, "header": { "header_version": 1, "api_version": "5", "no_cache": true }, "Ws_Asset_Associated_File": { "assetId": "1", "fileId": "3" } } }

Response

Response format

{
  "response": {
    "success": {
      "code": 852,
      "message": "Associated file added\/updated",
      "details": ""
    }
  }
}