-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.json
37 lines (37 loc) · 925 Bytes
/
index.json
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
{
"info": {
"_postman_id": "tu_postman_id_generado",
"name": "API Collection con Imágenes",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Subir Imagen",
"request": {
"method": "POST",
"url": {
"raw": "https://api.example.com/upload",
"protocol": "https",
"host": ["api", "example", "com"],
"path": ["upload"]
},
"header": [
{
"key": "Content-Type",
"value": "multipart/form-data"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "image",
"type": "file",
"src": ["https://rickandmortyapi.com/api/character/avatar/361.jpeg"]
}
]
}
}
}
]
}