Skip to content

Commit

Permalink
Fixed postman collection: added the missing request body for the POST…
Browse files Browse the repository at this point in the history
… request
  • Loading branch information
jaydeepk committed Oct 10, 2023
1 parent 5743b1e commit 0e39f61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions documentation/SpecmaticExpectations-postman_collection.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"info": {
"_postman_id": "1884802c-9ffc-4084-9d8b-5f324ffa3496",
"_postman_id": "df6c077d-3912-48f7-98c2-3209fa271ab7",
"name": "Specmatic Expectations",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
Expand All @@ -12,7 +12,7 @@
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"http-request\": {\n \"method\": \"POST\",\n \"path\": \"/data\",\n \"body\": {\n\n }\n },\n \"http-request\": {\n \"status\": 200,\n \"body\": {\n \n }\n }\n}",
"raw": "{\n \"http-request\": {\n \"method\": \"POST\",\n \"path\": \"/products\",\n \"body\": {\n \"name\": \"Pen\",\n \"sku\": \"abc456\"\n }\n },\n \"http-response\": {\n \"status\": 200,\n \"body\": {\n \"id\": 99\n }\n }\n}",
"options": {
"raw": {
"language": "json"
Expand Down

0 comments on commit 0e39f61

Please sign in to comment.