-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTest API ENCORA.postman_collection.json
55 lines (55 loc) · 1.12 KB
/
Test API ENCORA.postman_collection.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"info": {
"_postman_id": "c35bfcff-534e-4f9b-b132-498c378f41fd",
"name": "Test API ENCORA",
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json",
"_exporter_id": "27338487"
},
"item": [
{
"name": "Add New Country",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"country_code\": \"IND\",\n \"country_name\": \"INDIA\",\n \"dialing_code\": \"+91\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": "http://127.0.0.1:8000/api/countries"
},
"response": []
},
{
"name": "Get Countries",
"request": {
"method": "GET",
"header": [],
"url": "http://127.0.0.1:8000/api/countries"
},
"response": []
},
{
"name": "Get Filtered Countries",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"country_code\": \"IND\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": "http://127.0.0.1:8000/api/countries/filter"
},
"response": []
}
]
}