Module: AvaTax::Client::Registrar
- Included in:
- AvaTax::Client
- Defined in:
- lib/avatax/client/registrar.rb
Instance Method Summary collapse
-
#create_account(model) ⇒ AccountModel[]
Create a new account.
-
#create_notifications(model) ⇒ NotificationModel[]
Create new notifications.
-
#create_subscriptions(accountId, model) ⇒ SubscriptionModel[]
Create a new subscription.
-
#delete_account(id) ⇒ ErrorDetail[]
Delete a single account.
-
#delete_notification(id) ⇒ ErrorDetail[]
Delete a single notification.
-
#delete_subscription(accountId, id) ⇒ ErrorDetail[]
Delete a single subscription.
-
#list_service_types(options = {}) ⇒ FetchResult
Retrieve the full list of Avalara-supported subscription (ServiceTypes).
-
#reset_password(userId, model, options = {}) ⇒ String
Reset a user's password programmatically.
-
#update_account(id, model) ⇒ Object
Update a single account.
-
#update_notification(id, model) ⇒ Object
Update a single notification.
-
#update_subscription(accountId, id, model) ⇒ Object
Update a single subscription.
Instance Method Details
#create_account(model) ⇒ AccountModel[]
Create a new account
For Registrar Use Only
This API is for use by Avalara Registrar administrative users only.
Create a single new account object. When creating an account object you may attach subscriptions and users as part of the 'Create' call.
Security Policies
- This API requires one of the following user roles: BatchServiceAdmin, FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin. Swagger Name: AvaTaxClient
20 21 |
# File 'lib/avatax/client/registrar.rb', line 20 def create_account(model) path = "/api/v2/accounts" post(path, model, {}, AvaTax::VERSION) end |
#create_notifications(model) ⇒ NotificationModel[]
Create new notifications.
This API is available by invitation only.
Create a single notification.
A notification is a message from Avalara that may have relevance to your business. You may want to regularly review notifications and then dismiss them when you are certain that you have addressed any relevant concerns raised by this notification.
A Global notification is a message which is directed to all the accounts and is set to expire within a certain time and cannot be dismissed by the user. Make accountId and companyId null to create a global notification.
An example of a notification would be a message about new software, or a change to AvaTax that may affect you, or a potential issue with your company's tax profile.
Security Policies
- This API requires one of the following user roles: BatchServiceAdmin, FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
- This API is available by invitation only. To request access to this feature, please speak to a business development manager and request access to [NotificationsAPI:Create]. Swagger Name: AvaTaxClient
46 47 |
# File 'lib/avatax/client/registrar.rb', line 46 def create_notifications(model) path = "/api/v2/notifications" post(path, model, {}, AvaTax::VERSION) end |
#create_subscriptions(accountId, model) ⇒ SubscriptionModel[]
Create a new subscription
This API is for use by Avalara Registrar administrative users only.
Create one or more new 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.
Security Policies
- This API requires one of the following user roles: BatchServiceAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin. Swagger Name: AvaTaxClient
64 65 |
# File 'lib/avatax/client/registrar.rb', line 64 def create_subscriptions(accountId, model) path = "/api/v2/accounts/#{accountId}/subscriptions" post(path, model, {}, AvaTax::VERSION) end |
#delete_account(id) ⇒ ErrorDetail[]
Delete a single account
For Registrar Use Only
This API is for use by Avalara Registrar administrative users only.
Delete an account. Deleting an account will delete all companies, all account level users and license keys attached to this account.
Security Policies
- This API requires the user role SystemAdmin. Swagger Name: AvaTaxClient
81 82 |
# File 'lib/avatax/client/registrar.rb', line 81 def delete_account(id) path = "/api/v2/accounts/#{id}" delete(path, {}, AvaTax::VERSION) end |
#delete_notification(id) ⇒ ErrorDetail[]
Delete a single notification.
This API is available by invitation only.
Delete the existing notification identified by this URL.
A notification is a message from Avalara that may have relevance to your business. You may want to regularly review notifications and then dismiss them when you are certain that you have addressed any relevant concerns raised by this notification.
An example of a notification would be a message about new software, or a change to AvaTax that may affect you, or a potential issue with your company's tax profile.
Security Policies
- This API requires one of the following user roles: BatchServiceAdmin, FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
- This API is available by invitation only. To request access to this feature, please speak to a business development manager and request access to [NotificationsAPI:Create]. Swagger Name: AvaTaxClient
104 105 |
# File 'lib/avatax/client/registrar.rb', line 104 def delete_notification(id) path = "/api/v2/notifications/#{id}" delete(path, {}, AvaTax::VERSION) end |
#delete_subscription(accountId, id) ⇒ ErrorDetail[]
Delete a single subscription
For Registrar Use Only
This API is for use by Avalara Registrar administrative users only.
Mark the existing account identified by this URL as deleted.
Security Policies
- This API requires one of the following user roles: BatchServiceAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin. Swagger Name: AvaTaxClient
121 122 |
# File 'lib/avatax/client/registrar.rb', line 121 def delete_subscription(accountId, id) path = "/api/v2/accounts/#{accountId}/subscriptions/#{id}" delete(path, {}, AvaTax::VERSION) end |
#list_service_types(options = {}) ⇒ FetchResult
Retrieve the full list of Avalara-supported subscription (ServiceTypes)
For Registrar Use Only This API is for use by Avalara Registrar administrative users only.
Returns the full list of Avalara-supported subscription types. This API is intended to be useful for identifying which features you have added to your account. You may always contact Avalara's sales department for information on available products or services. You cannot change your subscriptions/service directly through the API.
Security Policies
- This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser. Swagger Name: AvaTaxClient
143 144 |
# File 'lib/avatax/client/registrar.rb', line 143 def list_service_types(={}) path = "/api/v2/servicetypes/servicetypes" get(path, , AvaTax::VERSION) end |
#reset_password(userId, model, options = {}) ⇒ String
Reset a user's password programmatically
For Registrar Use Only
This API is for use by Avalara Registrar administrative users only.
Allows a system admin to reset the password for a specific user via the API. This API is only available for Avalara Registrar Admins, and can be used to reset the password of any user based on internal Avalara business processes.
Security Policies
- This API requires one of the following user roles: AccountAdmin, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPTester, FirmAdmin, FirmUser, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
- This API is available to Avalara system-level (registrar-level) users only. Swagger Name: AvaTaxClient
164 165 |
# File 'lib/avatax/client/registrar.rb', line 164 def reset_password(userId, model, ={}) path = "/api/v2/passwords/#{userId}/reset" post(path, model, , AvaTax::VERSION) end |
#update_account(id, model) ⇒ Object
Update a single account
For Registrar Use Only
This API is for use by Avalara Registrar administrative users only.
Replace an existing account object with an updated account object.
Security Policies
- This API requires one of the following user roles: BatchServiceAdmin, FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin. Swagger Name: AvaTaxClient
181 182 |
# File 'lib/avatax/client/registrar.rb', line 181 def update_account(id, model) path = "/api/v2/accounts/#{id}" put(path, model, {}, AvaTax::VERSION) end |
#update_notification(id, model) ⇒ Object
Update a single notification.
This API is available by invitation only.
Replaces the notification identified by this URL with a new notification.
A notification is a message from Avalara that may have relevance to your business. You may want to regularly review notifications and then dismiss them when you are certain that you have addressed any relevant concerns raised by this notification.
An example of a notification would be a message about new software, or a change to AvaTax that may affect you, or a potential issue with your company's tax profile.
Security Policies
- This API requires one of the following user roles: BatchServiceAdmin, FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
- This API is available by invitation only. To request access to this feature, please speak to a business development manager and request access to [NotificationsAPI:Create]. Swagger Name: AvaTaxClient
205 206 |
# File 'lib/avatax/client/registrar.rb', line 205 def update_notification(id, model) path = "/api/v2/notifications/#{id}" put(path, model, {}, AvaTax::VERSION) end |
#update_subscription(accountId, id, model) ⇒ Object
Update a single subscription
For Registrar Use Only
This API is for use by Avalara Registrar administrative users only.
Replace the existing subscription object at this URL with an updated object. 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. All data from the existing object will be replaced with data in the object you PUT. To set a field's value to null, you may either set its value to null or omit that field from the object you post.
Security Policies
- This API requires one of the following user roles: BatchServiceAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin. Swagger Name: AvaTaxClient
227 228 |
# File 'lib/avatax/client/registrar.rb', line 227 def update_subscription(accountId, id, model) path = "/api/v2/accounts/#{accountId}/subscriptions/#{id}" put(path, model, {}, AvaTax::VERSION) end |