Skip to content

Instantly share code, notes, and snippets.

@cheey2003
cheey2003 / updatecontact.php
Created September 24, 2014 06:54
REST API to Update Custom Fields in Eloqua
<?php
// include the Eloqua REST client
include_once('eloquaRequest.php');
// Declare Public Classes for Field Values & Contacts
class fieldValues {
public $type;
public $id;
public $value;
}