How are you handling your error messages? This topic delves into some issues other issues were having with truncated errors.
The below is from our demos on Github and should provide the full error message:
try {
$response = $client->postRender($edit)->getResponse();
} catch (ApiException $e) {
die('Request failed: ' . $e->getMessage() . $e->getResponseBody());
}