# 查询一个帐户是否被多签

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /tron_check_address_is_multi_signature:
    post:
      summary: 查询一个帐户是否被多签
      deprecated: false
      description: 给定一个地址，查询是否多签，返回多签地址owner和active
      tags:
        - tron波场/查询类
      parameters:
        - name: address
          in: query
          description: ''
          required: false
          example: TTSFjEG3Lu9WkHdp4JrWYhbGP6K1REqnGQ
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  errcode:
                    type: integer
                  data:
                    type: object
                    properties:
                      address:
                        type: string
                      res:
                        type: object
                        properties:
                          owner:
                            type: array
                            items:
                              type: object
                              properties:
                                address:
                                  type: string
                                weight:
                                  type: integer
                              x-apifox-orders:
                                - address
                                - weight
                          active:
                            type: array
                            items:
                              type: object
                              properties:
                                address:
                                  type: string
                                weight:
                                  type: integer
                              required:
                                - address
                                - weight
                              x-apifox-orders:
                                - address
                                - weight
                        required:
                          - owner
                          - active
                        x-apifox-orders:
                          - owner
                          - active
                      msg:
                        type: string
                    required:
                      - address
                      - res
                      - msg
                    x-apifox-orders:
                      - address
                      - res
                      - msg
                  errmsg:
                    type: string
                required:
                  - errcode
                  - data
                  - errmsg
                x-apifox-orders:
                  - errcode
                  - data
                  - errmsg
              example:
                errcode: 0
                data:
                  address: TTSFjEG3Lu9WkHdp4JrWYhbGP6K1REqnGQ
                  res: ''
                  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-44190882-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://blockchainapi.gw.to
    description: 正式环境
security: []

```
