> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# wallet/proposaldelete | TRON

> TRON API method that allows the proposal creator to delete or cancel a governance proposal before it reaches the execution phase. On TRON.

TRON API method that allows the proposal creator to delete or cancel a governance proposal before it reaches the execution phase.

## Parameters

* `owner_address` — the address of the proposal creator who wants to delete the proposal. Must be in base58 or hex format.
* `proposal_id` — the ID of the proposal to delete.
* `visible` — optional boolean parameter. When set to `true`, the address should be in base58 format. Default is `false`.

## Response

* `txID` — the transaction hash of the proposal deletion
* `raw_data` — the raw transaction data
* `raw_data_hex` — the raw transaction data in hex format
* `signature` — array of transaction signatures

## Use case

The `wallet/proposaldelete` method is used for:

* Cancelling proposals that are no longer needed
* Withdrawing proposals with errors or incorrect parameters
* Managing proposal lifecycle in governance systems
* Preventing unwanted proposals from reaching execution


## OpenAPI

````yaml openapi/tron_node_api/proposaldelete.json post /95e61622bf6a8af293978377718e3b77/wallet/proposaldelete
openapi: 3.0.0
info:
  title: wallet/proposaldelete TRON API
  version: 1.0.0
  description: Delete or cancel a governance proposal
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/proposaldelete:
    post:
      tags:
        - Governance
      summary: wallet/proposaldelete
      operationId: proposalDelete
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - owner_address
                - proposal_id
              properties:
                owner_address:
                  type: string
                  default: TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g
                proposal_id:
                  type: integer
                  default: 1
                visible:
                  type: boolean
                  default: true
      responses:
        '200':
          description: Proposal deletion transaction
          content:
            application/json:
              schema:
                type: object
                properties:
                  txID:
                    type: string
                  raw_data:
                    type: object
                    properties:
                      contract:
                        type: array
                      ref_block_bytes:
                        type: string
                      ref_block_hash:
                        type: string
                      expiration:
                        type: integer
                      timestamp:
                        type: integer
                  raw_data_hex:
                    type: string
                  signature:
                    type: array
                    items:
                      type: string

````