Ejemplo n.º 1
0
<?php

include_once '../includes/Five9.php';
/**
 *  * Created By: Ryan Kiel
 * SERVICE CALLS:
 * field->(displayAs,mapTo,Name,restrictions->(isEnabled,type,value),system,type)
 *
 * RETURNS:
 * modifyContactFieldResponse
 */
$five9 = new f9();
$contactFieldRestriction = array('isEnabled' => false, 'type' => '', 'value' => '');
$field = array('field' => array('displayAs' => 'Short', 'mapTo' => 'None', 'name' => 'other', 'system' => false, 'type' => 'STRING'));
$result = $five9->modifyContactField($field);
print_r($result);
/*
RETURNS
stdClass Object
(
)
Process finished with exit code 0
*/