try {
$new_client_response = $client->post('clients.json', [
'json' => [
'CompanyName' => 'Cyberdyne Systems',
'Country' => 'Australia',
'TimeZone' => '(GMT+10:00) Canberra, Melbourne, Sydney',
],
]);
}
// Could not connect to server or other network issue.
catch (\GuzzleHttp\Exception\ConnectException $e) {
print_r($e->getMessage());
}
// 4xx error. This is the bulk of Campaign Monitor API errors, and details about
// the error can be found in the error message and response data.
catch (\GuzzleHttp\Exception\ClientException $e) {
print_r($e->getResponse()->getData());
print_r($e->getMessage());
}
// 5xx error. This is an 'unhandled API error' in Campaign Monitor.
catch (\GuzzleHttp\Exception\ServerException $e) {
print_r($e->getResponse()->getData());
print_r($e->getMessage());
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.