Versions Compared

Key

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

Examples

Action search

Retrieve a list of intakes services.

Code Block
languagephp
$data = array(
"token" => $token,
"tokenHash" => $tokenHash,
"objectType" => "intakesServices",
"objectAction" => "search",
"search" => array (
"resultStart" => 0,
"resultLimit" => 10,
"resultSort" => "intakesServiceID",
"resultOrder" => "asc",
"filters" => array(),
"fields" => array("animalName", "ownerName", "intakesServiceServicetypeID"),
),
);
Code Block