[PA] Invoice Payload Example

{
    "e_invoice": true,
    "currency": "USD",
    "supplier_company_id": "{{company_id}}",
    "invoice_date": "2026-01-01",
    "invoice_due_date": "2026-01-31",
    "document_type": "invoice",
    "invoice_type": "debit",
    "invoice_external_id": "{{invoice_external_id}}",
    "buyer": {
        "company": {
            "name": "Buyer Company",
            "legal_name": "Buyer Company Corp.",
            "email": "[email protected]",
            "type": "business",
            "address": {
                "address_line_1": "Ciudad de Panama",
                "city": "Ciudad de Panama",
                "state": "PA-8",
                "country": "PA"
            },
            "tax_registrations": [
                {
                    "number": "1234567890",
                    // The RUC and the DV (check digit) must be included directly concatenated, e.g. if the RUC is 12345678 and the DV is 90, send 1234567890
                    "type": "RUC",
                    "status": "active",
                    "location": "PA",
                    "level": "country"
                }
            ]
        }
    },
    "items": [
        {
            "name": "Generic service description for the applicable period",
            "amount": 100.00,
            "quantity": 1,
            "item_external_id": "{{item_external_id}}",
            "taxes": [
                {
                    "name": "ITBMS",
                    "type": "VAT",
                    "rate": 0.07,
                    "rate_type": "percentage",
                    "amount": 7.00
                },
                {
                    "name": "ITBMS",
                    "type": "VAT",
                    "rate": 0.07,
                    "rate_type": "percentage",
                    "withholding_type": "withholding",
                    "amount": 7.00
                }
            ]
        }
    ]
}

Did this page help you?