tags:

views:

26

answers:

0

Is there a way to return only active projects using Basecamp's API? No matter what I try I always get back my entire list of projects, and it's HUGE.

Here's what I think should work:

Basecamp.establish_connection!('myhost.basecamphq.com', 'my_user', 'my_pass')
@projects = Basecamp::Project.find(:all, params => { :status => 'active' } )