Advertisement
verygoodplugins

Untitled

Jun 26th, 2019
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. $data = (object) array(
  2.     'opportunity' => (object) array(
  3.         'description' => 'Scope and design web site shopping cart',
  4.         'party'       => array( 581 ),
  5.         'value'       => array(
  6.             'amount'   => 500,
  7.             'currency' => 'USD'
  8.         )
  9.     )
  10. );
  11.  
  12. $url            = 'https://api.capsulecrm.com/api/v2/parties/opportunities';
  13. $params         = wp_fusion()->crm->get_params();
  14. $params['body'] = json_encode( $data );
  15.  
  16. $response = wp_remote_post( $url, $params );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement