Created
July 25, 2013 16:06
-
-
Save proofek/6081235 to your computer and use it in GitHub Desktop.
Arguments passed to SugarCRM API when asked to fetch relationship details
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$args = array( | |
'module' => 'Accounts', | |
'id' => '37a5710e-665f-43a5-5108-51f10f6c7daf', | |
'fields' => array('id', 'name'), | |
'link_name_to_fields' => array( | |
array( | |
'name' => 'related_user_link', | |
'value' => array("id", "name", "phone_work") | |
) | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment