# 多签状态下发送trx

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /tron_send_Trx_with_multi:
    post:
      summary: 多签状态下发送trx
      deprecated: false
      description: 用于多签  发送trx
      tags:
        - tron波场/交易类
      parameters:
        - name: from_address
          in: query
          description: ''
          required: false
          example: TPtVRyqKPqeQ5L9J9LnKmF9AuGm7Z3UYYk
          schema:
            type: string
        - name: owner_privatkey
          in: query
          description: ''
          required: false
          example: 673d32dd61d985e4041fb88b01078aee7bad852eab26342f57c9490c1ef41851
          schema:
            type: string
        - name: to_address
          in: query
          description: ''
          required: false
          example: TWD9SgyY3jDkErgkcTf3Tsdcbx6hRruUAN
          schema:
            type: string
        - name: amount
          in: query
          description: ''
          required: false
          example: '1'
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  errcode:
                    type: integer
                  data:
                    type: object
                    properties:
                      txid:
                        type: string
                      msg:
                        type: string
                    required:
                      - txid
                      - msg
                    x-apifox-orders:
                      - txid
                      - msg
                  errmsg:
                    type: string
                required:
                  - errcode
                  - data
                  - errmsg
                x-apifox-orders:
                  - errcode
                  - data
                  - errmsg
              examples:
                '1':
                  summary: 成功示例
                  value:
                    errcode: 0
                    data:
                      txid: >-
                        04770df214249dd3dc87eed2fe8a5ed64ec01a7b775818554da61c959369ed2f
                      msg: 广播完成
                    errmsg: ''
                '2':
                  summary: 成功示例
                  value:
                    errcode: 0
                    data:
                      txid: >-
                        04770df214249dd3dc87eed2fe8a5ed64ec01a7b775818554da61c959369ed2f
                      msg: 广播完成
                    errmsg: ''
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: tron波场/交易类
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/1761505/apis/api-44197035-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://blockchainapi.gw.to
    description: 正式环境
security: []

```
