The delivery note data model describes a delivery note document. A delivery note is used to confirm the delivery of goods or services. The delivery note data model includes attributes such as the delivery note number, delivery date, order number, and parties involved.
The delivery note data model includes the following attributes:
| Attribute | Type | Description |
|---|---|---|
filename |
string | The original filename of the delivery note document. |
document_number |
string | The delivery note number. |
document_date |
date | The delivery note date (RFC 3339 format). |
sending_party |
PartyData | The sending party. |
receiving_party |
PartyData | The receiving party. |
order_number |
string | The order number. |
delivery_date |
date | Date of delivery of goods/services (RFC 3339 format). |
line_items |
array | Array of line items (positions). |
direction |
string | Direction of the delivery note (incoming or outgoing). Defaults to incoming. |
The delivery note data model can include an array of line items. Each line item is an object that includes the following attributes:
| Attribute | Type | Description |
|---|---|---|
| description | string | Description of the line item. |
| quantity | number | Quantity of the line item. |
| unit_price_net | number | Net price of the line item (excluding tax). |
| tax_rate | number | Tax rate in percent. |
| tax_amount | number | Tax amount for the line item. |
| total_price_net | number | Total net price for the line item. |
| total_price_gross | number | Total gross price for the line item. |
| order_number | string | Order number for the line item. |
Below is an example of the output you can expect from the Delivery Note Data Model in fetchdocs:
If you need help or want to receive additional attributes, please contact the fetchdocs support team. They're happy to assist you.