1.7
Table Of Contents
- Table of Contents
- Welcome to the PlanetPress Connect REST API Cookbook
- Technical Overview
- Working Examples
- Getting Started
- Server Security & Authentication
- Working with the File Store
- Working with the Entity Services
- Working with the Workflow Services
- Running a Data Mapping Operation
- Running a Data Mapping Operation (Using JSON)
- Running a Data Mapping Operation for PDF/VT File (to Data Set)
- Running a Data Mapping Operation for PDF/VT File (to Content Set)
- Running a Content Creation Operation for Print
- Running a Content Creation Operation for Print By Data Record (Using JSON)
- Running a Content Creation Operation for Email By Data Record (Using JSON)
- Creating Content for Web By Data Record
- Creating Content for Web By Data Record (Using JSON)
- Running a Job Creation Operation (Using JSON)
- Running an Output Creation Operation
- Running an Output Creation Operation (Using JSON)
- Running an Output Creation Operation By Job (Using JSON)
- Running an All-In-One Operation (Using JSON)
- REST API Reference
- Authentication Service
- Content Creation Service
- Content Item Entity Service
- Content Set Entity Service
- Data Record Entity Service
- Data Set Entity Service
- Data Mapping Service
- Document Entity Service
- Document Set Entity Service
- Content Creation (Email) Service
- Entity Service
- File Store Service
- Content Creation (HTML) Service
- Job Creation Service
- Job Entity Service
- Job Segment Entity Service
- Job Set Entity Service
- Output Creation Service
- All-In-One Service
- Copyright Information
- Legal Notices and Acknowledgments
rule.condition = condition;
}
}
if (rule.condition) {
var temp = rule.condition;
delete rule.condition;
rule.condition = temp;
}
rules.push(rule);
});
return rules;
}
/** Add Sorting/Grouping Rule Function */
function addSortGroupRule(event) {
var id = event.target.id,
$rules = $("#" + id.substring(id.indexOf("-") + 1,
id.length)),
type = $rules
.find("#rule-type")
.val();
$rules
.find("div.sub-rules")
.append(loadRule("sorting-grouping", type));
}
$("form")
/** Value, Property & Finishing Rule Change Handlers */
.on("change", "#value.rule #condition",
conditionPlaceholder)
.on("change", "#property.rule #condition",
conditionPlaceholder)
.on("change", "#finishing.rule #finishing-type",
selectFinishingType)
.on("change", "#finishing.rule input.use-option",
useFinishingOption)
/** Remove Rule Handler */
.on("click", "input#remove-rule", function (event) {
var $rule = $(event.target).closest(".rule"),
remove = true;
if ($rule.attr("id") === "group" &&
$rule.find("div.sub-rules div.rule").length
Page 131