---
title: "Get list of transaction custom field values"
method: GET
path: "/v3/spend/transactions/{transactionId}/custom-fields/{customFieldId}/values"
tags: ["transactions"]
---

# Get list of transaction custom field values

`GET /v3/spend/transactions/{transactionId}/custom-fields/{customFieldId}/values`

Get a list of custom field value objects applied to an existing transaction. By default, you get 20 results on one page of results. Set `max` in your request to get up to 100 results on one page.

## Path parameters

- `transactionId` string, required — BILL-generated ID or UUID of the transaction
- `customFieldId` string, required — BILL-generated ID or UUID of the custom field

## Query parameters

- `max` integer, nullable — Maximum number of results
- `nextPage` string, nullable — Next page of results. When a list has multiple pages, the `nextPage` and `prevPage` values in the response enable you to navigate between the pages of results. Set this field as the `nextPage` value for navigation.
- `prevPage` string, nullable — Previous page of results. Set this field as the `prevPage` value for navigation.

## Headers

- `apiToken` string, nullable — Access token for Spend & Expense API authentication

## Response `200`

Get list of transaction custom field value response

- PaginatedTxCFValueResponseDto — Response from a list API request with paging references.
  - `nextPage` string — Next page token
  - `prevPage` string — Previous page token
  - `results` CustomFieldValueDto[] — Results
    - `id` string — BILL-generated ID of the custom field value
    - `uuid` string — BILL-generated UUID of the custom field value
    - `value` string — Custom field value

## Other responses

- `4XX` — List of errors.
- `5XX` — List of errors.

---

[API](https://skmtc.net/bill/apis/bill-v3-api.md) · [All operations](https://skmtc.net/bill/apis/bill-v3-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bill/bill-v3-api/revisions/0483350c434e/schema)
