f59881dadecd
Get designation configurations
Use this request to retrieve a paginated list of designation configurations from your Fundraise Up account. Each configuration represents a relationship between a designation and a campaign, and specifies which payment frequencies are allowed.
Query parameters
Specifies whether the request is executed in live or test mode. Required for API keys created after 30th January 2026. Designation configurations 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
The ID of the campaign to filter by.
The ID of the designation to filter by.
Indicates payment types accepted for this designation-campaign combination.
Response
On success, the API returns a list of designation configurations. The response includes an array of configuration objects and a boolean indicating whether more records are available.
Example response
{
"data": [
{
"account": {
"code": "Code-1",
"id": "AXXXXXXX",
"name": "Example Account"
},
"campaign": {
"code": "Code-1",
"id": "FUNXXXXXXXX",
"name": "My Campaign"
},
"created_at": "2024-12-20T00:00:00.000Z",
"designation": {
"code": "Code-1",
"id": "EXXXXXXX",
"name": "My Designation"
},
"id": "MXXXXXXX",
"repeat": "all"
}
],
"has_more": true
}