Get computer custom data for a specific computer

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 fetch detailed custom data associated with a given resource ID

Request URL

https://{server-hostname}:8383/dcapi/customColumn/{ColumnID}/customFields

Scope

CustomField.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

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

- Path Parameters

ColumnIDstringMandatory

Provide the resource ID obtained from this API

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomain/dcapi/customColumn/{ColumnID}/customFields \
  --header 'Accept: application/customFields.v1+json' \
  --header 'Authorization:  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
ownerstring

Name of the owner of the asset/computer

isWarrantyScanAllowedstring

Indicates if warranty scanning is permitted (true/false)

isShippingDateFetchedstring

Specifies whether the shipping date has been fetched (true/false)

expiryDatestring

Expiry date of the warranty

shippingDatestring

Shipping date of the asset

searchTagstring

Tag used for quick search or identification

expiryDateUpdateTypeinteger

It can have two values:
0 —shippingDate updated by the system
1 — shippingDate updated by the user

notesstring

Additional remarks or notes related to the asset

ownerEmailstring

Email address of the owner

productNumberstring

Product number or unique identifier of the item

locationstring

Location of the asset

shippingDateUpdateTypestring

It can have two values:
0 —shippingDate updated by the system
1 — shippingDate updated by the user

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Copied!
  {
    "owner": "--",
    "expiryDate": "08/08/2029",
    "shippingDateUpdateType": 0,
    "expiryDateUpdateType": 0,
    "notes": "--",
    "shippingDate": "",
    "isWarrantyScanAllowed": true,
    "isShippingDateFetched": false,
    "location": "--",
    "productNumber": "--",
    "searchTag": "--",
    "ownerEmail": "--"
  }
                
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.