Openpieces logoopenpieces
Back to marketplace

R2 Asset Manager

ACTION

Cloudflare R2-backed asset storage service. Handles uploads, URL imports, and file serving with globally accessible shareable URLs.

Haniel0 installs0 starsPublished 5/27/2026 · 3d ago

Endpoints

· 6
POST/upload

Input Schema

{
  "type": "object",
  "required": [
    "file"
  ],
  "properties": {
    "file": {
      "type": "string",
      "format": "binary",
      "description": "File to upload (multipart/form-data)"
    }
  }
}
GET/assets

Input Schema

{
  "type": "object",
  "properties": {
    "page": {
      "type": "integer",
      "description": "Page number (default: 1)"
    },
    "limit": {
      "type": "integer",
      "description": "Items per page (default: 20, max: 100)"
    },
    "mimeType": {
      "type": "string",
      "description": "Filter by MIME type pattern (e.g. image/*)"
    }
  }
}
DELETE/assets/:id

Input Schema

{
  "type": "object",
  "properties": {}
}
POST/import-url

Input Schema

{
  "type": "object",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "description": "Remote URL to download from"
    },
    "filename": {
      "type": "string",
      "description": "Optional custom filename"
    }
  }
}
GET/assets/:id

Input Schema

{
  "type": "object",
  "properties": {}
}
GET/assets/:id/download

Input Schema

{
  "type": "object",
  "properties": {}
}

Required Secrets

· 5
R2_ACCOUNT_IDR2_ACCESS_KEY_IDR2_SECRET_ACCESS_KEYR2_BUCKET_NAMER2_PUBLIC_URL

Similar ACTION Pieces