Fodimi
  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
      POST
  • Schemas
    • Client list response
    • Client details response
    • Order list response
    • Client history logs
    • Order response
  1. Clients

Get client history

Developing
GET
/clients/{uid}/history

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//history?page=&limit=&sort_dir' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "data": [
        {
            "id": 0,
            "type": "string",
            "value": "string",
            "extra_data": [
                "string"
            ],
            "created_at": "string",
            "order": {
                "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 2025-10-06 09:08:40
Previous
Get client orders list
Next
Update client details
Built with