Module: AvaTax::Client::CertExpressInvites
- Included in:
- AvaTax::Client
- Defined in:
- lib/avatax/client/certexpressinvites.rb
Instance Method Summary collapse
-
#create_cert_express_invitation(companyId, customerCode, model) ⇒ CertExpressInvitationStatusModel[]
Create a CertExpress invitation.
-
#get_cert_express_invitation(companyId, customerCode, id, options = {}) ⇒ Object
Retrieve a single CertExpress invitation.
-
#list_cert_express_invitations(companyId, options = {}) ⇒ FetchResult
List CertExpress invitations.
Instance Method Details
#create_cert_express_invitation(companyId, customerCode, model) ⇒ CertExpressInvitationStatusModel[]
Create a CertExpress invitation
Creates an invitation for a customer to self-report certificates using the CertExpress website.
This invitation is delivered by your choice of method, or you can present a hyperlink to the user directly in your connector. Your customer will be redirected to https://app.certexpress.com/ where they can follow a step-by-step guide to enter information about their exemption certificates. The certificates entered will be recorded and automatically linked to their customer record.
The CertExpress website is available for customers to use at any time. Using CertExpress with this API will ensure that your certificates are automatically linked correctly into your company so that they can be used for tax exemptions.
Before you can use any exemption certificates endpoints, you must set up your company for exemption certificate data storage.
Companies that do not have this storage system set up will see CertCaptureNotConfiguredError
when they call exemption
certificate related APIs. To check if this is set up for a company, call GetCertificateSetup
. To request setup of exemption
certificate storage for this company, call RequestCertificateSetup
.
Security Policies
- This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, CSPTester, SSTAdmin, TechnicalSupportAdmin.
- This API depends on the following active services:Required (all): AvaTaxPro, ECMEssentials, ECMPro, ECMPremium, VEMPro, VEMPremium, ECMProComms, ECMPremiumComms. Swagger Name: AvaTaxClient
33 34 |
# File 'lib/avatax/client/certexpressinvites.rb', line 33 def create_cert_express_invitation(companyId, customerCode, model) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/certexpressinvites" post(path, model, {}, AvaTax::VERSION) end |
#get_cert_express_invitation(companyId, customerCode, id, options = {}) ⇒ Object
Retrieve a single CertExpress invitation
Retrieve an existing CertExpress invitation sent to a customer.
A CertExpression invitation allows a customer to follow a helpful step-by-step guide to provide information about their certificates. This step by step guide allows the customer to complete and upload the full certificate in a convenient, friendly web browser experience. When the customer completes their certificates, they will automatically be recorded to your company and linked to the customer record.
The CertExpress website is available for customers to use at any time. Using CertExpress with this API will ensure that your certificates are automatically linked correctly into your company so that they can be used for tax exemptions.
Before you can use any exemption certificates endpoints, you must set up your company for exemption certificate data storage.
Companies that do not have this storage system set up will see CertCaptureNotConfiguredError
when they call exemption
certificate related APIs. To check if this is set up for a company, call GetCertificateSetup
. To request setup of exemption
certificate storage for this company, call RequestCertificateSetup
.
Security Policies
- This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, CSPTester, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
- This API depends on the following active services:Required (all): AvaTaxPro, ECMEssentials, ECMPro, ECMPremium, VEMPro, VEMPremium, ECMProComms, ECMPremiumComms. Swagger Name: AvaTaxClient
64 65 |
# File 'lib/avatax/client/certexpressinvites.rb', line 64 def get_cert_express_invitation(companyId, customerCode, id, ={}) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/certexpressinvites/#{id}" get(path, , AvaTax::VERSION) end |
#list_cert_express_invitations(companyId, options = {}) ⇒ FetchResult
List CertExpress invitations
Retrieve CertExpress invitations sent by this company.
A CertExpression invitation allows a customer to follow a helpful step-by-step guide to provide information about their certificates. This step by step guide allows the customer to complete and upload the full certificate in a convenient, friendly web browser experience. When the customer completes their certificates, they will automatically be recorded to your company and linked to the customer record.
The CertExpress website is available for customers to use at any time. Using CertExpress with this API will ensure that your certificates are automatically linked correctly into your company so that they can be used for tax exemptions.
Before you can use any exemption certificates endpoints, you must set up your company for exemption certificate data storage.
Companies that do not have this storage system set up will see CertCaptureNotConfiguredError
when they call exemption
certificate related APIs. To check if this is set up for a company, call GetCertificateSetup
. To request setup of exemption
certificate storage for this company, call RequestCertificateSetup
.
Security Policies
- This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, CSPTester, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
- This API depends on the following active services:Required (all): AvaTaxPro, ECMEssentials, ECMPro, ECMPremium, VEMPro, VEMPremium, ECMProComms, ECMPremiumComms. Swagger Name: AvaTaxClient
97 98 |
# File 'lib/avatax/client/certexpressinvites.rb', line 97 def list_cert_express_invitations(companyId, ={}) path = "/api/v2/companies/#{companyId}/certexpressinvites" get(path, , AvaTax::VERSION) end |