Examples

Action getExports

Get a list of the available animal exports.

$data = array(
	"token" => $token,
	"tokenHash" => $tokenHash,
	"objectType" => "animalsExports",
	"objectAction" => "getExports",
);

Action updateExports

Update animal exports to disable one of the exports.

$data = array(
	"token" => $token,
	"tokenHash" => $tokenHash,
	"objectType" => "animalsExports",
	"objectAction" => "updateExports",
	"values" => array(
		array(
			"exportID" => "1019",
			"exportEnabled" => "No",
		),
	),
);