Skip to main content
PUT
/
api
/
contacts
/
{id}
Update Contact
curl --request PUT \
  --url https://api.example.com/api/contacts/{id}

Request

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"
  }'

Path parameters

ParameterTypeDescription
idstringContact ID

Body parameters

All fields from Create Contact are accepted. Only include the fields you want to update.

Response

Returns the updated contact object.