{
    "status": "ok",
    "message": "KargolApp API'ye hoş geldiniz.",
    "version": "v1.3.0",
    "timestamp": "2026-04-30T10:13:24+00:00",
    "authorization": {
        "type": "Bearer Token",
        "header": "Authorization: Bearer {api_token}"
    },
    "endpoints": [
        {
            "method": "GET",
            "path": "/orders/list",
            "description": "Tüm siparişleri listeler."
        },
        {
            "method": "POST",
            "path": "/orders/create",
            "description": "Yeni sipariş(ler) ekler. Aynı `siparis_no` ile tekrar gönderilirse mevcut sipariş güncellenir.",
            "body_format": [
                {
                    "siparis_no": "SIP2025001",
                    "cargo_provider_name": "Kolay Gelsin Marketplace",
                    "agreed_delivery_date": "2025-05-05",
                    "total_price": 199.9,
                    "kargokodu": "YK1234567890",
                    "barkod": "1234567890123",
                    "adi": "Kadın Tişört",
                    "renk": "Siyah",
                    "miktar": 1,
                    "tarih": "2025-06-02",
                    "saat": "14:30",
                    "sip_tur": 1,
                    "gorunurluk": 1
                }
            ]
        },
        {
            "method": "POST",
            "path": "/orders/delete",
            "description": "Tek veya çoklu `siparis_no` ile sipariş(leri) siler.",
            "body_format": [
                {
                    "siparis_no": "SIP2025001"
                },
                {
                    "siparis_no": "SIP2025002"
                }
            ]
        },
        {
            "method": "GET",
            "path": "/products/list",
            "description": "Tüm ürünleri listeler."
        },
        {
            "method": "POST",
            "path": "/products/create",
            "description": "Yeni ürün(ler) ekler. Aynı `barkod` ile tekrar gönderilirse mevcut ürün güncellenir.",
            "body_format": [
                {
                    "barkod": "1234567890123",
                    "stock_code": "STK001",
                    "adi": "Test Ürünü",
                    "foto": "https://cdn.site.com/urun.jpg"
                }
            ]
        },
        {
            "method": "POST",
            "path": "/products/delete",
            "description": "Tek veya çoklu `barkod` ile ürün(leri) siler.",
            "body_format": [
                {
                    "barkod": "1234567890123"
                },
                {
                    "barkod": "1234567890124"
                }
            ]
        }
    ]
}