Skip to content

vtex-apps/b2b-cnae

Repository files navigation

VTEX B2B-CNAE VALIDATION

Allows integration with the SERPRO service, making it possible so the store can inform an CNPJ and receive the CNAE information about it. In addition to that, is possible to configure an allowed CNAE range and the api will inform you if at least one of the CNAES for the CNPJ is allowed.

Configuration

  1. Install this app to your store with:
vtex install [email protected]
  1. Navigate to the configuration portion of the app in /admin/cnae and set the SEPRO credentials (IMPORTANT:This is a paid service, contracting and mantaining is the client's responsibility), start of the allowed CNAE range and the trade policy Id you wish to be returned along with the CNAE information in the API

  2. Once configured, the api can be accessed via Graphql with an query like the following

query ValidateCNPJ($cnpj: String){
  validateCnpj(cnpj:$cnpj){
    allowed
    tradePolicyId
    acceptedCnae{
      code
      description      
    }
	} 
} 

Via graphql is also possible to obtain more data about the company, once you get the cnpj, with a request like this:

query getCompanyInformation($cnpj: String){
  getCompanyInformation(cnpj:$cnpj) {
    ni
    oppeningDate
    companyName
    tradeName
    specialSituation
    establishmentType
    email
    socialCapital
    size
  }
} 
  1. The CNAE information can also be accessed via http request in the following url
https://{{acountName}}.{{environment}}.com/v1/validateCnae/{{cnpj}}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published