The initializer Class method below has a bug. It calls the instance initializer with params:nil while it should be with params:params.
+(id)requestWithInvitedUsers:(NSArray *)invitedUsers secondsForAnswer:(NSInteger)secondsForAnswer params:(id <ISFSObject>)params {
InviteUsersRequest *req = [[InviteUsersRequest alloc] initWithInvitedUsers:invitedUsers secondsForAnswer:secondsForAnswer params:nil];
return [req autorelease];
}