We have updated our API Terms of Service. Please review the entire terms before continuing to use the API. Your use of the API means you accept and agree to the updated API Terms of Service found here: https://rescuegroups.org/api-terms-of-service/

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")
	),
);
  • No labels