- Description: Retrieves data on a given lobbyist filing
- Arguments: Requires filing_id which can be a string or an array with key filing_id. The filing_id is a unique identifier assigned by the Senate.
1 2 3 4 5 6 | api_key = 'XXXXXXXXXXXX'; echo '<pre>'; print_r( $sf->lobbyistFiling( '29D4D19E-CB7D-46D2-99F0-27FF15901A4C' ) ); echo '</pre>'; ?> |
Result:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | stdClass Object ( [registrant_address] => 1818 N Street NW Suite 410 Washington, CA 20036 [registrant_ppb_country] => USA [client_contact_firstname] => Scott [registrant_senate_id] => 318857 [filing_type] => REGISTRATION [filing_year] => 2007 [client_contact_suffix] => [client_senate_id] => 12 [registrant_country] => USA [filing_id] => 29D4D19E-CB7D-46D2-99F0-27FF15901A4C [client_description] => unspecified [client_contact_lastname] => Wells [issues] => Array ( [0] => stdClass Object ( [issue] => stdClass Object ( [code] => GOVERNMENT ISSUES [specific_issue] => unspecified ) ) ) [client_country] => USA [client_ppb_country] => USA [registrant_description] => unspecified [client_name] => SUNLIGHT FOUNDATION [registrant_name] => Sunlight Foundation [client_contact_middlename] => [filing_amount] => [client_raw_contact_name] => [filing_date] => 2007-08-06 [filing_pdf] => http://soprweb.senate.gov/index.cfm?event=printFiling&filingId=29D4D19E-CB7D-46D2-99F0-27FF15901A4C [client_ppb_state] => CALIFORNIA [lobbyists] => Array ( [0] => stdClass Object ( [lobbyist] => stdClass Object ( [suffix] => [firstname] => MICHAEL [middlename] => [lastname] => KLEIN [raw_name] => [official_position] => N/A ) ) [1] => stdClass Object ( [lobbyist] => stdClass Object ( [suffix] => [firstname] => ZEPHYR [middlename] => [lastname] => TEACHOUT [raw_name] => [official_position] => N/A ) ) [2] => stdClass Object ( [lobbyist] => stdClass Object ( [suffix] => [firstname] => ELLEN [middlename] => [lastname] => MILLER [raw_name] => [official_position] => N/A ) ) [3] => stdClass Object ( [lobbyist] => stdClass Object ( [suffix] => [firstname] => NISHA [middlename] => [lastname] => THOMPSON [raw_name] => [official_position] => N/A ) ) ) [filing_period] => undetermined [client_state] => CALIFORNIA ) |



