action pocketsmith_delete_transactions_transaction_id_attachments_attachment_id { label: "Unassigns attachment in transaction" description: "Unassigns a particular attachment by its ID from the transaction ID. This does not delete the attachment, it only removes its association from the transaction." provider: pocketsmith method: DELETE path: "/transactions/{transaction_id}/attachments/{attachment_id}" encoding: json input: { type: "object" properties: { attachment_id: { type: "integer" } transaction_id: { type: "integer" } } required: ["attachment_id", "transaction_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }