I am connecting to an API which gives a rather large json payload. I need to add a key and value to the root object.Once I do ioutil.Readall
from the package "net/http" the JSON is a byte array.
My goal is to just simply add to the structure and move on. As an example, the following the pretty similar to what I am doing: https://tutorialedge.net/golang/consuming-restful-api-with-go/
So how can I simply add to a JSON structure another element (key: value)?