Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Examples

Action intakesImpounds

Add an impound intake.

Code Block
languagephp
$data = array(
		"token" => $token,
		"tokenHash" => $tokenHash,
		"objectType" => "intakesImpounds",
		"objectAction" => "add",
		"values" => array(
			array(
				"intakesImpoundAnimalID" => "1918",
				"intakesImpoundAnimalConditionID" => "3",
				"intakesImpoundDate" => "4/3/2012 16:08",
				"intakesImpoundAddress" => "123 Main St.",
				"intakesImpoundCity" => "Anywhere",
				"intakesImpoundState" => "MO",
				"intakesImpoundPostalcode" => "20715",
				"intakesImpoundStaffID" => "2612502",
				"intakesImpoundFromID" => "2578666",
				"intakesImpoundReasonID" => "1",
			),
		),
);