Catalog of names of the CFDI

Ruby
PHP
Javascript
.Net >= 4.5
Java
Phyton

The catalog of CFDI names is an internal Facturama catalog and allows you to select the descriptive "name" that the PDF will have,
This name is shown with red letters on the top of the receipt.

facturama is an instance of FacturamaAPI consult the guide

Consult


    lst_name_ids = facturama.catalog.name_ids

$facturama is an instance of FacturamaAPI consult the guide

Consult

    
    $lstNameIds = $facturama->get('catalogs/NameIds');

Facturamais an instance of FacturamaAPI consult the guide

Consult


    Facturama.Catalogs.NameIds("POAJ870619123", function (result) {

        console.log("Lista de usos del cfdi: ", result );

    }, function (error) {
        if (error && error.responseJSON) {
            console.log("errores", error.responseJSON);
        }
    });

facturamais an instance of FacturamaAPI consult the guide

Consult


    List<NameCfdi> lstNameIds = facturama.Catalogs().NameIds();        

facturama is an instance of FacturamaAPI consult the guide

Consult


    var lstNameIds = facturama.Catalogs.NameIds;

Consult


    self.client._credentials = ('username', 'password')
    lst_name_ids = self.client.NameIdsCatalog.query()