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

Order list response

{
    "data": [
        {
            "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"
        }
    ],
    "page": 0,
    "limit": 0,
    "total": 0
}
Built with