---
title: "Get a Property"
method: GET
path: "/v1/properties/{id}"
tags: ["properties"]
---

# Get a Property

`GET /v1/properties/{id}`

Get a property by its unique identifier.

## Path parameters

- `id` string, required

## Response `200`

The property was retrieved

- Property — A custom key-value pair that is associated with a donation.
  - `id` string, required — The unique identifier for the property.
  - `name` string, required — The name of the property.
  - `resource_type` 'donation' | 'deposit', required — The API resource that the property is associated with.
  - `property_type` 'text' | 'enum' | 'user' | 'boolean' | 'date', required — The data type of a property.
  - `options` PropertyOptionValue[] — The first 25 options for enum and user properties. Use the [List Property Options](/api-reference/properties/list-options) endpoint to paginate through all options.
    - `id` string, required — The unique identifier for the property value.
    - `name` string, required — The human readable string for the property value.
    - `description` string — A description of the property option.
  - `total_option_count` integer — The total number of options for enum and user properties. When this is greater than the length of `options`, use the [List Property Options](/api-reference/properties/list-options) endpoint to paginate through all options.

## Other responses

- `400` — The request is invalid or contains invalid parameters
- `401` — Unauthorized. The request is missing the security (OAuth2 Bearer token) requirements and the server is unable to verify the identify of the caller.
- `403` — Access denied
- `404` — Resource Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.net/chariot-giving/apis/specs.md) · [All operations](https://skmtc.net/chariot-giving/apis/specs/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/chariot-giving/specs/revisions/8446023e02fb/schema)
