<?php
/**
 * CiviRuleAction.Get API
 *
 * @param array $params
 * @return array API result descriptor
 * @see civicrm_api3_create_success
 * @see civicrm_api3_create_error
 * @throws API_Exception
 */
function civicrm_api3_civi_rule_action_get($params) {
  return _civicrm_api3_basic_get('CRM_Civirules_BAO_Action', $params);
}

