-
Notifications
You must be signed in to change notification settings - Fork 0
/
gwas-sumstats-service.postman_collection.json
98 lines (98 loc) · 1.87 KB
/
gwas-sumstats-service.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"info": {
"_postman_id": "e03dcb59-01cb-411b-a8d0-b216e2860c9f",
"name": "gwas-sumstats-service",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "875166"
},
"item": [
{
"name": "POST sum-stats",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"requestEntries\": [\n {\n \"id\": \"{{callbackId}}\",\n \"filePath\": \"test_sumstats_file.tsv\",\n \"md5\": \"9b5f307016408b70cde2c9342648aa9b\",\n \"assembly\": \"GRCh38\",\n \"readme\": \"optional text\",\n \"entryUUID\": \"ABC1234\",\n \"minrows\": \"2\"\n }\n ]\n}"
},
"url": {
"raw": "{{protocol}}://{{host}}:{{port}}/v1/sum-stats",
"protocol": "{{protocol}}",
"host": [
"{{host}}"
],
"port": "{{port}}",
"path": [
"v1",
"sum-stats"
]
}
},
"response": []
},
{
"name": "GET sum-stats",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{protocol}}://{{host}}:{{port}}/v1/sum-stats/{{callbackId}}",
"protocol": "{{protocol}}",
"host": [
"{{host}}"
],
"port": "{{port}}",
"path": [
"v1",
"sum-stats",
"{{callbackId}}"
]
}
},
"response": []
}
],
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
},
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
}
],
"variable": [
{
"key": "protocol",
"value": "http",
"type": "string"
},
{
"key": "host",
"value": "localhost",
"type": "string"
},
{
"key": "port",
"value": "8000",
"type": "string"
}
]
}