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 list

Developing
GET
/clients

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
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?page=&limit=&sort_by&sort_dir&is_hidden&email&search' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "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
}
Modified at 2025-10-06 09:01:14
Next
Get client details
Built with