Created
June 2, 2017 13:39
-
-
Save snipe/29067cd3e74209a7d65c5ace67bbe616 to your computer and use it in GitHub Desktop.
This file contains 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
$info = [ | |
'deal' => [ | |
'name' => 'Plan Name', | |
'amount' => 100, | |
'stage_name' => 'won', | |
'closed_date' => '2017-06-02', | |
'deal_stage_id' => 'DEAL-STAGE-ID', | |
'sales_account' => [ | |
'name' => 'Account Name', | |
'website' => 'http://example.org' | |
] | |
] | |
]; | |
$headers = [ | |
'Accept' => 'application/json', | |
'Content-type' => 'application/json', | |
'Authorization' => 'Token token=MY-TOKEN-ID' | |
]; | |
$client = new \GuzzleHttp\Client(); | |
$response = $client->post('https://MY-SUBDOMAIN.freshsales.io/api/deals', [ | |
'json' => $info, | |
'headers' => $headers]); | |
$result = $response->getBody()->getContents(); | |
print_r(result); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment