Get schedules

GET /attendance

Query parameters

  • event_id integer

Responses

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
    • id integer
    • event_id integer
    • cancellation_reason string
    • replacement_for integer
    • created string
    • modified string
    • attendance string
    • moved boolean
    • replacement boolean
    • credit_id integer
    • is_free_event integer
    • waitlist_credit_id integer
    • user_id integer
    • full_name string
    • email string
    • phone string
    • company_id string

      ID of company that record belongs to

    • registration_id integer
    • note string
    • paid integer(float)
    • slots integer
    • attendance_management string
    • registration_status string
    • calc__unused_replacements integer
    • payment_balance integer(float)
    • payment_debt integer(float)
    • payment_paid integer(float)
    • __calc__paid integer(float)
    • payment_status string
    • ef_dob string
    • ef_full_name string
    • ef_address string
    • replacement_in integer
    • internal_note string
    • other_company_attendance array
    • video_statistic array
GET /attendance
curl \
 --request GET 'https://api.zooza.app/v1/attendance'
Response examples (200)
[
  {
    "id": 42,
    "event_id": 42,
    "cancellation_reason": "string",
    "replacement_for": 42,
    "created": "string",
    "modified": "string",
    "attendance": "string",
    "moved": true,
    "replacement": true,
    "credit_id": 42,
    "is_free_event": 42,
    "waitlist_credit_id": 42,
    "user_id": 42,
    "full_name": "string",
    "email": "string",
    "phone": "string",
    "company_id": "string",
    "registration_id": 42,
    "note": "string",
    "paid": 42,
    "slots": 42,
    "attendance_management": "string",
    "registration_status": "string",
    "calc__unused_replacements": 42,
    "payment_balance": 42,
    "payment_debt": 42,
    "payment_paid": 42,
    "__calc__paid": 42,
    "payment_status": "string",
    "ef_dob": "string",
    "ef_full_name": "string",
    "ef_address": "string",
    "replacement_in": 42,
    "internal_note": "string",
    "other_company_attendance": [],
    "video_statistic": []
  }
]