# Fetch a list of custom fields values Retrieves all custom field values for a specific resource. ## Endpoint **GET** `/dcapi/customFields/computers/{ColumnID}` ## Request URL `https://{server-hostname}:8383/dcapi/customFields/computers/{ColumnID}` ## 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/customFields/computers/{ColumnID} \ --header 'Accept: application/customFields.v1+json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body — application/json `JSON Array` - `JSON Object` ## Possible Response Codes - **200** — HTTP code ## Sample Response: HTTP 200 ```json [ { "isPIIColumn": false, "defaultValue": "1", "addedBy": "1", "displayName": "sample", "dataType": "int", "extendedDataType": "", "description": "", "maxAllowedSize": "4", "inputFormat": "", "value": "3", "columnName": "COL301" } ] ``` ## API 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.