ekoseoglu/php-parasut-api-v4

e-fatura resmileştirme adımındaki eksik bilgiler

algkmn opened this issue · 1 comments

e-fatura keserken 2 bilgiye daha ihtiyaç var. "Gönderim senaryosu" ve "Alıcının e-Fatura gelen kutusu"

$eInvoiceData = [
        "data" => [
            "type" => "e_invoices",
            "attributes" => [
                'scenario' => 'basic', // basic veya commercial
                'to' => '' // $checkVKNType->data[0]->attributes->e_invoice_address 
            ],
            "relationships" => [
                "invoice" => [
                    "data" => [
                        "id" => $invoice_id, //invoice_id
                        "type" => "sales_invoices"
                    ]
                ]
            ]
        ]
    ];

Teşekkürler, eksik olan e-fatura parametresi dökümantasyona eklendi.