Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. public function listCustomer($session_id) {
  2.         if($session_id) {
  3.             $post = array(
  4.                 'method' => 'call',
  5.                 'params' => array(
  6.                     'sessionId' => $session_id,
  7.                     'apiPath' => 'dealer.find',
  8.                     'args' => array(),
  9.                 )
  10.             );
  11.             $resultCustomer = $this->json_api($post);
  12.             return $resultCustomer;
  13.         }
  14.  
  15.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement