Skip to content

Instantly share code, notes, and snippets.

@EricBusch
Last active November 6, 2022 11:05
Show Gist options
  • Select an option

  • Save EricBusch/6795476 to your computer and use it in GitHub Desktop.

Select an option

Save EricBusch/6795476 to your computer and use it in GitHub Desktop.
<?php
$merchants = $api->getMerchants( array( 6, 8, 3, 4 ), FALSE, array( '_id', 'name' ) );
foreach( $merchants as $merchant ) {
echo "Merchant: " . $merchant['name'] . "(" . $merchant['_id'] . ")\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment