Miroslav Hruška

Results 2 comments of Miroslav Hruška

I asked GetResponse allready and here is the answer (easy, but it is little bit confusing I think ): 'customs' => array( array( 'name' => 'name_of_your_multivalue_custom', 'content' => 'value1' ),...

It is not possible to write it like that, this would be right solution: $multivalues = array( 'name_of_your_multivalue_custom' => array('value1', 'value2', 'value3'), 'name_of_your_other_custom' => 'XY', ); $setCustoms = $api->setContactCustoms($contactID, $multivalues);...