cURL
curl --request PUT \ --url https://api.example.com/api/contacts/{id}
Update an existing contact
Documentation IndexFetch the complete documentation index at: https://docs.orova.ai/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.orova.ai/llms.txt
Use this file to discover all available pages before exploring further.
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