Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. civicrm_api3('Contact', 'get', array(
  2. 'sequential' => 1,
  3. 'return' => "group",
  4. 'id' => 3,
  5. ));
  6.  
  7. [
  8. "is_error" => 0,
  9. "version" => 3,
  10. "count" => 1,
  11. "id" => 3,
  12. "values" => [
  13. {
  14. "contact_id" => "3",
  15. "groups" => "Example group,Example smart group",
  16. "id" => "3",
  17. }
  18. ]
  19. ]
  20.  
  21. [
  22. "is_error" => 0,
  23. "version" => 3,
  24. "count" => 1,
  25. "id" => 3,
  26. "values" => [
  27. {
  28. "contact_id" => "3",
  29. "groups" => "4,7",
  30. "id" => "3",
  31. }
  32. ]
  33. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement