1. Clients
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. Clients

Get client orders list

Developing
GET
/clients/{uid}/orders

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Query Params

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://fodimi.pl/api_public/clients//orders?page=&limit=&sort_by&sort_dir&search&status&delivery_type' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "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
}
Modified at 2026-03-13 14:10:15
Previous
Get client details
Next
Get client history
Built with