download_attachment
Retrieve the download URL for subsidy-related attachment documents by specifying subsidy ID, category, and index. Simplify access to essential grant materials.
Instructions
Get the download URL for a subsidy's attachment document.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Attachment category | |
index | Yes | Attachment index (starts from 0) | |
subsidy_id | Yes | Subsidy ID |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Attachment category",
"enum": [
"application_guidelines",
"outline_of_grant",
"application_form"
],
"type": "string"
},
"index": {
"description": "Attachment index (starts from 0)",
"minimum": 0,
"type": "integer"
},
"subsidy_id": {
"description": "Subsidy ID",
"type": "string"
}
},
"required": [
"subsidy_id",
"category",
"index"
],
"type": "object"
}