I do not understand,
The Ajax settings in construct2 are
....
Method
"POST"
I can not see another others i can change and this is already set to POST.
Post to URL
Send a request with data to a URL and retrieve the response. A tag is provided to match it up with the On completed, On progress and On error triggers. Construct 2 does not automatically URL encode the post data - use the URLEncode system expression to ensure the data is in the correct format for posting. Note post data is in the same format as a query string, e.g. "foo=1&bar=2".
The method can also be specified: by default it is POST, but for some APIs you may need to change this to GET,PUT, DELETE,HEAD or another HTTP method.
[quote:171anj5f]GET - Requests data from a specified resource
POST - Submits data to be processed to a specified resource