Guest User

Untitled

a guest
Feb 25th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $result = civicrm_api3('Membership', 'get', array(
  2. 'sequential' => 1,
  3. 'return' => array("contact_id", "membership_type_id", "end_date",
  4. "is_override", "status_id", "owner_membership_id",
  5. "contact_id.last_name",
  6. "contact_id.email"),
  7. 'status_id' => array('IN' => array("New", "Current", "Grace")),
  8. ));
Add Comment
Please, Sign In to add comment