Documents
Webhooks list
- Orders
- Order Statuses
- Products
- Availabilities
- Labels
- Categories
- Customers
- Shipments
- Payments
- Pricelists
- Languages
- Documents
Invoices.create
invoices(string) - array of objects with documentsinvoice_number(string) - document numbertype(string) - document type (Invoiceinvoice, Credit NotecreditNote, Receiptreceipt)creation_time(datetime) - creation time
project_name(string) - Name of the e-shop
{} Request JSON
{
"invoices": [
{
"invoice_number": "",
"type": "",
"creation_time": "",
}
],
"project_name": ""
}
Invoice.update
invoices(string) - array of objects with documentsinvoice_number(string) - document numbertype(string) - document type (Invoiceinvoice, Credit NotecreditNote, Receiptreceipt)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": ""
}
Invoice.delete
invoices(string) - array of objects with documentsinvoice_number(string) - document numbertype(string) - document type (Invoiceinvoice, Credit NotecreditNote, Receiptreceipt)deletion_time(datetime) - deletion time
project_name(string) - Name of the e-shop
{} Request JSON
{
"invoices": [
{
"invoice_number": "",
"type": "",
"deletion_time": "",
}
],
"project_name": ""
}