{
  "author": "Community",
  "description": "Upload screenshots to a Dropbox folder using a personal access token. Returns a shareable link.",
  "icon": "shippingbox.fill",
  "id": "community.dropbox",
  "name": "Dropbox Upload",
  "openURLTemplate": null,
  "settings": [
    {
      "defaultValue": null,
      "isSecret": true,
      "key": "accessToken",
      "label": "Dropbox Access Token",
      "type": "secret"
    },
    {
      "defaultValue": "/DropSnip",
      "isSecret": false,
      "key": "folderPath",
      "label": "Folder Path",
      "type": "text"
    }
  ],
  "shellCommand": null,
  "type": "urlAction",
  "urlBodyType": "multipartFormData",
  "urlEndpoint": "https://content.dropboxapi.com/2/files/upload",
  "urlHeaders": {
    "Authorization": "Bearer {{setting:accessToken}}",
    "Content-Type": "application/octet-stream",
    "Dropbox-API-Arg": "{\"path\":\"{{setting:folderPath}}/screenshot.png\",\"mode\":\"add\",\"autorename\":true}"
  },
  "urlMethod": "POST",
  "version": "1.0.0"
}