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/

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