iawitm

Untitled

Apr 8th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.26 KB | None | 0 0
  1. ---СОЗДАНИЕ ПОЛЬЗОВАТЕЛЯ---
  2. ***ПУТЬ***
  3. user/create
  4.  
  5. ***ЧТО ОТПРАВИТЬ***
  6. {
  7.     "phone_number":"89152901010",
  8.     "name":"First",
  9.     "password":"test123"
  10. }
  11.  
  12. ***ЧТО ПРИДЕТ***
  13. {
  14.   "meessage": "user created"
  15. }
  16.  
  17.  
  18.  
  19.  
  20. ---ПОЛУЧЕНИЕ ТОКЕНА---
  21. ***ПУТЬ***
  22. user/obtain-token
  23.  
  24. ***ЧТО ОТПРАВИТЬ***
  25. {
  26.     "phone_number":"41721",
  27.     "password":"41721"
  28. }
  29.  
  30. ***ЧТО ПРИДЕТ***
  31. {
  32.   "message": "Auth successful",
  33.   "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwaG9uZV9udW1iZXIiOiI0MTcyMSIsInVzZXJJZCI6IjVjYWI4MGFhYzNiMmM1MGZhNDhjMGVlNyIsImlhdCI6MTU1NDc1MTQ3NX0.4WF42wn1PK59TxLYEvndIOoChhR0wQPyGoSJmCoykaQ",
  34.   "phone_number": "41721",
  35.   "name": "Masha",
  36.   "id": "5cab80aac3b2c50fa48c0ee7"
  37. }
  38.  
  39.  
  40.  
  41.  
  42. ---СОЗДАНИЕ ОБЪЯВЛЕНИЯ---
  43. ***ПУТЬ***
  44. advert/create
  45.  
  46. ***ЧТО ОТПРАВИТЬ***
  47. {
  48.     "advertTitle": "Do you want this dog?",
  49.     "advertDescription": "Very good boy",
  50.     "advertType": "good-hands",
  51.     "animalType": "dog"
  52. }
  53.  
  54. ***ЧТО ПРИДЕТ***
  55. {
  56.   "ad_id": "5cabb07c9bfec52ddcff479d"
  57. }
  58.  
  59.  
  60.  
  61. ---ПОЛУЧЕНИЕ ОБЪЯВЛЕНИЙ ПОЛЬЗОВАТЕЛЯ---
  62. ***ПУТЬ***
  63. advert/user-ads
  64.  
  65. ***ЧТО ОТПРАВИТЬ***
  66. токен
  67.  
  68. ***ЧТО ПРИДЕТ***
  69. [
  70.   {
  71.     "_id": "5cab831a1e3d5610180068af",
  72.     "owner": "5cab80aac3b2c50fa48c0ee7",
  73.     "animalType": "dog",
  74.     "advertStatus": true,
  75.     "advertType": "miss",
  76.     "advertTitle": "Miss my doggo",
  77.     "advertDescription": "please help me to find him",
  78.     "__v": 0
  79.   }
  80. ]
  81.  
  82.  
  83.  
  84.  
  85. ---ПОЛУЧЕНИЕ ВСЕХ ОБЪЯВЛЕНИЙ---
  86. ***ПУТЬ***
  87. advert/all-adverts
  88.  
  89. ***ЧТО ОТПРАВИТЬ***
  90. токен
  91.  
  92. ***ЧТО ПРИДЕТ***
  93. [
  94.   {
  95.     "_id": "5cabb07c9bfec52ddcff479d",
  96.     "owner": "5caa4b756cb06e37ecf7c189",
  97.     "animalType": "dog",
  98.     "advertStatus": true,
  99.     "advertType": "good-hands",
  100.     "advertTitle": "Do you want this dog?",
  101.     "advertDescription": "Very good boy",
  102.     "__v": 0
  103.   },
  104.   {
  105.     "_id": "5cabbaa5b6a0051ae4a8db27",
  106.     "owner": "5caa4b756cb06e37ecf7c189",
  107.     "animalType": "cat",
  108.     "advertStatus": true,
  109.     "advertType": "missed",
  110.     "advertTitle": "missing cat",
  111.     "advertDescription": "i found cat",
  112.     "__v": 0
  113.   }
  114. ]
Advertisement
Add Comment
Please, Sign In to add comment