This repository has been archived by the owner on Dec 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Postman collection for the blog post
- Loading branch information
Vinícius Pereira
committed
Oct 26, 2021
1 parent
4fce4a8
commit 8e58afb
Showing
1 changed file
with
70 additions
and
0 deletions.
There are no files selected for viewing
70 changes: 70 additions & 0 deletions
70
blog-assets/AWS Blog Post.SVwithAPIGateway.postman_collection.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"info": { | ||
"_postman_id": "233e8d84-5068-4909-84f0-c0340b451606", | ||
"name": "AWS Blog Post", | ||
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" | ||
}, | ||
"item": [ | ||
{ | ||
"name": "GET Method", | ||
"request": { | ||
"method": "GET", | ||
"header": [], | ||
"url": { | ||
"raw": "https://put-your-api-gateway-stage-address-here/v0/mock?method=created", | ||
"protocol": "https", | ||
"host": [ | ||
"put-your-api-gateway-stage-address-here" | ||
], | ||
"path": [ | ||
"v0", | ||
"mock" | ||
], | ||
"query": [ | ||
{ | ||
"key": "method", | ||
"value": "created" | ||
} | ||
] | ||
} | ||
}, | ||
"response": [] | ||
}, | ||
{ | ||
"name": "POST Method", | ||
"request": { | ||
"method": "POST", | ||
"header": [ | ||
{ | ||
"key": "Content-Type", | ||
"value": "application/json", | ||
"type": "text" | ||
} | ||
], | ||
"body": { | ||
"mode": "raw", | ||
"raw": "{\r\n \"statusCode\": 226\r\n}" | ||
}, | ||
"url": { | ||
"raw": "https://put-your-api-gateway-stage-address-here/v0/mock", | ||
"protocol": "https", | ||
"host": [ | ||
"put-your-api-gateway-stage-address-here" | ||
], | ||
"path": [ | ||
"v0", | ||
"mock" | ||
], | ||
"query": [ | ||
{ | ||
"key": "scope", | ||
"value": "internal", | ||
"disabled": true | ||
} | ||
] | ||
} | ||
}, | ||
"response": [] | ||
} | ||
] | ||
} |