diff options
author | Struan Donald <struan@exo.org.uk> | 2012-04-27 11:16:49 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-04-27 11:16:49 +0100 |
commit | 3eb93cea4acd5f9b76efdc0910466363a0b9b445 (patch) | |
tree | 1602292a7624c28c6b6a0585cad6882ba6dd8289 /perllib/Open311.pm | |
parent | 17ddaadfd74fab9702a4382e6c021daf9b9b48db (diff) |
get service request updates requires api key
Diffstat (limited to 'perllib/Open311.pm')
-rw-r--r-- | perllib/Open311.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perllib/Open311.pm b/perllib/Open311.pm index 330f914ee..078263320 100644 --- a/perllib/Open311.pm +++ b/perllib/Open311.pm @@ -169,7 +169,10 @@ sub get_service_request_updates { my $start_date = shift; my $end_date = shift; - my $params = {}; + my $params = { + api_key => $self->api_key, + jurisdiction => $self->jurisdiction, + }; if ( $start_date || $end_date ) { return 0 unless $start_date && $end_date; |