1. Orders
Fodimi
  • Clients
    • Get list
      GET
    • Get client details
      GET
    • Get client orders list
      GET
    • Get client history
      GET
    • Update client details
      PUT
    • Create client
      GET
  • Orders
    • Get Order Details
      GET
    • Get orders list
      GET
    • Change order status
      PUT
  • Menu
    • Get menu
      GET
    • Update Product visibility
      PUT
  • Schemas
    • Clients
      • Client list response
      • Client details response
      • Client history logs
    • Orders
      • Order list response
      • Order response
      • Order detailed response
      • Order product response
  1. Orders

Get Order Details

Developing
GET
/orders/{uid}

Request

Path Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://fodimi.pl/api_public/orders/'
Response Response Example
{
    "id": "string",
    "uid": "string",
    "special_offer_discount": 0,
    "status": "string",
    "cancel_reason": "string",
    "delivery_type": "string",
    "delivery_cost": 0,
    "overall_sum": 0,
    "packages_price": 0,
    "environmental_fees": 0,
    "handling_fee": 0,
    "promo_code_discount": 0,
    "manual_discount": 0,
    "deposit_amount": 0,
    "deposit": [
        {
            "type": "string",
            "count": 0,
            "amount_per_one": 0
        }
    ],
    "final_sum_to_pay": 0,
    "tax_amount": 0,
    "net_amount": 0,
    "tip": 0,
    "payment_method": "string",
    "payment_status": "string",
    "realized_on_time": "string",
    "personal_data": [
        "string"
    ],
    "comments": "string",
    "internal_comments": "string",
    "ip": "string",
    "source": "string",
    "created_at": "string",
    "checkout_extra_fields": [
        "string"
    ],
    "invoice": [
        "string"
    ],
    "closed_at": "string",
    "sent_fiscal_to": "string",
    "delivery_address": [
        "string"
    ],
    "declarated_time": "string",
    "products": [
        {
            "id": 0,
            "external_id": "string",
            "product_id": 0,
            "cross_selling_rule_id": 0,
            "quantity": 0,
            "name": "string",
            "fiscal_name": "string",
            "comments": "string",
            "internal_comments": "string",
            "variant_name": "string",
            "addon_items": [
                "string"
            ],
            "inventory": [
                "string"
            ],
            "subtotal": 0,
            "price_discounted_by_general_discount": 0,
            "manual_subtotal_change": 0,
            "manual_discount": 0,
            "discount_id": 0,
            "discount_name": "string",
            "packages_price": 0,
            "environmental_fees": [
                "string"
            ],
            "environmental_fee_types": "string",
            "vat_rate": "string",
            "tax_amount": 0,
            "net_amount": 0,
            "concession_type": "string",
            "coupon_id": 0,
            "is_grouped": true,
            "serving_order": 0,
            "price_per_kg": 0,
            "created_at": "string",
            "activated_coupon_id": 0,
            "order_coupon_id": 0,
            "weight": 0,
            "is_half_and_half": true
        }
    ]
}
Modified at 2026-03-13 14:00:43
Previous
Create client
Next
Get orders list
Built with