Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $order = array(
- 'associations' => array(
- 'associatedVids' => array( $contact_id ),
- ),
- 'properties' => array(
- array(
- 'name' => 'dealname',
- 'value' => 'DEAL TITLE',
- ),
- array(
- 'name' => 'pipeline',
- 'value' => 'DEAL PIPELINE',
- ),
- array(
- 'name' => 'dealstage',
- 'value' => 'DEAL STAGE',
- ),
- array(
- 'name' => 'closedate',
- 'value' => $order_date * 1000,
- ),
- array(
- 'name' => 'amount',
- 'value' => $total,
- ),
- ),
- );
- wpf_log(
- 'info', $user_id, 'Adding custom deal:', array(
- 'meta_array_nofilter' => $order,
- )
- );
- $params = wp_fusion()->crm->get_params();
- $params['body'] = json_encode( $order );
- $response = wp_remote_post( 'https://api.hubapi.com/deals/v1/deal', $params );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement