Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
add Postman collection for the blog post
Browse files Browse the repository at this point in the history
  • 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.
70 changes: 70 additions & 0 deletions blog-assets/AWS Blog Post.SVwithAPIGateway.postman_collection.json
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": []
}
]
}

0 comments on commit 8e58afb

Please sign in to comment.