Skip to content

Instantly share code, notes, and snippets.

@jmcshane
Created April 10, 2017 02:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmcshane/0ac2f42fdc19a430512d09a9db077447 to your computer and use it in GitHub Desktop.
Save jmcshane/0ac2f42fdc19a430512d09a9db077447 to your computer and use it in GitHub Desktop.
Reactive Postman Collection
{
"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