top of page
Postman Tutorial
POST Request In Postman
What Is The POST Request In Postman ?
To create a new entry in RESTful web service, we use http POST method.
Steps :
Create a new request.
Click on Body option, inside this select raw and then choose JSON from dropdown.
Enter baseurl.
Select POST method.
Enter entry in JSON format as :
{"firstName":"Elsa","id":5,"lastName":"Langford","profileName":"Elsa Profile"}
Save it and Send.
Example :
Output :
Refer next page PUT Request In Postman
bottom of page