Ionic Native Http how to manipulate a json object from a server

Hi Guys Im Stuck please help …

I am failing to manipulate json object using native http

from this example API Url

this.http.get(' http://dsdemo.disciplesoft.co.za/api/user/ff', {}, {})
  .then(data: any => {
    this.response = data
    console.log( this.response.uid);
    console.log( this.response.id);

  })```

**And i want to use it in html like**

<p>{{repsonse.uid}}</p>