Lists all sellable / biddable items for an event, grouped by category, as anDocumentation Index
Fetch the complete documentation index at: https://developers.momogood.com/llms.txt
Use this file to discover all available pages before exploring further.
ItemsBundle.
Available in two of the three families today:
| Family | Path | Payload |
|---|---|---|
| Custom Data Export | GET /<your-namespace>/v1/events/{eventId}/items | Full record fields. |
| Blackbaud | GET /blackbaud/v1/events/{eventId}/items | Lean record fields tailored for Blackbaud ingestion. |
Coming Soon — list-items on the Salesforce connector family. If you need item data via a Salesforce-shaped payload, contact support@givergy.com.
Authorization
- Custom Data Export
- Blackbaud
The authenticated caller must be the dedicated service user provisioned for your integration, and have access to the event.
Custom Data Export endpoints require a dedicated service user provisioned per customer. Contact support@givergy.com to set up your integration.
Path parameters
| Name | Type | Notes |
|---|---|---|
eventId | UUID | EMS event id (returned by List events). |
Query parameters
| Name | Type | Default | Notes |
|---|---|---|---|
q | string | "" | Full-text filter applied per category. |
since | long | 1606062358 | updated >= since. |
offset | int | 0 | Applied per category independently. |
limit | int | 1000 | Page size per category. Maximum 1000. |
Response
ItemsBundle — always the same wrapper shape, with the per-record fields varying by family:
- Custom Data Export
- Blackbaud
Returns the full variants of
BuyNowItem, AuctionItem, Pledge, Raffle, Ticket, and GliRaffle.The Custom Data Export item types include descriptive fields the connector variants strip:revenueStreamType,externalId,categories,irsSubcategorystartPrice,increments,description,termsDescriptiontaxRate,estimate(where applicable)
Example
- Custom Data Export
- Blackbaud
What’s in the response
ItemsBundle has six top-level keys, each holding an array of records of one type:
| Wrapper key | Record type | What it represents |
|---|---|---|
buyNows | BuyNowItem | Fixed-price items guests can purchase immediately. |
auctionItems | AuctionItem | Auction lots that guests bid on. |
pledges | Pledge | Donation asks (fixed or open-amount). |
prizeDraws | Raffle | Standard ticketed prize draws. |
gliRaffles | GliRaffle | GLI-regulated raffles (separate compliance handling). |
tickets | Ticket | Event-entry ticket types. |