---
title: "Retrieve a single Custom Field"
method: GET
path: "/v2/customfields/{id}"
tags: ["Custom Fields"]
---

# Retrieve a single Custom Field

`GET /v2/customfields/{id}`

Retrieves a single Custom Field by its ID.

## Path parameters

- `id` string, required

## Headers

- `Authorization` string, required

## Response `200`

The requested Custom Field.

- ResponseCustomFieldV2Dto
  - `id` string — The ID of the custom field (prefix `CF-`).
  - `entityType` 'JOB' | 'CLIENT' — The entity type of the custom field.
  - `name` string — The name of the custom field.
  - `type` 'Text' | 'Number' | 'Date' | 'Drop Down' | 'Checkbox' | 'Large Text' | 'File Upload' — The type of the custom field.
  - `groupId` union — The ID of the custom fields group the field belongs to (prefix `CFG-`). -1 if no group is assigned.
    - string
    - number
  - `jobTypes` ResponseGenericJobTypeV2Dto[] — The job types associated with the custom field.
    - `id` string — The ID of the job type (prefix `JT-`).
    - `name` string — The name of the job type.
  - `options` string[] — The options of the custom field.
  - `position` number — The position of the custom field.
  - `required` boolean — Indicates whether the custom field is required or not. (job only)
  - `requiredClose` boolean — Indicates whether the custom field is required to close the job. (job only)
  - `searchable` boolean — Indicates whether the custom field is searchable or not.

## Other responses

- `400` — The provided ID is not a valid custom field ID.
- `401` — Missing or invalid authentication token.
- `404` — Custom Field not found.

---

[API](https://skmtc.net/workiz/apis/developer-api.md) · [All operations](https://skmtc.net/workiz/apis/developer-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/workiz/developer-api/revisions/14666f4db0f8/schema)
