# Get computer custom data for a specific computer This API allows clients to fetch detailed custom data associated with a given resource ID. ## Endpoints GET `/dcapi/customColumn/{ColumnID}/customFields` ## Request URL `https://{server-hostname}:8383/dcapi/customColumn/{ColumnID}/customFields` ### Scope `CustomField.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** (`string`, Mandatory): `application/customFields.v1+json` ### Path Parameters - **ColumnID** (`string`, Mandatory): Provide the resource ID obtained from [this API](https://www.manageengine.com/products/desktop-central/help/api/onpremise/computers-getcomputersinfo.html). ## Sample Request ```curl 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: - **owner** (`string`): Name of the owner of the asset/computer. - **isWarrantyScanAllowed** (`string`): Indicates if warranty scanning is permitted (true/false). - **isShippingDateFetched** (`string`): Specifies whether the shipping date has been fetched (true/false). - **expiryDate** (`string`): Expiry date of the warranty. - **shippingDate** (`string`): Shipping date of the asset. - **searchTag** (`string`): Tag used for quick search or identification. - **expiryDateUpdateType** (`integer`): It can have two values: - `0` — shippingDate updated by the system - `1` — shippingDate updated by the user - **notes** (`string`): Additional remarks or notes related to the asset. - **ownerEmail** (`string`): Email address of the owner. - **productNumber** (`string`): Product number or unique identifier of the item. - **location** (`string`): Location of the asset. - **shippingDateUpdateType** (`string`): It can have two values: - `0` — shippingDate updated by the system - `1` — shippingDate updated by the user ## Possible Response Codes - **200** (`HTTP code`) ## Sample Response: HTTP 200 ```json { "owner": "--", "expiryDate": "08/08/2029", "shippingDateUpdateType": 0, "expiryDateUpdateType": 0, "notes": "--", "shippingDate": "", "isWarrantyScanAllowed": true, "isShippingDateFetched": false, "location": "--", "productNumber": "--", "searchTag": "--", "ownerEmail": "--" } ``` ## Rate Limits ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **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.