action pocketsmith_delete_attachments_id { label: "Delete attachment" description: "Deletes a particular attachment by its ID." provider: pocketsmith method: DELETE path: "/attachments/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }