avatax 21.6.0 → 21.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/avatax/client/accounts.rb +83 -83
- data/lib/avatax/client/addresses.rb +20 -20
- data/lib/avatax/client/advancedrules.rb +41 -41
- data/lib/avatax/client/avafileforms.rb +41 -41
- data/lib/avatax/client/batches.rb +62 -62
- data/lib/avatax/client/certexpressinvites.rb +27 -27
- data/lib/avatax/client/certificates.rb +111 -111
- data/lib/avatax/client/companies.rb +153 -153
- data/lib/avatax/client/contacts.rb +48 -48
- data/lib/avatax/client/customers.rb +97 -97
- data/lib/avatax/client/datasources.rb +48 -48
- data/lib/avatax/client/definitions.rb +558 -443
- data/lib/avatax/client/distancethresholds.rb +48 -48
- data/lib/avatax/client/ecommercetoken.rb +16 -16
- data/lib/avatax/client/filingcalendars.rb +41 -20
- data/lib/avatax/client/filings.rb +22 -20
- data/lib/avatax/client/firmclientlinkages.rb +69 -69
- data/lib/avatax/client/free.rb +13 -13
- data/lib/avatax/client/fundingrequests.rb +20 -20
- data/lib/avatax/client/items.rb +185 -181
- data/lib/avatax/client/jurisdictionoverrides.rb +48 -48
- data/lib/avatax/client/locations.rb +90 -90
- data/lib/avatax/client/multidocument.rb +76 -76
- data/lib/avatax/client/nexus.rb +133 -105
- data/lib/avatax/client/notices.rb +22 -22
- data/lib/avatax/client/notifications.rb +27 -27
- data/lib/avatax/client/provisioning.rb +20 -20
- data/lib/avatax/client/registrar.rb +85 -75
- data/lib/avatax/client/reports.rb +34 -34
- data/lib/avatax/client/settings.rb +48 -48
- data/lib/avatax/client/subscriptions.rb +27 -27
- data/lib/avatax/client/taxcodes.rb +48 -48
- data/lib/avatax/client/taxcontent.rb +41 -41
- data/lib/avatax/client/taxrules.rb +50 -50
- data/lib/avatax/client/transactions.rb +153 -153
- data/lib/avatax/client/upcs.rb +48 -48
- data/lib/avatax/client/users.rb +62 -62
- data/lib/avatax/client/utilities.rb +27 -27
- data/lib/avatax/request.rb +11 -3
- data/lib/avatax/version.rb +1 -1
- metadata +11 -4
@@ -1,10 +1,10 @@
|
|
1
|
-
module AvaTax
|
2
|
-
class Client
|
3
|
-
module DistanceThresholds
|
4
|
-
|
5
|
-
|
6
|
-
# Create one or more DistanceThreshold objects
|
7
|
-
#
|
1
|
+
module AvaTax
|
2
|
+
class Client
|
3
|
+
module DistanceThresholds
|
4
|
+
|
5
|
+
|
6
|
+
# Create one or more DistanceThreshold objects
|
7
|
+
#
|
8
8
|
# Create one or more DistanceThreshold objects for this company.
|
9
9
|
#
|
10
10
|
# A company-distance-threshold model indicates the distance between a company
|
@@ -13,15 +13,15 @@ module AvaTax
|
|
13
13
|
#
|
14
14
|
# ### Security Policies
|
15
15
|
#
|
16
|
-
# * This API requires one of the following user roles: AccountAdmin, CompanyAdmin, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
16
|
+
# * This API requires one of the following user roles: AccountAdmin, CompanyAdmin, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
17
17
|
# @param companyId [Integer] The unique ID number of the company that owns this DistanceThreshold
|
18
18
|
# @param model [CompanyDistanceThresholdModel[]] The DistanceThreshold object or objects you wish to create.
|
19
|
-
# @return [CompanyDistanceThresholdModel[]]
|
20
|
-
def create_distance_threshold(companyId, model) path = "/api/v2/companies/#{companyId}/distancethresholds"
|
21
|
-
post(path, model) end
|
22
|
-
|
23
|
-
# Delete a single DistanceThreshold object
|
24
|
-
#
|
19
|
+
# @return [CompanyDistanceThresholdModel[]]
|
20
|
+
def create_distance_threshold(companyId, model) path = "/api/v2/companies/#{companyId}/distancethresholds"
|
21
|
+
post(path, model) end
|
22
|
+
|
23
|
+
# Delete a single DistanceThreshold object
|
24
|
+
#
|
25
25
|
# Marks the DistanceThreshold object identified by this URL as deleted.
|
26
26
|
#
|
27
27
|
# A company-distance-threshold model indicates the distance between a company
|
@@ -30,15 +30,15 @@ module AvaTax
|
|
30
30
|
#
|
31
31
|
# ### Security Policies
|
32
32
|
#
|
33
|
-
# * This API requires one of the following user roles: AccountAdmin, CompanyAdmin, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
33
|
+
# * This API requires one of the following user roles: AccountAdmin, CompanyAdmin, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
34
34
|
# @param companyId [Integer] The unique ID number of the company that owns this DistanceThreshold
|
35
35
|
# @param id [Integer] The unique ID number of the DistanceThreshold object you wish to delete.
|
36
|
-
# @return [ErrorDetail[]]
|
37
|
-
def delete_distance_threshold(companyId, id) path = "/api/v2/companies/#{companyId}/distancethresholds/#{id}"
|
38
|
-
delete(path) end
|
39
|
-
|
40
|
-
# Retrieve a single DistanceThreshold
|
41
|
-
#
|
36
|
+
# @return [ErrorDetail[]]
|
37
|
+
def delete_distance_threshold(companyId, id) path = "/api/v2/companies/#{companyId}/distancethresholds/#{id}"
|
38
|
+
delete(path) end
|
39
|
+
|
40
|
+
# Retrieve a single DistanceThreshold
|
41
|
+
#
|
42
42
|
# Retrieves a single DistanceThreshold object defined by this URL.
|
43
43
|
#
|
44
44
|
# A company-distance-threshold model indicates the distance between a company
|
@@ -47,15 +47,15 @@ module AvaTax
|
|
47
47
|
#
|
48
48
|
# ### Security Policies
|
49
49
|
#
|
50
|
-
# * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
50
|
+
# * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
51
51
|
# @param companyId [Integer] The ID of the company that owns this DistanceThreshold object
|
52
52
|
# @param id [Integer] The unique ID number referring to this DistanceThreshold object
|
53
|
-
# @return [Object]
|
54
|
-
def get_distance_threshold(companyId, id) path = "/api/v2/companies/#{companyId}/distancethresholds/#{id}"
|
55
|
-
get(path) end
|
56
|
-
|
57
|
-
# Retrieve all DistanceThresholds for this company.
|
58
|
-
#
|
53
|
+
# @return [Object]
|
54
|
+
def get_distance_threshold(companyId, id) path = "/api/v2/companies/#{companyId}/distancethresholds/#{id}"
|
55
|
+
get(path) end
|
56
|
+
|
57
|
+
# Retrieve all DistanceThresholds for this company.
|
58
|
+
#
|
59
59
|
# Lists all DistanceThreshold objects that belong to this company.
|
60
60
|
#
|
61
61
|
# A company-distance-threshold model indicates the distance between a company
|
@@ -64,19 +64,19 @@ module AvaTax
|
|
64
64
|
#
|
65
65
|
# ### Security Policies
|
66
66
|
#
|
67
|
-
# * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
67
|
+
# * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
68
68
|
# @param companyId [Integer] The ID of the company whose DistanceThreshold objects you wish to list.
|
69
69
|
# @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/).
|
70
70
|
# @param include [String] A comma separated list of additional data to retrieve.
|
71
71
|
# @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.
|
72
72
|
# @param skip [Integer] If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets.
|
73
73
|
# @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
|
74
|
-
# @return [FetchResult]
|
75
|
-
def list_distance_thresholds(companyId, options={}) path = "/api/v2/companies/#{companyId}/distancethresholds"
|
76
|
-
get(path, options) end
|
77
|
-
|
78
|
-
# Retrieve all DistanceThreshold objects
|
79
|
-
#
|
74
|
+
# @return [FetchResult]
|
75
|
+
def list_distance_thresholds(companyId, options={}) path = "/api/v2/companies/#{companyId}/distancethresholds"
|
76
|
+
get(path, options) end
|
77
|
+
|
78
|
+
# Retrieve all DistanceThreshold objects
|
79
|
+
#
|
80
80
|
# Lists all DistanceThreshold objects that belong to this account.
|
81
81
|
#
|
82
82
|
# A company-distance-threshold model indicates the distance between a company
|
@@ -88,18 +88,18 @@ module AvaTax
|
|
88
88
|
#
|
89
89
|
# ### Security Policies
|
90
90
|
#
|
91
|
-
# * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
91
|
+
# * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
92
92
|
# @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/).
|
93
93
|
# @param include [String] A comma separated list of additional data to retrieve.
|
94
94
|
# @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.
|
95
95
|
# @param skip [Integer] If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets.
|
96
96
|
# @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
|
97
|
-
# @return [FetchResult]
|
98
|
-
def query_distance_thresholds(options={}) path = "/api/v2/distancethresholds"
|
99
|
-
get(path, options) end
|
100
|
-
|
101
|
-
# Update a DistanceThreshold object
|
102
|
-
#
|
97
|
+
# @return [FetchResult]
|
98
|
+
def query_distance_thresholds(options={}) path = "/api/v2/distancethresholds"
|
99
|
+
get(path, options) end
|
100
|
+
|
101
|
+
# Update a DistanceThreshold object
|
102
|
+
#
|
103
103
|
# Replace the existing DistanceThreshold object at this URL with an updated object.
|
104
104
|
#
|
105
105
|
# A company-distance-threshold model indicates the distance between a company
|
@@ -111,13 +111,13 @@ module AvaTax
|
|
111
111
|
#
|
112
112
|
# ### Security Policies
|
113
113
|
#
|
114
|
-
# * This API requires one of the following user roles: AccountAdmin, CompanyAdmin, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
114
|
+
# * This API requires one of the following user roles: AccountAdmin, CompanyAdmin, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
115
115
|
# @param companyId [Integer] The unique ID number of the company that owns this DistanceThreshold object.
|
116
116
|
# @param id [Integer] The unique ID number of the DistanceThreshold object to replace.
|
117
117
|
# @param model [Object] The new DistanceThreshold object to store.
|
118
|
-
# @return [Object]
|
119
|
-
def update_distance_threshold(companyId, id, model) path = "/api/v2/companies/#{companyId}/distancethresholds/#{id}"
|
120
|
-
put(path, model) end
|
121
|
-
end
|
122
|
-
end
|
118
|
+
# @return [Object]
|
119
|
+
def update_distance_threshold(companyId, id, model) path = "/api/v2/companies/#{companyId}/distancethresholds/#{id}"
|
120
|
+
put(path, model) end
|
121
|
+
end
|
122
|
+
end
|
123
123
|
end
|
@@ -5,30 +5,30 @@ module AvaTax
|
|
5
5
|
|
6
6
|
# Create a new eCommerce token.
|
7
7
|
#
|
8
|
-
# Creates a new eCommerce token.
|
9
|
-
#
|
10
|
-
# This API is used to create a new eCommerce token. An eCommerce token is required in order to launch the CertCapture eCommerce plugin. Create a token for each of your CertCapture customers.
|
11
|
-
#
|
12
|
-
# ### Security Policies
|
13
|
-
#
|
8
|
+
# Creates a new eCommerce token.
|
9
|
+
#
|
10
|
+
# This API is used to create a new eCommerce token. An eCommerce token is required in order to launch the CertCapture eCommerce plugin. Create a token for each of your CertCapture customers.
|
11
|
+
#
|
12
|
+
# ### Security Policies
|
13
|
+
#
|
14
14
|
# * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, ProStoresOperator, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
15
|
-
# @param companyId [Integer] The company ID that will be issued this certificate.
|
16
|
-
# @param model [Object]
|
15
|
+
# @param companyId [Integer] The company ID that will be issued this certificate.
|
16
|
+
# @param model [Object]
|
17
17
|
# @return [Object]
|
18
18
|
def create_e_commerce_token(companyId, model) path = "/api/v2/companies/#{companyId}/ecommercetokens"
|
19
19
|
post(path, model) end
|
20
20
|
|
21
21
|
# Refresh an eCommerce token.
|
22
22
|
#
|
23
|
-
# Refresh an eCommerce token.
|
24
|
-
#
|
25
|
-
# CertCapture eCommerce tokens expire after one hour. This API is used to refresh an eCommerce token that is about to expire. This API can only be used with active tokens. If your token has expired, you must generate a new one.
|
26
|
-
#
|
27
|
-
# ### Security Policies
|
28
|
-
#
|
23
|
+
# Refresh an eCommerce token.
|
24
|
+
#
|
25
|
+
# CertCapture eCommerce tokens expire after one hour. This API is used to refresh an eCommerce token that is about to expire. This API can only be used with active tokens. If your token has expired, you must generate a new one.
|
26
|
+
#
|
27
|
+
# ### Security Policies
|
28
|
+
#
|
29
29
|
# * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, ProStoresOperator, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
30
|
-
# @param companyId [Integer] The company ID that the refreshed certificate belongs to.
|
31
|
-
# @param model [Object]
|
30
|
+
# @param companyId [Integer] The company ID that the refreshed certificate belongs to.
|
31
|
+
# @param model [Object]
|
32
32
|
# @return [FetchResult]
|
33
33
|
def refresh_e_commerce_token(companyId, model) path = "/api/v2/companies/#{companyId}/ecommercetokens"
|
34
34
|
put(path, model) end
|
@@ -1,36 +1,57 @@
|
|
1
|
-
module AvaTax
|
2
|
-
class Client
|
3
|
-
module FilingCalendars
|
4
|
-
|
5
|
-
|
6
|
-
# Add or Edit options
|
7
|
-
#
|
1
|
+
module AvaTax
|
2
|
+
class Client
|
3
|
+
module FilingCalendars
|
4
|
+
|
5
|
+
|
6
|
+
# Add or Edit options
|
7
|
+
#
|
8
8
|
# Returns a list of options for adding tax forms for the company and tax form code specified.
|
9
9
|
# Returns edit options when modifying a filing calendar.
|
10
10
|
# This API is available by invitation only.
|
11
11
|
#
|
12
12
|
# ### Security Policies
|
13
13
|
#
|
14
|
-
# * This API
|
14
|
+
# * This API requires openId bearer token for authentication
|
15
|
+
# * 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.
|
15
16
|
# @param companyId [Integer] The unique ID of the company that owns the filing calendar object
|
16
17
|
# @param model [Object] Cycle Safe Options Request
|
17
|
-
# @return [Object]
|
18
|
-
def cycle_safe_options(companyId, model) path = "/api/v2/companies/#{companyId}/filingcalendars/edit/cycleSafeOptions"
|
19
|
-
post(path, model) end
|
20
|
-
|
21
|
-
# Delete a company return setting
|
22
|
-
#
|
18
|
+
# @return [Object]
|
19
|
+
def cycle_safe_options(companyId, model) path = "/api/v2/companies/#{companyId}/filingcalendars/edit/cycleSafeOptions"
|
20
|
+
post(path, model) end
|
21
|
+
|
22
|
+
# Delete a company return setting
|
23
|
+
#
|
23
24
|
# This API is available by invitation only and only available for users with Compliance access
|
24
25
|
#
|
25
26
|
# ### Security Policies
|
26
27
|
#
|
27
|
-
# * This API requires
|
28
|
+
# * This API requires openId bearer token for authentication
|
29
|
+
# * This API requires one of the following user roles: AccountAdmin, CompanyAdmin, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPTester, FirmAdmin, FirmUser, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
28
30
|
# @param companyId [Integer] The unique ID of the company
|
29
31
|
# @param filingCalendarId [Integer] The unique ID of the filing calendar that will remove setting
|
30
32
|
# @param companyReturnSettingId [Integer] The unique ID of the company return setting that will be deleted from the filing calendar
|
31
|
-
# @return [CompanyReturnSettingModel[]]
|
32
|
-
def delete_company_return_settings(companyId, filingCalendarId, companyReturnSettingId) path = "/api/v2/companies/#{companyId}/filingcalendars/#{filingCalendarId}/setting/#{companyReturnSettingId}"
|
33
|
-
delete(path) end
|
34
|
-
|
35
|
-
|
33
|
+
# @return [CompanyReturnSettingModel[]]
|
34
|
+
def delete_company_return_settings(companyId, filingCalendarId, companyReturnSettingId) path = "/api/v2/companies/#{companyId}/filingcalendars/#{filingCalendarId}/setting/#{companyReturnSettingId}"
|
35
|
+
delete(path) end
|
36
|
+
|
37
|
+
# Retrieve all legacy filing calendars for this company
|
38
|
+
#
|
39
|
+
# This API is available by invitation only.
|
40
|
+
#
|
41
|
+
# ### Security Policies
|
42
|
+
#
|
43
|
+
# * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
44
|
+
# * 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.
|
45
|
+
# @param companyId [Integer] The ID of the company that owns these batches
|
46
|
+
# @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/).<br />*Not filterable:* taxAuthorityId, taxAuthorityName, taxAuthorityType, settings
|
47
|
+
# @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.
|
48
|
+
# @param skip [Integer] If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets.
|
49
|
+
# @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
|
50
|
+
# @param returnCountry [String] A comma separated list of countries
|
51
|
+
# @param returnRegion [String] A comma separated list of regions
|
52
|
+
# @return [FetchResult]
|
53
|
+
def legacy_filing_calendars(companyId, options={}) path = "/api/v2/companies/#{companyId}/filingcalendars/Legacy"
|
54
|
+
get(path, options) end
|
55
|
+
end
|
56
|
+
end
|
36
57
|
end
|
@@ -1,26 +1,28 @@
|
|
1
|
-
module AvaTax
|
2
|
-
class Client
|
3
|
-
module Filings
|
4
|
-
|
5
|
-
|
6
|
-
# Retrieve a filing containing the return and all its accrual returns.
|
7
|
-
#
|
1
|
+
module AvaTax
|
2
|
+
class Client
|
3
|
+
module Filings
|
4
|
+
|
5
|
+
|
6
|
+
# Retrieve a filing containing the return and all its accrual returns.
|
7
|
+
#
|
8
8
|
# ### Security Policies
|
9
9
|
#
|
10
|
-
# * This API requires
|
10
|
+
# * This API requires openId bearer token for authentication
|
11
|
+
# * This API requires one of the following user roles: AccountAdmin, CompanyAdmin, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPTester, FirmAdmin, FirmUser, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
11
12
|
# @param companyId [Integer] The ID of the company that owns these returns
|
12
13
|
# @param filingReturnId [Integer] The ID of the filing return
|
13
|
-
# @return [FetchResult]
|
14
|
-
def get_accrual_filings(companyId, filingReturnId) path = "/api/v2/companies/#{companyId}/filings/accrual/#{filingReturnId}"
|
15
|
-
get(path) end
|
16
|
-
|
17
|
-
# Retrieve a list of filed returns for the specified company in the year and month of a given filing period.
|
18
|
-
#
|
14
|
+
# @return [FetchResult]
|
15
|
+
def get_accrual_filings(companyId, filingReturnId) path = "/api/v2/companies/#{companyId}/filings/accrual/#{filingReturnId}"
|
16
|
+
get(path) end
|
17
|
+
|
18
|
+
# Retrieve a list of filed returns for the specified company in the year and month of a given filing period.
|
19
|
+
#
|
19
20
|
# ### Security Policies
|
20
21
|
#
|
22
|
+
# * This API requires openId bearer token for authentication
|
21
23
|
# * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, ProStoresOperator, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
22
24
|
# * This API is available by invitation only.*Exempt security roles*: ComplianceRootUser, ComplianceAdmin, ComplianceUser, TechnicalSupportAdmin, TechnicalSupportUser, CompanyUser, AccountUser, CompanyAdmin, AccountAdmin.
|
23
|
-
# * 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.
|
25
|
+
# * 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.
|
24
26
|
# @param companyId [Integer] The ID of the company that owns these batches
|
25
27
|
# @param endPeriodMonth [Integer] The month of the period you are trying to retrieve
|
26
28
|
# @param endPeriodYear [Integer] The year of the period you are trying to retrieve
|
@@ -30,9 +32,9 @@ module AvaTax
|
|
30
32
|
# @param region [String] The region of the return(s) you are trying to retrieve
|
31
33
|
# @param filingCalendarId [Integer] The filing calendar id of the return you are trying to retrieve
|
32
34
|
# @param taxformCode [String] The unique tax form code of the form.
|
33
|
-
# @return [FetchResult]
|
34
|
-
def get_filed_returns(companyId, options={}) path = "/api/v2/companies/#{companyId}/filings/returns/filed"
|
35
|
-
get(path, options) end
|
36
|
-
end
|
37
|
-
end
|
35
|
+
# @return [FetchResult]
|
36
|
+
def get_filed_returns(companyId, options={}) path = "/api/v2/companies/#{companyId}/filings/returns/filed"
|
37
|
+
get(path, options) end
|
38
|
+
end
|
39
|
+
end
|
38
40
|
end
|
@@ -1,22 +1,22 @@
|
|
1
|
-
module AvaTax
|
2
|
-
class Client
|
3
|
-
module FirmClientLinkages
|
4
|
-
|
5
|
-
|
6
|
-
# Approves linkage to a firm for a client account
|
7
|
-
#
|
1
|
+
module AvaTax
|
2
|
+
class Client
|
3
|
+
module FirmClientLinkages
|
4
|
+
|
5
|
+
|
6
|
+
# Approves linkage to a firm for a client account
|
7
|
+
#
|
8
8
|
# This API enables the account admin of a client account to approve linkage request by a firm.
|
9
9
|
#
|
10
10
|
# ### Security Policies
|
11
11
|
#
|
12
|
-
# * This API requires one of the following user roles: AccountAdmin, FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
12
|
+
# * This API requires one of the following user roles: AccountAdmin, FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
13
13
|
# @param id [Integer]
|
14
|
-
# @return [Object]
|
15
|
-
def approve_firm_client_linkage(id) path = "/api/v2/firmclientlinkages/#{id}/approve"
|
16
|
-
post(path) end
|
17
|
-
|
18
|
-
# Request a new FirmClient account and create an approved linkage to it
|
19
|
-
#
|
14
|
+
# @return [Object]
|
15
|
+
def approve_firm_client_linkage(id) path = "/api/v2/firmclientlinkages/#{id}/approve"
|
16
|
+
post(path) end
|
17
|
+
|
18
|
+
# Request a new FirmClient account and create an approved linkage to it
|
19
|
+
#
|
20
20
|
# This API is for use by Firms only.
|
21
21
|
#
|
22
22
|
# Avalara allows firms to manage returns for clients without the clients needing to use AvaTax service.
|
@@ -30,95 +30,95 @@ module AvaTax
|
|
30
30
|
#
|
31
31
|
# ### Security Policies
|
32
32
|
#
|
33
|
-
# * This API requires one of the following user roles: FirmAdmin, Registrar, SiteAdmin, SystemAdmin.
|
33
|
+
# * This API requires one of the following user roles: FirmAdmin, Registrar, SiteAdmin, SystemAdmin.
|
34
34
|
# @param model [Object] Information about the account you wish to create.
|
35
|
-
# @return [Object]
|
36
|
-
def create_and_link_new_firm_client_account(model) path = "/api/v2/firmclientlinkages/createandlinkclient"
|
37
|
-
post(path, model) end
|
38
|
-
|
39
|
-
# Links a firm account with the client account
|
40
|
-
#
|
35
|
+
# @return [Object]
|
36
|
+
def create_and_link_new_firm_client_account(model) path = "/api/v2/firmclientlinkages/createandlinkclient"
|
37
|
+
post(path, model) end
|
38
|
+
|
39
|
+
# Links a firm account with the client account
|
40
|
+
#
|
41
41
|
# This API enables the firm admins/firm users to request the linkage of a firm account and a client account.
|
42
42
|
#
|
43
43
|
# ### Security Policies
|
44
44
|
#
|
45
|
-
# * This API requires one of the following user roles: FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
45
|
+
# * This API requires one of the following user roles: FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
46
46
|
# @param model [Object] FirmClientLinkageInputModel
|
47
|
-
# @return [Object]
|
48
|
-
def create_firm_client_linkage(model) path = "/api/v2/firmclientlinkages"
|
49
|
-
post(path, model) end
|
50
|
-
|
51
|
-
# Delete a linkage
|
52
|
-
#
|
47
|
+
# @return [Object]
|
48
|
+
def create_firm_client_linkage(model) path = "/api/v2/firmclientlinkages"
|
49
|
+
post(path, model) end
|
50
|
+
|
51
|
+
# Delete a linkage
|
52
|
+
#
|
53
53
|
# This API marks a linkage between a firm and client as deleted.
|
54
54
|
#
|
55
55
|
# ### Security Policies
|
56
56
|
#
|
57
|
-
# * This API requires one of the following user roles: FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
57
|
+
# * This API requires one of the following user roles: FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
58
58
|
# @param id [Integer]
|
59
|
-
# @return [ErrorDetail[]]
|
60
|
-
def delete_firm_client_linkage(id) path = "/api/v2/firmclientlinkages/#{id}"
|
61
|
-
delete(path) end
|
62
|
-
|
63
|
-
# Get linkage between a firm and client by id
|
64
|
-
#
|
59
|
+
# @return [ErrorDetail[]]
|
60
|
+
def delete_firm_client_linkage(id) path = "/api/v2/firmclientlinkages/#{id}"
|
61
|
+
delete(path) end
|
62
|
+
|
63
|
+
# Get linkage between a firm and client by id
|
64
|
+
#
|
65
65
|
# This API enables the firm admins/firm users to request the linkage of a firm account and a client account.
|
66
66
|
#
|
67
67
|
# ### Security Policies
|
68
68
|
#
|
69
|
-
# * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
69
|
+
# * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
70
70
|
# @param id [Integer]
|
71
|
-
# @return [Object]
|
72
|
-
def get_firm_client_linkage(id) path = "/api/v2/firmclientlinkages/#{id}"
|
73
|
-
get(path) end
|
74
|
-
|
75
|
-
# List client linkages for a firm or client
|
76
|
-
#
|
71
|
+
# @return [Object]
|
72
|
+
def get_firm_client_linkage(id) path = "/api/v2/firmclientlinkages/#{id}"
|
73
|
+
get(path) end
|
74
|
+
|
75
|
+
# List client linkages for a firm or client
|
76
|
+
#
|
77
77
|
# This API enables the firm or account users to request the associated linkages to the account.
|
78
78
|
#
|
79
79
|
# ### Security Policies
|
80
80
|
#
|
81
|
-
# * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
81
|
+
# * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
82
82
|
# @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/).<br />*Not filterable:* firmAccountName, clientAccountName
|
83
|
-
# @return [FetchResult]
|
84
|
-
def list_firm_client_linkage(options={}) path = "/api/v2/firmclientlinkages"
|
85
|
-
get(path, options) end
|
86
|
-
|
87
|
-
# Rejects linkage to a firm for a client account
|
88
|
-
#
|
83
|
+
# @return [FetchResult]
|
84
|
+
def list_firm_client_linkage(options={}) path = "/api/v2/firmclientlinkages"
|
85
|
+
get(path, options) end
|
86
|
+
|
87
|
+
# Rejects linkage to a firm for a client account
|
88
|
+
#
|
89
89
|
# This API enables the account admin of a client account to reject linkage request by a firm.
|
90
90
|
#
|
91
91
|
# ### Security Policies
|
92
92
|
#
|
93
|
-
# * This API requires one of the following user roles: AccountAdmin, FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
93
|
+
# * This API requires one of the following user roles: AccountAdmin, FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
94
94
|
# @param id [Integer]
|
95
|
-
# @return [Object]
|
96
|
-
def reject_firm_client_linkage(id) path = "/api/v2/firmclientlinkages/#{id}/reject"
|
97
|
-
post(path) end
|
98
|
-
|
99
|
-
# Reset linkage status between a client and firm back to requested
|
100
|
-
#
|
95
|
+
# @return [Object]
|
96
|
+
def reject_firm_client_linkage(id) path = "/api/v2/firmclientlinkages/#{id}/reject"
|
97
|
+
post(path) end
|
98
|
+
|
99
|
+
# Reset linkage status between a client and firm back to requested
|
100
|
+
#
|
101
101
|
# This API enables the firm admin of a client account to reset a previously created linkage request by a firm.
|
102
102
|
#
|
103
103
|
# ### Security Policies
|
104
104
|
#
|
105
|
-
# * This API requires one of the following user roles: FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
105
|
+
# * This API requires one of the following user roles: FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
106
106
|
# @param id [Integer]
|
107
|
-
# @return [Object]
|
108
|
-
def reset_firm_client_linkage(id) path = "/api/v2/firmclientlinkages/#{id}/reset"
|
109
|
-
post(path) end
|
110
|
-
|
111
|
-
# Revokes previously approved linkage to a firm for a client account
|
112
|
-
#
|
107
|
+
# @return [Object]
|
108
|
+
def reset_firm_client_linkage(id) path = "/api/v2/firmclientlinkages/#{id}/reset"
|
109
|
+
post(path) end
|
110
|
+
|
111
|
+
# Revokes previously approved linkage to a firm for a client account
|
112
|
+
#
|
113
113
|
# This API enables the account admin of a client account to revoke a previously approved linkage request by a firm.
|
114
114
|
#
|
115
115
|
# ### Security Policies
|
116
116
|
#
|
117
|
-
# * This API requires one of the following user roles: AccountAdmin, FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
117
|
+
# * This API requires one of the following user roles: AccountAdmin, FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
118
118
|
# @param id [Integer]
|
119
|
-
# @return [Object]
|
120
|
-
def revoke_firm_client_linkage(id) path = "/api/v2/firmclientlinkages/#{id}/revoke"
|
121
|
-
post(path) end
|
122
|
-
end
|
123
|
-
end
|
119
|
+
# @return [Object]
|
120
|
+
def revoke_firm_client_linkage(id) path = "/api/v2/firmclientlinkages/#{id}/revoke"
|
121
|
+
post(path) end
|
122
|
+
end
|
123
|
+
end
|
124
124
|
end
|
data/lib/avatax/client/free.rb
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
module AvaTax
|
2
|
-
class Client
|
3
|
-
module Free
|
4
|
-
|
5
|
-
|
6
|
-
# FREE API - Request a free trial of AvaTax
|
7
|
-
#
|
1
|
+
module AvaTax
|
2
|
+
class Client
|
3
|
+
module Free
|
4
|
+
|
5
|
+
|
6
|
+
# FREE API - Request a free trial of AvaTax
|
7
|
+
#
|
8
8
|
# Call this API to obtain a free AvaTax account.
|
9
9
|
#
|
10
10
|
# This API is free to use. No authentication credentials are required to call this API. You must read and
|
@@ -18,11 +18,11 @@ module AvaTax
|
|
18
18
|
#
|
19
19
|
# ### Security Policies
|
20
20
|
#
|
21
|
-
# * This API may be called without providing authentication credentials.
|
21
|
+
# * This API may be called without providing authentication credentials.
|
22
22
|
# @param model [Object] Required information to provision a free trial account.
|
23
|
-
# @return [Object]
|
24
|
-
def request_free_trial(model) path = "/api/v2/accounts/freetrials/request"
|
25
|
-
post(path, model) end
|
26
|
-
end
|
27
|
-
end
|
23
|
+
# @return [Object]
|
24
|
+
def request_free_trial(model) path = "/api/v2/accounts/freetrials/request"
|
25
|
+
post(path, model) end
|
26
|
+
end
|
27
|
+
end
|
28
28
|
end
|
@@ -1,10 +1,10 @@
|
|
1
|
-
module AvaTax
|
2
|
-
class Client
|
3
|
-
module FundingRequests
|
4
|
-
|
5
|
-
|
6
|
-
# Request the javascript for a funding setup widget
|
7
|
-
#
|
1
|
+
module AvaTax
|
2
|
+
class Client
|
3
|
+
module FundingRequests
|
4
|
+
|
5
|
+
|
6
|
+
# Request the javascript for a funding setup widget
|
7
|
+
#
|
8
8
|
# This API is available by invitation only.
|
9
9
|
# Companies that use the Avalara Managed Returns or the SST Certified Service Provider services are
|
10
10
|
# required to setup their funding configuration before Avalara can begin filing tax returns on their
|
@@ -21,14 +21,14 @@ module AvaTax
|
|
21
21
|
# ### Security Policies
|
22
22
|
#
|
23
23
|
# * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, ProStoresOperator, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
|
24
|
-
# * 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.
|
24
|
+
# * 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.
|
25
25
|
# @param id [Integer] The unique ID number of this funding request
|
26
|
-
# @return [Object]
|
27
|
-
def activate_funding_request(id) path = "/api/v2/fundingrequests/#{id}/widget"
|
28
|
-
get(path) end
|
29
|
-
|
30
|
-
# Retrieve status about a funding setup request
|
31
|
-
#
|
26
|
+
# @return [Object]
|
27
|
+
def activate_funding_request(id) path = "/api/v2/fundingrequests/#{id}/widget"
|
28
|
+
get(path) end
|
29
|
+
|
30
|
+
# Retrieve status about a funding setup request
|
31
|
+
#
|
32
32
|
# This API is available by invitation only.
|
33
33
|
# Companies that use the Avalara Managed Returns or the SST Certified Service Provider services are
|
34
34
|
# required to setup their funding configuration before Avalara can begin filing tax returns on their
|
@@ -43,11 +43,11 @@ module AvaTax
|
|
43
43
|
# ### Security Policies
|
44
44
|
#
|
45
45
|
# * This API requires one of the following user roles: AccountAdmin, CompanyAdmin, CSPTester, FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
46
|
-
# * 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.
|
46
|
+
# * 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.
|
47
47
|
# @param id [Integer] The unique ID number of this funding request
|
48
|
-
# @return [Object]
|
49
|
-
def funding_request_status(id) path = "/api/v2/fundingrequests/#{id}"
|
50
|
-
get(path) end
|
51
|
-
end
|
52
|
-
end
|
48
|
+
# @return [Object]
|
49
|
+
def funding_request_status(id) path = "/api/v2/fundingrequests/#{id}"
|
50
|
+
get(path) end
|
51
|
+
end
|
52
|
+
end
|
53
53
|
end
|