Trigger actions for an event signup for a person

POST /api/event/scanner/base_event_signup/action/{personIdentifier}

Path parameters

  • personIdentifier string Required

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 or ASC.

  • page integer

    page of the list

    Default value is 0.

  • pageSize integer

    number of entries for each page

    Minimum value is 1, maximum value is 200. Default value is 50.

  • 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

application/json

Body Required

  • crmcompany object

Responses

  • 200 application/json

    Trigger actions for an event signup for a person

    Hide response attributes Show response attributes object
    • id integer
    • first_name string
    • last_name string
    • gender string
    • waiting boolean
    • confirmed boolean
    • deletion_reason string
    • direct_billing boolean
    • direct_billing_check_date string(date-time)
    • direct_billing_token string
    • birthday string(date-time)
    • known_allergies string
    • confirmed_no_allergies boolean
    • allow_photos boolean
    • allow_child_alone boolean
    • authorized_pickup string
    • needs_support boolean
    • support_description string
    • financial_support boolean
    • financial_support_number string
    • municipal_support boolean
    • municipal_support_number string
    • grade_level integer
    • school_class string
    • self_check_in boolean
    • self_check_out boolean
    • self_check_in_date string(date-time)
    • self_check_out_date string(date-time)
    • reminded_of_absence string(date-time)
    • confirmed_date string(date-time)
    • name string
POST /api/event/scanner/base_event_signup/action/{personIdentifier}
curl \
 --request POST 'https://replace-with-own-host.iw-erp.de/api/event/scanner/base_event_signup/action/{personIdentifier}' \
 --header "x-session-token: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"crmcompany":{}}'
Request examples
{
  "crmcompany": {}
}
Response examples (200)
{
  "id": 42,
  "first_name": "string",
  "last_name": "string",
  "gender": "string",
  "waiting": true,
  "confirmed": true,
  "deletion_reason": "string",
  "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"
}