Warehouse Outbound Receipts
List warehouse outbound receipts
Returns a paginated list of warehouse outbound receipts. The endpoint supports filtering by warehouse, client, and receipt number.
GET
/
warehouse-outbound-receipts
List warehouse outbound receipts
curl --request GET \
--url https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 951,
"uuid": "3f4c9fdd-6f9b-42c9-8c4b-a9d3a3435cf4",
"number": "OUT-2026-0001",
"webDokladUrl": "https://app.fintoro.sk/web-doklad/company/warehouse-outbound-receipt/uuid",
"pdfDownloadUrl": "https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts/951/pdf",
"company": {
"name": "Fintoro s.r.o.",
"subjectId": "12345678",
"legalForm": "Limited liability company",
"taxId": "2020123456",
"vatId": "SK2020123456",
"vatPayerTypeId": 4,
"country": "Slovakia",
"city": "Bratislava",
"street": "Main Street 1",
"zip": "81101",
"registrationCourt": "City Court Bratislava III",
"registrationNumber": "12345/B",
"email": "support@fintoro.sk",
"phone": "+421900000000",
"web": "https://fintoro.sk"
},
"warehouse": {
"id": 301,
"name": "Main warehouse",
"code": "MAIN-WH",
"inboundNumericalSeriesPattern": "INB-(YY)-(CCCC)",
"inboundNumericalSeriesNextNumber": 12,
"outboundNumericalSeriesPattern": "OUT-(YY)-(CCCC)",
"outboundNumericalSeriesNextNumber": 8
},
"clientId": 101,
"client": {
"name": "Acme s.r.o.",
"type": "company",
"subjectId": "12345678",
"taxId": "2020123456",
"vatId": "SK2020123456",
"isVatPayer": true,
"email": "billing@acme.test",
"street": "Main Street 1",
"city": "Bratislava",
"zip": "81101",
"countryId": 703,
"country": {
"id": 703,
"name": "Slovakia",
"code": "SK",
"eu": true
},
"hasDeliveryAddress": true,
"deliveryStreet": "Warehouse 9",
"deliveryCity": "Kosice",
"deliveryZip": "04001",
"deliveryCountryId": 703,
"deliveryCountry": {
"id": 703,
"name": "Slovakia",
"code": "SK",
"eu": true
}
},
"currency": {
"id": 1,
"symbol": "EUR",
"name": "Euro",
"mark": "€"
},
"language": {
"id": 1,
"name": "Slovak",
"code": "sk"
},
"issueDate": "2026-03-11",
"note": "Manual stock issue",
"hasVat": true,
"total": 30,
"totalWithVat": 36,
"items": [
{
"id": 7001,
"priceListItemId": 701,
"priceListItemName": "Installation kit",
"priceListItemWarehouseCode": "SKU-001",
"unitName": "pcs",
"quantity": 3,
"unitPrice": 15,
"unitPriceWithVat": 18,
"vatRate": 20
}
]
}
],
"paginator": {
"currentPage": 2,
"perPage": 10,
"totalPages": 5,
"totalResults": 42,
"currentFrom": 11,
"currentTo": 20,
"firstPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=1",
"lastPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=5",
"nextPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=3",
"previousPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=1",
"links": [
{
"url": "https://app.fintoro.sk/api/public/v1/invoices?page=2",
"label": "2",
"active": false
}
]
}
}{
"message": "The given data was invalid.",
"errors": {}
}{
"message": "Too Many Attempts."
}{
"message": "Server Error"
}{
"message": "Service Unavailable"
}Authorizations
Bearer token created for a specific company in Integrations → API.
Query Parameters
Optional filter by a warehouse.
Optional filter by a client.
Optional substring filter by outbound receipt number.
Field used to sort the result set.
Available options:
number, issue_date, created_at, updated_at Sort direction.
Available options:
asc, desc Number of results per page.
Required range:
1 <= x <= 200Page number.
Required range:
x >= 1Previous
Create warehouse outbound receiptCreates a new warehouse outbound receipt. If you send `clientId`, the existing client is used. If you omit `clientId` and send the `client` object, the backend resolves or creates the client from that payload. The request uses the same stock availability validation as the web, so the endpoint returns `422` when available stock is insufficient.
Next
⌘I
List warehouse outbound receipts
curl --request GET \
--url https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 951,
"uuid": "3f4c9fdd-6f9b-42c9-8c4b-a9d3a3435cf4",
"number": "OUT-2026-0001",
"webDokladUrl": "https://app.fintoro.sk/web-doklad/company/warehouse-outbound-receipt/uuid",
"pdfDownloadUrl": "https://app.fintoro.sk/api/public/v1/warehouse-outbound-receipts/951/pdf",
"company": {
"name": "Fintoro s.r.o.",
"subjectId": "12345678",
"legalForm": "Limited liability company",
"taxId": "2020123456",
"vatId": "SK2020123456",
"vatPayerTypeId": 4,
"country": "Slovakia",
"city": "Bratislava",
"street": "Main Street 1",
"zip": "81101",
"registrationCourt": "City Court Bratislava III",
"registrationNumber": "12345/B",
"email": "support@fintoro.sk",
"phone": "+421900000000",
"web": "https://fintoro.sk"
},
"warehouse": {
"id": 301,
"name": "Main warehouse",
"code": "MAIN-WH",
"inboundNumericalSeriesPattern": "INB-(YY)-(CCCC)",
"inboundNumericalSeriesNextNumber": 12,
"outboundNumericalSeriesPattern": "OUT-(YY)-(CCCC)",
"outboundNumericalSeriesNextNumber": 8
},
"clientId": 101,
"client": {
"name": "Acme s.r.o.",
"type": "company",
"subjectId": "12345678",
"taxId": "2020123456",
"vatId": "SK2020123456",
"isVatPayer": true,
"email": "billing@acme.test",
"street": "Main Street 1",
"city": "Bratislava",
"zip": "81101",
"countryId": 703,
"country": {
"id": 703,
"name": "Slovakia",
"code": "SK",
"eu": true
},
"hasDeliveryAddress": true,
"deliveryStreet": "Warehouse 9",
"deliveryCity": "Kosice",
"deliveryZip": "04001",
"deliveryCountryId": 703,
"deliveryCountry": {
"id": 703,
"name": "Slovakia",
"code": "SK",
"eu": true
}
},
"currency": {
"id": 1,
"symbol": "EUR",
"name": "Euro",
"mark": "€"
},
"language": {
"id": 1,
"name": "Slovak",
"code": "sk"
},
"issueDate": "2026-03-11",
"note": "Manual stock issue",
"hasVat": true,
"total": 30,
"totalWithVat": 36,
"items": [
{
"id": 7001,
"priceListItemId": 701,
"priceListItemName": "Installation kit",
"priceListItemWarehouseCode": "SKU-001",
"unitName": "pcs",
"quantity": 3,
"unitPrice": 15,
"unitPriceWithVat": 18,
"vatRate": 20
}
]
}
],
"paginator": {
"currentPage": 2,
"perPage": 10,
"totalPages": 5,
"totalResults": 42,
"currentFrom": 11,
"currentTo": 20,
"firstPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=1",
"lastPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=5",
"nextPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=3",
"previousPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=1",
"links": [
{
"url": "https://app.fintoro.sk/api/public/v1/invoices?page=2",
"label": "2",
"active": false
}
]
}
}{
"message": "The given data was invalid.",
"errors": {}
}{
"message": "Too Many Attempts."
}{
"message": "Server Error"
}{
"message": "Service Unavailable"
}
