cURL
curl --request PUT \ --url https://api.example.com/api/contacts/{id}
Update an existing contact
curl -X PUT "https://app.orova.ai/api/contacts/CONTACT_ID" \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "contactName": "John Smith", "region": "US West" }'
id