-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi_builder_export.json
More file actions
46 lines (46 loc) · 1.39 KB
/
api_builder_export.json
File metadata and controls
46 lines (46 loc) · 1.39 KB
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
{
"name": "{{api_collection_name}}",
"version": "1.0",
"author": "{{author_name}}",
"description": "{{api_collection_description}}",
"createDate": "{{date_creation}}",
"modifiedDate": "{{date_modification}}",
"globalVariables": {
"{{key}}": "{{value}}"
},
"globalFunctions": {
"{{function_name}}": {
"type": "{{encryption, js}}",
"functionDefinition": "{{String | Object}}"
}
},
"collection": [
{
"id": "{{uuid}}",
"selected": true,
"method": "{{GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH}}",
"url": "{{String}}",
"request": {
"params": {
"{{key}}": "{{value}}"
},
"auth": {
"{{key}}": "{{value}}"
},
"headers": {
"{{key}}": "{{value}}"
},
"body": {
"type": "{{none, form-data, x-www-form-urlencoded, raw, binary}}",
"rawType": "{{text, json, xml, html}}",
"binaryPath": "{{some_file_path}}",
"content": "{{some_string_content}}"
}
},
"responsePath": "",
"variables": {
"{{key}}": "{{value}}"
}
}
]
}