For GET endpoints, parameters must be sent as a query string.
GET
query string
For POST, PUT, and DELETE endpoints, the parameters must be sent as a request body with content type application/x-www-form-urlencoded.
POST
PUT
DELETE
request body
application/x-www-form-urlencoded
Parameters may be sent in any order.
Last updated 2 years ago