# 多签一个帐户

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /tron_do_multi_signature:
    post:
      summary: 多签一个帐户
      deprecated: false
      description: |-
        改掉一个帐户的owner跟active权限  
        如果要改掉的帐户，本身就已经多签了，那么私钥请填入owner的私钥
      tags:
        - tron波场/交易类
      parameters:
        - name: from_address
          in: query
          description: 要改掉的帐户
          required: false
          example: TPtVRyqKPqeQ5L9J9LnKmF9AuGm7Z3UYYk
          schema:
            type: string
        - name: from_privatkey
          in: query
          description: 要改掉帐户的私钥
          required: false
          example: 673d32dd61d985e4041fb88b01078aee7bad852eab26342f57c9490c1ef41851
          schema:
            type: string
        - name: target_address
          in: query
          description: 要改成的目标地址
          required: false
          example: TPtVRyqKPqeQ5L9J9LnKmF9AuGm7Z3UYYk
          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
              example:
                errcode: 0
                data:
                  txid: >-
                    1f9cbcc644109dbec9983de1745a1d822eda058372ad00b5fff443d5657df046
                  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-44191744-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://blockchainapi.gw.to
    description: 正式环境
security: []

```
