Get a list of the next event signups of a person
Query parameters
-
searchString
string text to search for in the list
-
orderFieldName
string name of the order field
-
orderFieldSort
string sorting mode
Values are
DESC
orASC
. -
page
integer page of the list
Default value is
0
. -
pageSize
integer number of entries for each page
Minimum value is
1
, maximum value is200
. Default value is50
. -
withMaxPageNumber
string returns the number of pages available as a header if this is set
-
iw-build-id
string build id of the client
-
iw-package-id
string package id of the client
GET
/api/event/scanner/base_event_signup/next
curl \
--request GET 'https://replace-with-own-host.iw-erp.de/api/event/scanner/base_event_signup/next' \
--header "x-session-token: $API_KEY"
Response examples (200)
[
{
"id": 42,
"first_name": "string",
"last_name": "string",
"gender": "string",
"waiting": true,
"confirmed": true,
"direct_billing": true,
"direct_billing_check_date": "2025-05-04T09:42:00Z",
"direct_billing_token": "string",
"birthday": "2025-05-04T09:42:00Z",
"known_allergies": "string",
"confirmed_no_allergies": true,
"allow_photos": true,
"allow_child_alone": true,
"authorized_pickup": "string",
"needs_support": true,
"support_description": "string",
"financial_support": true,
"financial_support_number": "string",
"municipal_support": true,
"municipal_support_number": "string",
"grade_level": 42,
"school_class": "string",
"self_check_in": true,
"self_check_out": true,
"self_check_in_date": "2025-05-04T09:42:00Z",
"self_check_out_date": "2025-05-04T09:42:00Z",
"reminded_of_absence": "2025-05-04T09:42:00Z",
"confirmed_date": "2025-05-04T09:42:00Z",
"name": "string"
}
]