curl --request PATCH \
--url https://api.example.com/clients/:id \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"email": "<string>"
}
'{
"error": false,
"msg": "User update sucessfully"
}
Update client information
curl --request PATCH \
--url https://api.example.com/clients/:id \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"email": "<string>"
}
'{
"error": false,
"msg": "User update sucessfully"
}
This endpoint updates an existing client’s information. All fields in the request body are optional.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/andreguti9190/Sistema-de-gestion-de-ventas--Nodejs/llms.txt
Use this file to discover all available pages before exploring further.
{
"name": "Mark Zuckemberg",
"email": "markzuck@facebook.com"
}
{
"error": false,
"msg": "User update sucessfully"
}