Skip to main content
PATCH
/
clients
/
{id}
Updates an existing client's information with the provided data.
curl --request PATCH \
  --url https://api.example.com/clients/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "phone": "<string>",
  "city": "<string>",
  "street": "<string>",
  "country": "<string>",
  "zipCode": "<string>",
  "language": "<string>"
}
'

Path Parameters

id
integer<int32>
required

The unique identifier of the client to update.

Body

The client data to update (only non-null fields will be updated).

name
string | null
phone
string | null
city
string | null
street
string | null
country
string | null
zipCode
string | null
language
string | null

Response

OK