public MetadataResponse updateMetadata(String uuid, MetadataRequest body)
throws ApiException {
// verify required params are set
if (uuid == null || body == null) {
throw new ApiException(400, "missing required params");
}
// create path and map variables
String path = "/meta/" + Settings.API_VERSION + "/data/{uuid}".replaceAll("\\{format\\}", "json")
.replaceAll("\\{" + "uuid" + "\\}",
apiInvoker.escapeString(uuid.toString()));