Я решил это, поймав исключение, и оно сообщило мне об ошибке.Ошибка была неверным хешем изображения.Я использовал следующий код.
try {
$this->_creative->setData($this->_postdata);
$creative2 = $this->_creative->create();
$this->_ad->setData(array(
AdFields::NAME => $this->_postdata[AdFields::NAME],
AdFields::ADSET_ID => $this->_adset,
AdFields::CREATIVE => array('creative_id' => $creative2->id),
));
$adresponse = $this->_ad->create(array(
Ad::STATUS_PARAM_NAME => Ad::STATUS_PAUSED,
));
echo "<pre>"; print_r($adresponse);
} catch (RequestException $ex) {
print_r($ex->getResponse()->getContent());
}