Field by ID

Field Details by ID

GET {{host}}/api/rest/v4/schema/fields/{{fieldId}}

Retrieves details for a specific field

Note: This endpoint only accepts a numerical fieldID. The field's apiName is not supported, as it is only unique within the context of an entry type.

Params

NameParam typeData TypeValues
fieldIdpathint2038

Request

GET {{host}}/api/rest/v4/schema/fields/{{fieldId}}
Authorization: Bearer {{token}}

Response

{
  "apiName": "Name",
  "fieldType": 1,
  "isRequired": true,
  "allowDuplicates": false,
  "warnOnNearDuplicates": false,
  "isMoney": false,
  "isMultiSelect": false,
  "entryLists": [],
  "systemFieldType": 9,
  "isKey": false,
  "isCalculated": false,
  "isAttachment": false,
  "isStoreRequestSupported": true,
  "id": 2038,
  "name": "Name",
  "entryListId": 2000
}