module AvaTax class Client module Subscriptions # Retrieve a single subscription # # Get the subscription object identified by this URL. # A 'subscription' indicates a licensed subscription to a named Avalara service. # To request or remove subscriptions, please contact Avalara sales or your customer account manager. # # @param int accountId The ID of the account that owns this subscription # @param int id The primary key of this subscription # @return SubscriptionModel def get_subscription(accountId, id) path = "/api/v2/accounts/#{accountId}/subscriptions/#{id}" get(path) end # Retrieve subscriptions for this account # # List all subscription objects attached to this account. # A 'subscription' indicates a licensed subscription to a named Avalara service. # To request or remove subscriptions, please contact Avalara sales or your customer account manager. # # Search for specific objects using the criteria in the `$filter` parameter; full documentation is available on [Filtering in REST](http://developer.avalara.com/avatax/filtering-in-rest/) . # Paginate your results using the `$top`, `$skip`, and `$orderby` parameters. # # @param int accountId The ID of the account that owns these subscriptions # @param string filter A filter statement to identify specific records to retrieve. For more information on filtering, see [Filtering in REST](http://developer.avalara.com/avatax/filtering-in-rest/) . # @param int top If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets. # @param int skip If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets. # @param string orderBy A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`. # @return FetchResult def list_subscriptions_by_account(accountId, options={}) path = "/api/v2/accounts/#{accountId}/subscriptions" get(path, options) end # Retrieve all subscriptions # # Get multiple subscription objects across all accounts. # A 'subscription' indicates a licensed subscription to a named Avalara service. # To request or remove subscriptions, please contact Avalara sales or your customer account manager. # # Search for specific objects using the criteria in the `$filter` parameter; full documentation is available on [Filtering in REST](http://developer.avalara.com/avatax/filtering-in-rest/) . # Paginate your results using the `$top`, `$skip`, and `$orderby` parameters. # # @param string filter A filter statement to identify specific records to retrieve. For more information on filtering, see [Filtering in REST](http://developer.avalara.com/avatax/filtering-in-rest/) . # @param int top If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets. # @param int skip If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets. # @param string orderBy A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`. # @return FetchResult def query_subscriptions(options={}) path = "/api/v2/subscriptions" get(path, options) end end end end