f59881dadecd
Get designation groups
Use this request to retrieve a paginated list of designation groups from your Fundraise Up account. A designation group is a container for related designations and other designation groups.
Query parameters
Specifies whether the request is executed in live or test mode. Required for API keys created after 30th January 2026. Designation groups only exist in live mode — set this to true.
A cursor for pagination. Returns records older than the specified object ID.
A cursor for pagination. Returns records newer than the specified object ID.
This parameter specifies the number of records to display per page, ranging from 1 to 100
Filters results by the record creation date. Accepts a single date or a date range in RFC 3339 format.
{
"created[gt]": "2025-01-01T12:30:00+02:00",
"created[gte]": "2025-01-01T12:30:00+02:00",
"created[lt]": "2025-01-01T12:30:00+02:00",
"created[lte]": "2025-01-01T12:30:00+02:00"
}The ID of the designation to filter by. Returns groups containing the specified designation.
Response
On success, the API returns a list of designation groups. The response includes an array of designation group objects and a boolean indicating whether more records are available.
Example response
{
"data": [
{
"children": [
{
"code": "SCH-01",
"id": "EXXXXXXX",
"name": "Scholarship Fund",
"type": "designation"
}
],
"id": "LXXXXXXX",
"name": "Education Programs"
}
],
"has_more": true
}