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

Update client details

Developing
PUT
/clients/{uid}

Request

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

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://fodimi.pl/api_public/clients/' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "Test",
    "surname": "User"
}'
Response Response Example
{
    "status": true
}
Modified at 2025-10-31 07:27:20
Previous
Get client history
Next
Create client
Built with