Find all
Parameter | Default | Values / Description |
---|---|---|
filter[eventId]* | number | |
filter[search] | string | |
filter[description] | string | |
filter[checkedIn] | boolean | |
filter[status] | attending waitlist declined invited consumed deletion-requested | attending waitlist declined invited consumed deletion-requested |
page[size] | 50 | Maximum number of results |
page[number] | 1 | Page number |
- JavaScript
- curl
const Confetti = require('confetti')
const confetti = new Confetti({ apiKey: 'your-key' })
const tickets = await confetti.tickets.findAll({
filter: {
eventId: 16969
},
page: {
size: 10,
number: 3
}
})
Result
[
{
"persons": 1,
"hashid": "g265xg",
"description": "My cool batch",
"price": 10,
"currency": "SEK",
"name": "Foo Bar",
"firstName": "Foo",
"lastName": "Bar",
"email": "foo@bar.com",
"phone": "+46701111111",
"token": "d92614282978451b7942fffda421df47740c",
"status": "attending",
"emailStatus": "subscribed",
"checkinAt": null,
"waitlistAt": null,
"startDate": "2021-06-18T16:00:00.000Z",
"endDate": null,
"values": {
"field-one-field": "Veg",
"field-what-do-you-think": [
"Yes"
]
},
"comment": null,
"guests": 0,
"termsAcceptedAt": "2020-03-09T19:53:30.304Z",
"deletionRequestedAt": null,
"createdAt": "2020-03-09T19:51:32.274Z",
"updatedAt": "2020-03-09T19:53:30.354Z",
"ticketBatchId": 16090,
"paymentId": 288297,
"eventId": 16969,
"contactId": 112395,
"id": "3344691",
"type": "ticket"
},
{
"persons": 1,
"hashid": "g265xg",
"description": "My cool batch",
"price": 10,
"currency": "SEK",
"name": "Foo Bar",
"firstName": "Foo",
"lastName": "Bar",
"email": "foo@bar.com",
"phone": "+46701111111",
"token": "d92614282978451b7942fffda421df47740c",
"status": "attending",
"emailStatus": "subscribed",
"checkinAt": null,
"waitlistAt": null,
"startDate": "2021-06-18T16:00:00.000Z",
"endDate": null,
"values": {
"field-one-field": "Veg",
"field-what-do-you-think": [
"Yes"
]
},
"comment": null,
"guests": 0,
"termsAcceptedAt": "2020-03-09T19:53:30.304Z",
"deletionRequestedAt": null,
"createdAt": "2020-03-09T19:51:32.274Z",
"updatedAt": "2020-03-09T19:53:30.354Z",
"ticketBatchId": 16090,
"paymentId": 288297,
"eventId": 16969,
"contactId": 112395,
"id": "3344691",
"type": "ticket"
}
]
curl "https://api.confetti.events/tickets?filter[eventId]=16969"
-H "Authorization: apikey your-key"
Result
{
"data": [
{
"id": "3344691",
"type": "ticket",
"attributes": {
"persons": 1,
"hashid": "g265xg",
"description": "My cool batch",
"price": 10,
"currency": "SEK",
"name": "Foo Bar",
"firstName": "Foo",
"lastName": "Bar",
"email": "foo@bar.com",
"phone": "+46701111111",
"token": "d92614282978451b7942fffda421df47740c",
"status": "attending",
"emailStatus": "subscribed",
"checkinAt": null,
"waitlistAt": null,
"startDate": "2021-06-18T16:00:00.000Z",
"endDate": null,
"values": {
"field-one-field": "Veg",
"field-what-do-you-think": [
"Yes"
]
},
"comment": null,
"guests": 0,
"termsAcceptedAt": "2020-03-09T19:53:30.304Z",
"deletionRequestedAt": null,
"createdAt": "2020-03-09T19:51:32.274Z",
"updatedAt": "2020-03-09T19:53:30.354Z",
"ticketBatchId": 16090,
"paymentId": 288297,
"eventId": 16969,
"contactId": 112395
}
},
{
"id": "3344691",
"type": "ticket",
"attributes": {
"persons": 1,
"hashid": "g265xg",
"description": "My cool batch",
"price": 10,
"currency": "SEK",
"name": "Foo Bar",
"firstName": "Foo",
"lastName": "Bar",
"email": "foo@bar.com",
"phone": "+46701111111",
"token": "d92614282978451b7942fffda421df47740c",
"status": "attending",
"emailStatus": "subscribed",
"checkinAt": null,
"waitlistAt": null,
"startDate": "2021-06-18T16:00:00.000Z",
"endDate": null,
"values": {
"field-one-field": "Veg",
"field-what-do-you-think": [
"Yes"
]
},
"comment": null,
"guests": 0,
"termsAcceptedAt": "2020-03-09T19:53:30.304Z",
"deletionRequestedAt": null,
"createdAt": "2020-03-09T19:51:32.274Z",
"updatedAt": "2020-03-09T19:53:30.354Z",
"ticketBatchId": 16090,
"paymentId": 288297,
"eventId": 16969,
"contactId": 112395
}
}
]
}