curl --location 'https://api-demo-story.glueup.com/v2/event/7514/attendeeList' \
--header 'a;' \
--header 'requestOrganizationId: 2018' \
--header 'Content-Type: application/json' \
--data '{
"projection" : ["id","givenName", "familyName","emailAddress","approvalStatus","properties.single-choice-msaox11q"],
"filter" : [ {
"projection" : "approvalStatus",
"operator" : "eq",
"values" : [ "Approved" ]
}, {
"projection" : "properties.single-choice-msaox11q",
"operator" : "eq",
"values" : [ "crm-p-schoice-a1" ]
}],
"order" : {
"familyName" : "asc"
},
"offset" : 0,
"limit" : 20
}'{
"warnings": [],
"errors": [],
"metadata": {
"pagination": {
"total": 1
}
},
"value": [
{
"id": 207430,
"approvalStatus": "Approved",
"properties": {
"single-choice-msaox11q": {
"code": "crm-p-schoice-a1",
"title": {
"en": "CRM p schoice a1"
}
}
},
"givenName": "test",
"familyName": "example",
"emailAddress": {
"value": "test.example@glueup.com"
}
}
]
}