POST
Get Delivery Notes (Paginated)
Retrieves a paginated list of delivery notes
/api/delivery-notes/listRequest Body
modelobject(required) - Pagination settings (pageNumber, pageSize)customerIdstring(optional) - Filter by customer ID{
"model": {
"pageSize": 10,
"pageNumber": 1
}
}Responses
200Delivery notes retrieved successfully
{
"data": {
"data": [
{
"id": "a326fe02-49f5-4053-b8e7-98b6ac115f95",
"number": "TM-26311",
"currency": "ILS",
"totalPrice": "1064.00",
"worksNames": "t1, t1, t1, t1, t1, t1",
"createdDate": "02-02-2026 21:39",
"customerName": "mmm2",
"documentType": 2,
"documentStatus": 7,
"statusTitleText": "DeliveryNote.Closed",
"totalPriceWithoutVat": "902.00"
}
],
"totalItems": 80,
"documentStatisticsList": [
{
"key": "totalPrice",
"value": "53.6k"
}
]
},
"success": true
}Example Request
curl -X POST \
https://api.gomake.net/api/delivery-notes/list \
-H "Content-Type: application/json" \
-H "X-Client-Id: your-client-id-here" \
-H "X-Client-Secret: your-client-secret-here" \
-d '{
"model": {
"pageSize": 10,
"pageNumber": 1
}
}'Note: Replace your-client-id-here and your-client-secret-here with your actual credentials. See the Authentication page for more details.
