Uploads a file to a custom field for a specified computer resource

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

This API allows clients to upload a file into a designated custom field within a computer resource

Request URL

https://{server-hostname}:8383/dcapi/customFields/values/file

Scope

CustomField.CREATECopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

AcceptstringMandatory
application/uploadCustomFieldFile.v1+jsonapplication/uploadCustomFieldFile.v1+jsonCopied!

- Request Body

multipart/form-data
JSON Object
Hide Sub-Attributes
uploadedFilestringOptional

The file to be uploaded to the custom field. Supported formats: archives, data files, images, presentation files, scripts, spreadsheets, and documents

selectedResourcesstringOptional

Identifier of the resource to which the file will be attached

columnNamestringOptional

The custom field column where the file should be uploaded

tableNamestringOptional

Target table in which the custom field data will be stored

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request PUT \
  --url https://appdomain/dcapi/customFields/values/file \
  --header 'Accept: application/uploadCustomFieldFile.v1+json' \
  --header 'Authorization:  d92d4xxxxxxxxxxxxx15f52' \
  --header 'content-type: multipart/form-data' \
  -F 'uploadedFile=File to be uploaded' \
  -F 'selectedResources=301' \
  -F 'columnName=COL301' \
  -F 'tableName=ManagedComputerCustomFields'

Sample Request Body

Copied!
// Note: payload contains multiple type attributes

// type: string
uploadedFile = File to be uploaded

// type: string
selectedResources = 301

// type: string
columnName = COL301

// type: string
tableName = ManagedComputerCustomFields
Show full

Possible Response Codes

204HTTP code

Sample Response: HTTP 204

Copied!
204 No Content
Show full

Duration: 1 minute | Threshold: 30 | Lock period: 5 minutes

Duration - Time window for the threshold.
Threshold - Number of API calls allowed within the specified duration.
Lock Period - Wait time before consecutive API requests.