-
Notifications
You must be signed in to change notification settings - Fork 1
/
culr.txt
53 lines (40 loc) · 1.39 KB
/
culr.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
///traer todo
curl --location --request GET 'localhost:8080/api/productos/list' \
--header 'Content-Type: application/json' \
--header 'Cookie: connect.sid=s%3AqY5REWdRUfbeNDcf2cZMWWhRgdnqbo75.KF0XS%2BK0SaVZo59QO1tc2eia4qVYVIxU%2Bco0sEDtf8Q' \
--data-raw '{
"username": "clara33",
"password":"123"
}
'
/// buscar por id
curl --location --request GET 'localhost:8080/api/productos/63df893411ccaa648be20043' \
--header 'Content-Type: application/json' \
--header 'Cookie: connect.sid=s%3AqY5REWdRUfbeNDcf2cZMWWhRgdnqbo75.KF0XS%2BK0SaVZo59QO1tc2eia4qVYVIxU%2Bco0sEDtf8Q' \
--data-raw '{
"username": "clara33",
"password":"123"
}
'
///agregar productos
curl --location --request POST 'localhost:8080/api/productos/add' \
--header 'Content-Type: application/json' \
--header 'Cookie: connect.sid=s%3AqY5REWdRUfbeNDcf2cZMWWhRgdnqbo75.KF0XS%2BK0SaVZo59QO1tc2eia4qVYVIxU%2Bco0sEDtf8Q' \
--data-raw '{
"title": "techo",
"price": 1500,
"thumbnail": "www.freepik.com",
"stock": 5
}
'
////borrar producto
curl --location --request DELETE 'localhost:8080/api/productos/63e25de743028ead29d1ac6b' \
--header 'Content-Type: application/json' \
--header 'Cookie: connect.sid=s%3AqY5REWdRUfbeNDcf2cZMWWhRgdnqbo75.KF0XS%2BK0SaVZo59QO1tc2eia4qVYVIxU%2Bco0sEDtf8Q' \
--data-raw '{
"title": "techo",
"price": 1500,
"thumbnail": "www.freepik.com",
"stock": 5
}
'