but how do i pass the parameters in GET?
A
GET request doesn't have any input parameters in its body, only URL query parameters.
A JSON document needs to be sent using a
POST or
PUT request instead (depending on API). However,
TStringList is the wrong way to send JSON data, use a
TStream instead, such as
TStringStream.