I am having a little bit of trouble creating my Angular 2 form and converting the submitted data into JSON format for the use of submitting it to my API. I am looking for someth
You are looking for JSON.stringify(object) which will give you the JSON represantation of your javascript object.
JSON.stringify(object)
You can then POST this using the built-in HTTP service to your server.