TransactionInquires API
| Field |
Type |
Description |
| id |
integer |
Primary key of an inquiry |
| body |
string |
Contents of the inquiry. |
| is_read |
bool |
Has the inquiry been marked as read in Event Admin? |
List all purchases for a specific event
GET /event_makers/:event_maker_id/events/:event_id/transaction_inquires
Response
[
{
"id": 123456,
"body": "I have massive allergies to shellfish and peanuts. I would like to know if the food served at the event contains any of these ingredients.",
"is_read": false,
"created_at": "2024-09-25T10:00:00Z"
}
]