POST Form Data
POST https://postman-echo.com/post
The HTTP A POST /hi/there?hand=wave The parameter This endpoint echoes the HTTP headers, request parameters, the contents of
the request body and the complete URI requested when data is sent as a form parameter.POST
request method is meant to transfer data to a server
(and elicit a response). What data is returned depends on the implementation
of the server.POST
request can pass parameters to the server using Query String
Parameters
, as well as the Request Body. For example, in the following request,
hand
has the value wave
. The request body can be in multiple
formats. These formats are defined by the MIME type of the request. The MIME
Type can be set using the Content-Type
HTTP header. The most commonly used
MIME types are:
multipart/form-data
application/x-www-form-urlencoded
application/json
Body
PARAM
Key | Datatype | Required | Description |
HEADERS
Key | Datatype | Required | Description |
RESPONSES
status
ENDPOINTS