findParticipantById(participantId: number): Observable { return this.http.get(`/api/participants/${participantId}`) .do( res => console.log('HTTP response:', res)) .map(res => res.json().payload) .do(console.log); }