Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---СОЗДАНИЕ ПОЛЬЗОВАТЕЛЯ---
- ***ПУТЬ***
- user/create
- ***ЧТО ОТПРАВИТЬ***
- {
- "phone_number":"89152901010",
- "name":"First",
- "password":"test123"
- }
- ***ЧТО ПРИДЕТ***
- {
- "meessage": "user created"
- }
- ---ПОЛУЧЕНИЕ ТОКЕНА---
- ***ПУТЬ***
- user/obtain-token
- ***ЧТО ОТПРАВИТЬ***
- {
- "phone_number":"41721",
- "password":"41721"
- }
- ***ЧТО ПРИДЕТ***
- {
- "message": "Auth successful",
- "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwaG9uZV9udW1iZXIiOiI0MTcyMSIsInVzZXJJZCI6IjVjYWI4MGFhYzNiMmM1MGZhNDhjMGVlNyIsImlhdCI6MTU1NDc1MTQ3NX0.4WF42wn1PK59TxLYEvndIOoChhR0wQPyGoSJmCoykaQ",
- "phone_number": "41721",
- "name": "Masha",
- "id": "5cab80aac3b2c50fa48c0ee7"
- }
- ---СОЗДАНИЕ ОБЪЯВЛЕНИЯ---
- ***ПУТЬ***
- advert/create
- ***ЧТО ОТПРАВИТЬ***
- {
- "advertTitle": "Do you want this dog?",
- "advertDescription": "Very good boy",
- "advertType": "good-hands",
- "animalType": "dog"
- }
- ***ЧТО ПРИДЕТ***
- {
- "ad_id": "5cabb07c9bfec52ddcff479d"
- }
- ---ПОЛУЧЕНИЕ ОБЪЯВЛЕНИЙ ПОЛЬЗОВАТЕЛЯ---
- ***ПУТЬ***
- advert/user-ads
- ***ЧТО ОТПРАВИТЬ***
- токен
- ***ЧТО ПРИДЕТ***
- [
- {
- "_id": "5cab831a1e3d5610180068af",
- "owner": "5cab80aac3b2c50fa48c0ee7",
- "animalType": "dog",
- "advertStatus": true,
- "advertType": "miss",
- "advertTitle": "Miss my doggo",
- "advertDescription": "please help me to find him",
- "__v": 0
- }
- ]
- ---ПОЛУЧЕНИЕ ВСЕХ ОБЪЯВЛЕНИЙ---
- ***ПУТЬ***
- advert/all-adverts
- ***ЧТО ОТПРАВИТЬ***
- токен
- ***ЧТО ПРИДЕТ***
- [
- {
- "_id": "5cabb07c9bfec52ddcff479d",
- "owner": "5caa4b756cb06e37ecf7c189",
- "animalType": "dog",
- "advertStatus": true,
- "advertType": "good-hands",
- "advertTitle": "Do you want this dog?",
- "advertDescription": "Very good boy",
- "__v": 0
- },
- {
- "_id": "5cabbaa5b6a0051ae4a8db27",
- "owner": "5caa4b756cb06e37ecf7c189",
- "animalType": "cat",
- "advertStatus": true,
- "advertType": "missed",
- "advertTitle": "missing cat",
- "advertDescription": "i found cat",
- "__v": 0
- }
- ]
Advertisement
Add Comment
Please, Sign In to add comment