---
title: "Show a custom field value"
method: GET
path: "/v1/custom-fields/{custom_field_id}/values/{employment_id}"
tags: ["Custom Fields"]
---

# Show a custom field value

`GET /v1/custom-fields/{custom_field_id}/values/{employment_id}`

Returns a custom field value for a given employment

## Scopes

| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage employments (`employments`) | View custom field values (`custom_field_value:read`) | Manage custom field values (`custom_field_value:write`) |

## Path parameters

- `custom_field_id` string, required
- `employment_id` string, required

## Response `200`

Success

- EmploymentCustomFieldValueResponse — Response containing a single custom field value for an employment.
  - `data` object, required
    - `custom_field_value` EmploymentCustomFieldValue, required — The value of a custom field for a specific employment. The type of `value` depends on the custom field's data type.
      - `custom_field_id` string, required — The unique identifier (UUID) of the custom field definition this value belongs to.
      - `value` union, required
        - string
        - integer
        - boolean
        - number — Decimal value represented as a String
        - EmploymentCustomFieldValueJsonValue — The value for a single-select custom field, containing both the option ID and its human-readable label.
          - `selected_option` string, required — The unique identifier of the selected option.
          - `selected_option_label` string, required — The human-readable label of the selected option (e.g., "XL").

## Other responses

- `401` — Unauthorized
- `404` — Not Found
- `422` — Unprocessable Entity

---

[API](https://skmtc.dev/remote-com/apis/remote.md) · [All operations](https://skmtc.dev/remote-com/apis/remote/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/remote-com/remote/revisions/7e6a0c61ac82/schema)
