latestOpenAPI 3.0.02026-08-1535120202.6 KB
f59881dadecd
Fundraisers
Create a Fundraiser
This request allows you to create a Fundraiser — a supporter-led fundraising page connected to a specific campaign. Learn more about how Fundraisers work in Fundraise Up.
post/v1/fundraisers
Request body
Example request
{
"campaign": "FUNXXXXXXXX",
"description": "I'm raising money to help protect penguins and their habitat. Join me!",
"name": "Run for hope",
"code": "Winter appeal",
"currency": "usd",
"designation": "EXXXXXXX",
"goal": {
"amount": "99.99",
"end_date": "2025-01-01"
},
"image": {
"upload_url": "https://example.com/image.jpg"
},
"livemode": true,
"slug": "5003-000000D8cu_IQAA"
}Response
On success, the API returns the created Fundraiser object. If any parameters are invalid, the request returns an error response.
Example response
{
"campaign": {
"code": "Code-1",
"id": "FUNXXXXXXXX",
"name": "My Campaign"
},
"created_at": "2024-12-20T00:00:00.000Z",
"currency": "usd",
"designation": {
"code": "Code-1",
"id": "EXXXXXXX",
"name": "My Designation"
},
"name": "Run for hope"
}