# 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://`[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)`/dcapi/customColumn/{ColumnID}/customFields` ## Scope `DesktopCentralCloud.CustomField.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers | Parameter | Type | Required | Value | |---|---|---|---| | Accept | string | Mandatory | `application/customFields.v1+json` | ### Path Parameters | Parameter | Type | Required | Description | |---|---|---|---| | ColumnID | string | Mandatory | Provide the resource ID obtained from [this API](https://www.manageengine.com/products/desktop-central/help/api/cloud/computers-getcomputersinfo.html) | ## Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/customColumn/{ColumnID}/customFields \ --header 'Accept: application/customFields.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP code 200 Response Body: `application/json` | Attribute | Type | Description | |---|---|---| | 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 | Code | Type | |---|---| | 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": "--" } ``` ![](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.