{ "info": { "_postman_id": "cb4258ac-cf7e-4450-869c-c562bdb924da", "name": "aws-serverless-skeleton", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" }, "item": [ { "name": "post", "item": [ { "name": "Get List of posts", "request": { "method": "GET", "header": [], "body": { "mode": "raw", "raw": "" }, "url": { "raw": "{{BASE_URL}}/post", "host": [ "{{BASE_URL}}" ], "path": [ "post" ] } }, "response": [] }, { "name": "Create new post", "request": { "method": "POST", "header": [ { "key": "Content-Type", "name": "Content-Type", "value": "application/json", "type": "text" } ], "body": { "mode": "raw", "raw": "{\n \"title\": \"Title\",\n \"post\": \"Post\",\n \"status\": \"DRAFT\"\n}" }, "url": { "raw": "{{BASE_URL}}/post", "host": [ "{{BASE_URL}}" ], "path": [ "post" ] } }, "response": [] }, { "name": "Get Post by ID", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Content-Type", "name": "Content-Type", "value": "application/json", "type": "text" } ], "body": { "mode": "raw", "raw": "" }, "url": { "raw": "{{BASE_URL}}/post/5943082c-f136-11e7-8919-0a6d48ff11de", "host": [ "{{BASE_URL}}" ], "path": [ "post", "5943082c-f136-11e7-8919-0a6d48ff11de" ] } }, "response": [] } ] } ] }