Summary
Download a public file from IAP
Description
Download a public file from IAP
Route
GET /download
Roles
Parameters
DetailsExampleSchema
| Name |
Type |
Required |
Description |
| queryOptions |
object |
yes |
Object containing all query parameters |
Copied to Clipboard
{
"queryOptions": {
"file_name": "eiusmod commodo amet culpa"
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"queryOptions": {
"title": "queryOptions",
"type": "object",
"properties": {
"file_name": {
"type": "string"
}
},
"required": []
}
},
"required": [
"queryOptions"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| result |
string |
The contents of the file downloaded |
Copied to Clipboard
"this is the contents of a file"
Copied to Clipboard
{
"title": "result",
"type": "string",
"examples": [
"this is the contents of a file"
]
}