added

Implement dedicated API endpoints for fee management on sessions and packages

We’ve introduced new dedicated endpoints to simplify the management of session and package fees. These endpoints allow you to directly view, update, or remove pricing details without needing to modify the entire resource object. This makes fee configuration more flexible and easier to maintain across your event setup.

New Endpoints

Sessions

  • GET /api/v1/sessions/{id}/fee
    View current fee configuration for the specified session.

  • PUT/PATCH /api/v1/sessions/{id}/fee
    Update fee pricing for the specified session.

  • DELETE /api/v1/sessions/{id}/fee
    Remove the fee, effectively making the session free.

Packages

  • GET /api/v1/packages/{id}/fee
    View current fee configuration for the specified package.

  • PUT/PATCH /api/v1/packages/{id}/fee
    Update fee pricing for the specified package.

  • DELETE /api/v1/packages/{id}/fee
    Remove the fee, effectively making the package free.