---
title: "Get designations"
method: GET
path: "/v1/designations"
tags: ["Designations"]
---

# Get designations

`GET /v1/designations`

This request lets you retrieve a paginated list of designations from your Fundraise Up account, including designations inherited from the parent account.

## Query parameters

- `livemode` boolean
- `starting_after` string
- `ending_before` string
- `limit` integer
- `created` CreatedQuery — Filters results by the record creation date. Accepts a single date or a date range in RFC 3339 format.
  - `created[gt]` string, date-time — Minimum creation date (exclusive). Returns records after this timestamp.
  - `created[gte]` string, date-time — Minimum creation date (inclusive). Returns records from and after this timestamp.
  - `created[lt]` string, date-time — Maximum creation date (exclusive). Returns records before this timestamp.
  - `created[lte]` string, date-time — Maximum creation date (inclusive). Returns records up to and including this timestamp.
- `campaign` string

## Response `200`

On success, the API returns the array of designation objects. If the parameters are invalid, the call will return an error.

- DesignationsResponse — Provides a paginated response for designations.
  - `data` Designation[], required — An array containing the entity records, paginated by any request parameters.
    - `account` AccountResponse, required — Organization account information.
      - `code` string, nullable, required — Custom identifier for the organization, set as the Account code in the Fundraise Up account.
      - `id` string, required — Unique identifier of the organization in the format A[A-Z]{7}.
      - `name` string, required — The name of the organization as set in the Fundraise Up account.
    - `code` string, nullable, required — Designation code.
    - `created_at` string, required — Timestamp in ISO 8601 format, indicating when the designation was created in UTC.
    - `id` string, required — Unique designation identifier.
    - `is_default` boolean, required — Indicates whether this is the default designation for the account.
    - `name` string, nullable, required — Designation name.
    - `updated_at` string, required — Timestamp in ISO 8601 format, indicating when the designation was last updated in UTC.
  - `has_more` boolean, required — Indicates whether there are more records available. For `starting_after`, it shows that there is a page with older records. For `ending_before`, it indicates that there is a page with newer records.

## Other responses

- `403` — Forbidden. The API key does not have permission to access designations.

---

[API](https://skmtc.net/fundraiseup/apis/fundraise-up-api.md) · [All operations](https://skmtc.net/fundraiseup/apis/fundraise-up-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fundraiseup/fundraise-up-api/revisions/f59881dadecd/schema)
