I can handle a single observable result from http.get with following code:
http.get('/customers/1')
.map((res: Response) => res.json())
.subscribe(customer => this.customer = customer);
Now I have a list of resource IDs like var list:number[] = [1, 4, 7]; that I want to be able to send request for all resources and assign the all resolved items to my array like customers => this.customers = customers.