{"info":{"_postman_id":"1ed1708a-35b5-44b7-aeca-5c123a9d36ea","name":"My Collection","description":"<html><head></head><body><h3 id=\"welcome-to-postman-this-is-your-first-collection\">Welcome to Postman! This is your first collection.</h3>\n<p>Collections are your starting point for building and testing APIs. You can use this one to:</p>\n<p>• Group related requests\n• Test your API in real-world scenarios\n• Document and share your requests</p>\n<p>Update the name and overview whenever you’re ready to make it yours.</p>\n<p><a href=\"https://learning.postman.com/docs/collections/collections-overview/\">Learn more about Postman Collections.</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"58227752","collectionId":"1ed1708a-35b5-44b7-aeca-5c123a9d36ea","publishedId":"2sBYAyuUia","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"3bae5b"},"publishDate":"2026-09-15T02:23:09.000Z"},"item":[{"name":"Get data","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}}],"id":"fa342da5-c94f-4a70-9c25-55a7c079f7e0","request":{"method":"GET","header":[],"url":"postman-echo.com/get","description":"<p>This is a GET request and it is used to \"get\" data from an endpoint. There is no request body for a GET request, but you can use query parameters to help specify the resource you want data on (e.g., in this request, we have <code>id=1</code>).</p>\n<p>A successful GET response will have a <code>200 OK</code> status, and should include some kind of response body - for example, HTML web content or JSON data.</p>\n","urlObject":{"path":["get"],"host":["postman-echo","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa342da5-c94f-4a70-9c25-55a7c079f7e0"},{"name":"Post data","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200, 201]);","});",""]}}],"id":"4709dc6a-980b-4e89-9c52-e3eb71a86bcd","request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Add your name in the body\"\n}","options":{"raw":{"language":"json"}}},"url":"postman-echo.com/post","description":"<p>This is a POST request, submitting data to an API via the request body. This request submits JSON data, and the data is reflected in the response.</p>\n<p>A successful POST request typically returns a <code>200 OK</code> or <code>201 Created</code> response code.</p>\n","urlObject":{"path":["post"],"host":["postman-echo","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4709dc6a-980b-4e89-9c52-e3eb71a86bcd"}]}