Overdue & Billing

Pre-requisite

  • The user has to be signed in to perform the following operations.

Get Subscriptions Overdue

To retrieve the list of overdue subscriptions for a space:

  • spaceId (required): The unique identifier of the space.
InstaVision.subscriptionService.getSubscriptionsOverdue(
  spaceId = "spaceId",
  onSuccess = { overdueList ->
    // Handle the list of overdue subscriptions
  },
  onError = { error ->
    // The error object contains the error code and message
  }
)