Просто отправьте его как массив объектов в паре ключ-значение, как это
CreateMethod(input:HTMLInputElement){
let firstName = {title:input.value}
input.value = '';
let arrayYouNeedToSend = [{title:input.value}];
this.http.post(this.url,JSON.stringify(arrayYouNeedToSend))
.subscribe(response=>{
//firstName.id=response.json().id; this.postvalue.splice(0,0,firstName); console.log(response.json());
})