Subscriptions API
Provides methods for creating, updating, retrieving, searching, and cancelling subscriptions.
Each operation is available as a suspend function for coroutine-based callers and as a callback-based overload for Java or non-coroutine callers.
Functions
Cancels an active subscription immediately.
Cancels an active subscription immediately and delivers the result via callback.
Creates a new subscription for a customer.
Creates a new subscription for a customer and delivers the result via callback.
Retrieves a paginated list of all subscriptions.
Retrieves a paginated list of all subscriptions and delivers the result via callback.
Retrieves a single subscription by its unique identifier.
Retrieves a single subscription by its unique identifier and delivers the result via callback.
Searches for subscriptions matching the given filter criteria.
Searches for subscriptions matching the given filter criteria and delivers the result via callback.
Updates an existing subscription with the provided fields.
Updates an existing subscription and delivers the result via callback.