Auctria Zapier API & Webhooks
Auctria Zapier API & Webhooks
API and webhook documentation for connecting Auctria event activity to Zapier workflows.
The Auctria Zapier integration lets an authenticated Auctria organization connect event activity to Zapier. Zapier subscribes to Auctria webhook events, receives signed webhook deliveries through Svix, and uses the event payload to start automated workflows in other applications.
Integration summary
- Zapier app type: Trigger-only webhook integration
- Authentication: Custom auth with an application ID and integration key
- Delivery provider: Svix signed webhooks
- Primary use: Start Zaps when fundraising event records are created in Auctria
Authentication
The Zapier integration uses custom authentication. Auctria users load the required values from their Auctria organization automation settings and paste them into Zapier when connecting the Auctria app.
| Zapier field | Type | Required | Description |
|---|---|---|---|
application_id | string | Yes | The Svix application ID for the connected Auctria organization. |
integration_key | password | Yes | The secret integration key Zapier uses to manage webhook subscriptions. |
Webhook events
Each supported Auctria webhook event is available as a separate Zapier trigger. Supported events may expand over time; integrations should use the event type value in each payload to identify the event that was delivered.
participant.registered
Triggers when a new participant is added to an Auctria event.
| Field | Value |
|---|---|
| Auctria change | Insert Participant |
| Primary payload object | payload.participant |
| Common fields | id, type, createdAt, organization, event, payload |
| Selected output fields | Participant ID, number, first name, last name, email, phone number, and address fields. |
item.added
Triggers when a new auction item is added to an Auctria event.
| Field | Value |
|---|---|
| Auctria change | Insert Item |
| Primary payload object | payload.item |
| Common fields | id, type, createdAt, organization, event, payload |
| Selected output fields | Item ID, number, title, description, type, and value. |
transaction.added
Triggers when a new transaction is recorded in an Auctria event.
| Field | Value |
|---|---|
| Auctria change | Insert Transaction |
| Primary payload object | payload.transaction |
| Common fields | id, type, createdAt, organization, event, payload |
| Selected output fields | Transaction ID, amount, quantity, origin, notes, item details, and participant details. |
sales-order.created
Triggers when a new sales order is created in an Auctria event.
| Field | Value |
|---|---|
| Auctria change | Insert SalesOrder |
| Primary payload object | payload.salesOrder |
| Common fields | id, type, createdAt, organization, event, payload |
| Selected output fields | Sales order ID, reference, origin, notes, event details, participant details, and transaction line items. |
Webhook payload format
All Zapier triggers receive a JSON webhook payload with a common envelope. The payload object changes based on the event type.
{
"id": "6aa5c78b-ad5d-4ebb-a2fe-f4fdda3851a3",
"type": "transaction.added",
"createdAt": "2026-04-01T18:37:02.7253615Z",
"organization": {
"id": "ac2f9f80-c0fc-4003-a13d-a96751c8085a",
"name": "Auctria"
},
"event": {
"id": "16300146-f692-480d-9f8e-72078ca9810b",
"name": "Spring Gala"
},
"payload": {
"transaction": {
"id": "bd28d4b4-1333-4a29-9705-09fff0d84aee",
"quantity": 1,
"amount": "100.00",
"origin": "User"
}
}
}
Sales order example
The sales-order.created trigger includes the sales order, participant, and transaction line items.
{
"id": "f7c4fcc0-d8d0-46a2-8f0a-3b32f65c71b2",
"type": "sales-order.created",
"createdAt": "2026-04-20T16:42:13.0000000Z",
"organization": {
"id": "ac2f9f80-c0fc-4003-a13d-a96751c8085a",
"name": "Auctria"
},
"event": {
"id": "16300146-f692-480d-9f8e-72078ca9810b",
"name": "Spring Gala"
},
"payload": {
"salesOrder": {
"id": "5386fc18-9d1d-4d90-a948-276834a44795",
"reference": "SO-1001",
"origin": "Online",
"notes": "Created from online checkout",
"participant": {
"id": "4539dd75-f3c3-4549-a865-5cd3837c0642",
"number": "1",
"firstName": "Avery",
"lastName": "Smith",
"email": "donor@example.org"
},
"transactions": [
{
"id": "bd28d4b4-1333-4a29-9705-09fff0d84aee",
"amount": "100.00",
"quantity": 1,
"salesTax1": "0.00",
"salesTax2": "0.00",
"salesTax3": "0.00",
"item": {
"id": "58f38341-81bd-4bed-9825-98dd22a7aa5f",
"number": "4",
"title": "Silent Auction Painting",
"type": "Online"
}
}
]
}
}
}
Errors and support
If credentials cannot be loaded, Auctria returns an API outcome with Success = false and a message such as:
Webhooks integration is not configured.Unable to load Zapier credentials.
For help connecting Auctria to Zapier, contact Auctria support through the Auctria contact page:
https://www.auctria.com/contact
Last reviewed: June 2026
