get-issue-attachment-upload-url
Generate a pre-signed URL to upload file attachments to a specific issue in Plane project management, requiring project ID, issue ID, file name, size, and content type.
Instructions
Get a pre-signed URL for uploading file attachments to an issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content_type | Yes | MIME type of the file (e.g., 'image/png', 'application/pdf') | |
| file_name | Yes | Name of the file to upload | |
| file_size | Yes | Size of the file in bytes | |
| issue_id | Yes | ID of the issue to attach file to | |
| project_id | Yes | ID of the project containing the issue |
Input Schema (JSON Schema)
{
"properties": {
"content_type": {
"description": "MIME type of the file (e.g., 'image/png', 'application/pdf')",
"type": "string"
},
"file_name": {
"description": "Name of the file to upload",
"type": "string"
},
"file_size": {
"description": "Size of the file in bytes",
"type": "number"
},
"issue_id": {
"description": "ID of the issue to attach file to",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the issue",
"type": "string"
}
},
"required": [
"project_id",
"issue_id",
"file_name",
"file_size",
"content_type"
],
"type": "object"
}