cURL
curl --request PUT \ --url https://api.projectcor.com/v1/clients/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data 'name=<string>' \ --data 'business_name=<string>' \ --data 'name_contact=<string>' \ --data 'last_name_contact=<string>' \ --data email_contact=jsmith@example.com \ --data 'website=<string>' \ --data 'description=<string>' \ --data 'condition=<string>' \ --data 'phone=<string>'
{ "id": 123, "name": "<string>", "business_name": "<string>", "name_contact": "<string>", "last_name_contact": "<string>", "email_contact": "jsmith@example.com", "website": "<string>", "description": "<string>", "condition": "<string>", "phone": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Name of client
Business Name
Contact First name
Contact Last name
Contact email
Website
Description or comments
Client condition
Phone
Client updated successfully