IndividualOrganizationResponse orgToUpdate = new IndividualOrganizationResponse();
orgToUpdate.setOrganization(organization);
try {
return genericPut("organizations/" + organization.getId() + ".json", orgToUpdate, IndividualOrganizationResponse.class);
} catch (Exception e) {
throw new ZendeskApiException("Update of organization " + organization.getName() + " failed", e);
}
}