Advertisement
fkudinov

Framework Rest Api: Postman Collection

Nov 23rd, 2024
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 4.26 KB | Source Code | 0 0
  1. {
  2.     "info": {
  3.         "_postman_id": "60c52c6e-fde5-4b74-b202-91fcc7b224d5",
  4.         "name": "Python Decoded: Frameworks",
  5.         "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
  6.         "_exporter_id": "4983510"
  7.     },
  8.     "item": [
  9.         {
  10.             "name": "books",
  11.             "request": {
  12.                 "method": "GET",
  13.                 "header": [],
  14.                 "url": {
  15.                     "raw": "{{host}}/book?count=10",
  16.                     "host": [
  17.                         "{{host}}"
  18.                     ],
  19.                     "path": [
  20.                         "book"
  21.                     ],
  22.                     "query": [
  23.                         {
  24.                             "key": "count",
  25.                             "value": "10"
  26.                         }
  27.                     ]
  28.                 }
  29.             },
  30.             "response": [
  31.                 {
  32.                     "name": "200",
  33.                     "originalRequest": {
  34.                         "method": "GET",
  35.                         "header": [],
  36.                         "url": {
  37.                             "raw": "{{host}}/book?count=10",
  38.                             "host": [
  39.                                 "{{host}}"
  40.                             ],
  41.                             "path": [
  42.                                 "book"
  43.                             ],
  44.                             "query": [
  45.                                 {
  46.                                     "key": "count",
  47.                                     "value": "10"
  48.                                 }
  49.                             ]
  50.                         }
  51.                     },
  52.                     "status": "OK",
  53.                     "code": 200,
  54.                     "_postman_previewlanguage": "json",
  55.                     "header": [
  56.                         {
  57.                             "key": "content-length",
  58.                             "value": "89"
  59.                         },
  60.                         {
  61.                             "key": "connection",
  62.                             "value": "keep-alive"
  63.                         },
  64.                         {
  65.                             "key": "content-type",
  66.                             "value": "application/json"
  67.                         }
  68.                     ],
  69.                     "cookie": [],
  70.                     "body": "{\n    \"books\": [\n        {\n            \"book_id\": 0,\n            \"book_name\": \"Hi there\"\n        },\n        {\n            \"book_id\": 1,\n            \"book_name\": \"How are you?\"\n        }\n    ]\n}"
  71.                 }
  72.             ]
  73.         },
  74.         {
  75.             "name": "book",
  76.             "request": {
  77.                 "method": "GET",
  78.                 "header": [],
  79.                 "url": {
  80.                     "raw": "{{host}}/book/1",
  81.                     "host": [
  82.                         "{{host}}"
  83.                     ],
  84.                     "path": [
  85.                         "book",
  86.                         "1"
  87.                     ]
  88.                 }
  89.             },
  90.             "response": [
  91.                 {
  92.                     "name": "200",
  93.                     "originalRequest": {
  94.                         "method": "GET",
  95.                         "header": [],
  96.                         "url": {
  97.                             "raw": "{{host}}/book/1",
  98.                             "host": [
  99.                                 "{{host}}"
  100.                             ],
  101.                             "path": [
  102.                                 "book",
  103.                                 "1"
  104.                             ]
  105.                         }
  106.                     },
  107.                     "status": "OK",
  108.                     "code": 200,
  109.                     "_postman_previewlanguage": "json",
  110.                     "header": [
  111.                         {
  112.                             "key": "content-length",
  113.                             "value": "40"
  114.                         },
  115.                         {
  116.                             "key": "connection",
  117.                             "value": "keep-alive"
  118.                         },
  119.                         {
  120.                             "key": "content-type",
  121.                             "value": "application/json"
  122.                         }
  123.                     ],
  124.                     "cookie": [],
  125.                     "body": "{\n    \"book_id\": 1,\n    \"book_name\": \"How are you?\"\n}"
  126.                 }
  127.             ]
  128.         },
  129.         {
  130.             "name": "book",
  131.             "request": {
  132.                 "method": "POST",
  133.                 "header": [],
  134.                 "body": {
  135.                     "mode": "raw",
  136.                     "raw": "{\r\n    \"book_name\": \"{{$randomProductName}}\"\r\n}",
  137.                     "options": {
  138.                         "raw": {
  139.                             "language": "json"
  140.                         }
  141.                     }
  142.                 },
  143.                 "url": {
  144.                     "raw": "{{host}}/book",
  145.                     "host": [
  146.                         "{{host}}"
  147.                     ],
  148.                     "path": [
  149.                         "book"
  150.                     ]
  151.                 }
  152.             },
  153.             "response": [
  154.                 {
  155.                     "name": "200",
  156.                     "originalRequest": {
  157.                         "method": "POST",
  158.                         "header": [],
  159.                         "body": {
  160.                             "mode": "raw",
  161.                             "raw": "{\r\n    \"book_name\": \"{{$randomProductName}}\"\r\n}",
  162.                             "options": {
  163.                                 "raw": {
  164.                                     "language": "json"
  165.                                 }
  166.                             }
  167.                         },
  168.                         "url": {
  169.                             "raw": "{{host}}/book",
  170.                             "host": [
  171.                                 "{{host}}"
  172.                             ],
  173.                             "path": [
  174.                                 "book"
  175.                             ]
  176.                         }
  177.                     },
  178.                     "status": "OK",
  179.                     "code": 200,
  180.                     "_postman_previewlanguage": "json",
  181.                     "header": [
  182.                         {
  183.                             "key": "content-length",
  184.                             "value": "49"
  185.                         },
  186.                         {
  187.                             "key": "connection",
  188.                             "value": "keep-alive"
  189.                         },
  190.                         {
  191.                             "key": "content-type",
  192.                             "value": "application/json"
  193.                         }
  194.                     ],
  195.                     "cookie": [],
  196.                     "body": "{\n    \"book_name\": \"Unbranded Metal Chips\",\n    \"book_id\": 3\n}"
  197.                 }
  198.             ]
  199.         }
  200.     ],
  201.     "event": [
  202.         {
  203.             "listen": "prerequest",
  204.             "script": {
  205.                 "type": "text/javascript",
  206.                 "packages": {},
  207.                 "exec": [
  208.                     ""
  209.                 ]
  210.             }
  211.         },
  212.         {
  213.             "listen": "test",
  214.             "script": {
  215.                 "type": "text/javascript",
  216.                 "packages": {},
  217.                 "exec": [
  218.                     ""
  219.                 ]
  220.             }
  221.         }
  222.     ],
  223.     "variable": [
  224.         {
  225.             "key": "host",
  226.             "value": "http://127.0.0.1:8000",
  227.             "type": "string"
  228.         }
  229.     ]
  230. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement