Sha256: 021f42f34cc95042532c64387706f7020a65f9aeee0c30ea6eb516596d697fc6
Contents?: true
Size: 1.74 KB
Versions: 1
Compression:
Stored size: 1.74 KB
Contents
module AvaTax class Client module Compliance # Retrieve jurisdiction rate information for tax authority # # This API is available by invitation only. # # ### Security Policies # # * This API depends on the following active services:*Returns* (at least one of): Mrs, MRSComplianceManager, AvaTaxCsp.*Firm Managed* (for accounts managed by a firm): ARA, ARAManaged. # Swagger Name: AvaTaxClient # @param taxAuthorityId [Integer] Used to limit the jurisdictions returned. # @param effectiveDate [DateTime] Used to limit the jurisdictions returned. # @param endDate [DateTime] Used to limit the jurisdictions returned. # @param filter [String] 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 include [String] A comma separated list of objects to fetch underneath this jurisdiction. # @param top [Integer] If nonzero, return no more than this number of results. Used with `$skip` to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 1,000 records. # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets. # @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`. # @return [Object] def query_tax_authority_jurisdiction_rates(options={}) path = "/api/v2/compliance/taxauthorityjurisdictionrates" get(path, options, "22.2.1") end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
avatax-22.2.1 | lib/avatax/client/compliance.rb |