Deprecation Notice
Api V3 is being deprecated on July 1st, 2023. Please consider updating to V5
GET /fundraising-events/:id/registrations
This is an authorization required endpoint which returns the registrations made to a specific fundraising event.
{
"meta": {
"status": 200
},
"data": [
{
"id": 4,
"userId": 9444,
"email": "dev@tiltify.com",
"subscribed": true,
"registeredAt": "2017-04-07T12:10:16.364-04:00",
"address": {
"addressLine1": "123 Over there",
"addressLine2": "#123",
"city": "Houston",
"state": "TX",
"postalCode": "12345",
},
"shirtSize": "M",
"serviceHours": false
},
// ...
]
}
Examples
GET /fundraising-events/1/registrations
Returns the registration field settings for a fundraising event with an id of 1.
curl https://tiltify.com/api/v3/fundraising-events/1/registrations