Fodimi
    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

    Client list response

    {
        "data": [
            {
                "uid": "string",
                "name": "string",
                "surname": null,
                "email": "string",
                "phone": null,
                "is_hidden": true,
                "created_at": "string",
                "notification_settings": {
                    "orders": true,
                    "newsletter": true,
                    "sms": true
                },
                "loyalty_program_points": 0,
                "orders_count": 0,
                "birth_date": "string"
            }
        ],
        "page": 0,
        "limit": "string",
        "total": 0
    }
    Built with