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.
- Install this app to your store with:
vtex install [email protected]
-
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 -
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
}
}
- The CNAE information can also be accessed via http request in the following url
https://{{acountName}}.{{environment}}.com/v1/validateCnae/{{cnpj}}