Created
April 10, 2017 02:37
-
-
Save jmcshane/0ac2f42fdc19a430512d09a9db077447 to your computer and use it in GitHub Desktop.
Reactive Postman Collection
This file contains hidden or 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
{ | |
"variables": [], | |
"info": { | |
"name": "ReactiveExample", | |
"_postman_id": "674b4612-e8d4-9279-5561-546341c192eb", | |
"description": "", | |
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json" | |
}, | |
"item": [ | |
{ | |
"name": "CreateAccount", | |
"request": { | |
"url": "http://localhost:2222/account/", | |
"method": "POST", | |
"header": [ | |
{ | |
"key": "Content-Type", | |
"value": "application/json", | |
"description": "" | |
} | |
], | |
"body": { | |
"mode": "raw", | |
"raw": "{\"customerId\" : \"321\", \"id\" : \"123\", \"number\" : \"1\", \"amount\" : 1234}" | |
}, | |
"description": "" | |
}, | |
"response": [] | |
}, | |
{ | |
"name": "GetCreatedAccount", | |
"request": { | |
"url": "http://localhost:2222/account/58eae3c487bc0039eb4362af", | |
"method": "GET", | |
"header": [ | |
{ | |
"key": "Content-Type", | |
"value": "application/json", | |
"description": "" | |
} | |
], | |
"body": { | |
"mode": "raw", | |
"raw": "{\"customerId\" : \"321\", \"id\" : \"123\", \"number\" : \"1\", \"amount\" : 1234}" | |
}, | |
"description": "" | |
}, | |
"response": [] | |
}, | |
{ | |
"name": "GetAllAccounts", | |
"request": { | |
"url": "http://localhost:2222/account", | |
"method": "GET", | |
"header": [], | |
"body": { | |
"mode": "raw", | |
"raw": "{\"customerId\" : \"321\", \"id\" : \"123\", \"number\" : \"1\", \"amount\" : 1234}" | |
}, | |
"description": "" | |
}, | |
"response": [] | |
}, | |
{ | |
"name": "GetCreatedAccountByCustomerId", | |
"request": { | |
"url": "http://localhost:2222/account/customer/321", | |
"method": "GET", | |
"header": [ | |
{ | |
"key": "Content-Type", | |
"value": "application/json", | |
"description": "" | |
} | |
], | |
"body": { | |
"mode": "raw", | |
"raw": "{\"customerId\" : \"321\", \"id\" : \"123\", \"number\" : \"1\", \"amount\" : 1234}" | |
}, | |
"description": "" | |
}, | |
"response": [] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment