Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 825 Bytes

File metadata and controls

36 lines (23 loc) · 825 Bytes

Subscriptions

We recommend reading the main readme first, to understand the requirements for using the library and how to initiate this in your apps. This guide assumes you've read that.

Get all subscriptions

This describes how to get all subscriptions

ListResponse flwResponse = new Subscriptions()
        .getAllSubscriptions();

Activate a Subscription

This describes how to activate a subscription

Response flwResponse = new Subscriptions().
        activateSubscription(id);

Deactivate a Subscription

This describes how to activate a subscription

Response flwResponse = new Subscriptions().
        deactivateSubscription(id);