action pocketsmith_delete_accounts_id { label: "Delete account" description: "Deletes an account and all its data by ID, optionally merge scenarios into another account." provider: pocketsmith method: DELETE path: "/accounts/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }