This object pertains to forms created using ourĀ Online Forms service only

Examples

Action search

Search for submitted forms. In this case, find submitted forms that have zero comments.

$data = array(
	"token" => $token,
	"tokenHash" => $tokenHash,
	"objectType" => "submittedforms",
	"objectAction" => "search",
	"search" => array (
		"resultStart" => 0,
		"resultLimit" => 200,
		"resultSort" => "submittedformID",
		"resultOrder" => "asc",
 		"filters" => array(
 			array(
 				"fieldName" => "submittedformCommentsCount",
 				"operation" => "equals",
 				"criteria" => "0",
 			),
 		),
		"fields" => array("submittedformID")
	),
);