Dokumenty

Postman collection

  • invoices (string) - array of objects with documents
    • invoice_number (string) - document number
    • type (string) - document type (Invoice invoice, Credit Note creditNote, Receipt receipt)
    • creation_time (datetime) - creation time
  • project_name (string) - Name of the e-shop
{} Request JSON

{
    "invoices": [
        {
            "invoice_number": "",
            "type": "",
            "creation_time": "",
        }
    ],
     "project_name": ""
} 

  • invoices (string) - array of objects with documents
    • invoice_number (string) - document number
    • type (string) - document type (Invoice invoice, Credit Note creditNote, Receipt receipt)
    • last_update_time (datetime) - time of change
  • project_name (string) - Name of the e-shop
{} Request JSON

{
    "invoices": [
        {
            "invoice_number": "",
            "type": "",
            "last_update_time": "",
        }
    ],
     "project_name": ""
}  

  • invoices (string) - array of objects with documents
    • invoice_number (string) - document number
    • type (string) - document type (Invoice invoice, Credit Note creditNote, Receipt receipt)
    • deletion_time (datetime) - deletion time
  • project_name (string) - Name of the e-shop
{} Request JSON

{
    "invoices": [
        {
            "invoice_number": "",
            "type": "",
            "deletion_time": "",
        }
    ],
     "project_name": ""
}  
Next article
Orders