WinCL Admin User API

가입자 목록 조회

Operations 2

GET /bapi/v1/user 가입 유저 리스트 #
GET /bapi/v1/user/{id} 가입 유저 상세정보 #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/wincl-admin-user-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

wincl-admin-user-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Wincl Admin Admin User API
  version: '1.0'
  description: Admin Controller
servers:
- url: https://api.wincl.io:443
  description: Inferred Url
tags:
- name: Admin User
  description: 가입자 목록 조회
paths:
  /bapi/v1/user:
    get:
      tags:
      - Admin User
      summary: 가입 유저 리스트
      description: '전체 가입자 리스트를 얻는다. 닉네임, 이메일, 기관코드로 필터링할 수 있다. 각 필터는 부분 문자열로 검색한다. loginId 필터는 과거호환성을 위해서 남겨둔다.


        **Usage:**

        - /?nickname={nickname}&...

        - /?email={email}&...

        - /?company={company}&...

        - /?nickname={nickname}&email={email}&...'
      operationId: userListUsingGET
      parameters:
      - name: pageSize
        in: query
        description: 페이지당 아이템 개수
        required: true
        style: form
        schema:
          type: integer
          format: int32
      - name: pageNum
        in: query
        description: 페이지 넘버
        required: true
        style: form
        schema:
          type: integer
          format: int32
      - name: loginId
        in: query
        description: 로그인 아이디
        required: false
        style: form
        schema:
          type: string
      - name: nickname
        in: query
        description: 닉네임
        required: false
        style: form
        schema:
          type: string
      - name: email
        in: query
        description: 이메일
        required: false
        style: form
        schema:
          type: string
      - name: company
        in: query
        description: 기관 코드
        required: false
        style: form
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/WinclResponseDataList_User'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
  /bapi/v1/user/{id}:
    get:
      tags:
      - Admin User
      summary: 가입 유저 상세정보
      description: UserID로 가입자 상세 정보를 얻는다.
      operationId: userInfoUsingGET
      parameters:
      - name: id
        in: path
        description: id
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/WinclResponseData_UserDetail'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
components:
  schemas:
    WinclResponseDataList_User:
      title: WinclResponseDataList«User»
      type: object
      properties:
        code:
          type: string
        currentPageNum:
          type: integer
          description: 현재 페이지 번호
          format: int32
        items:
          type: array
          items:
            $ref: '#/components/schemas/User'
        message:
          type: string
        pageSize:
          type: integer
          description: 페이지당 아이템 개수
          format: int32
        sortType:
          type: string
          description: 정렬 기준
          enum:
          - AMOUNT_ASC
          - AMOUNT_DESC
          - ASC
          - DESC
          - NONE
          - PRICE_ASC
          - PRICE_DESC
          - UNIT_PRICE_ASC
          - UNIT_PRICE_DESC
        totalCount:
          type: integer
          description: 전체 아이템 개수
          format: int32
        totalPages:
          type: integer
          description: 전체 페이지 수
          format: int32
    WinclResponseData_UserDetail:
      title: WinclResponseData«UserDetail»
      type: object
      properties:
        code:
          type: string
        data:
          $ref: '#/components/schemas/UserDetail'
        message:
          type: string
    UserDetail:
      title: UserDetail
      type: object
      properties:
        addr:
          type: string
          description: 지갑 주소
        cd_country:
          type: string
          description: 거주국가코드
        company_code:
          type: string
          description: 기관 코드
        dttm_expire:
          type: string
          description: 마감날짜
        dttm_reg:
          type: integer
          description: 가입날짜
          format: int64
        dttm_upd:
          type: integer
          description: 변경날짜
          format: int64
        email:
          type: string
          description: 유저가 설정한 이메일
        email_social:
          type: string
          description: 소셜로그인 에서 받아온 이메일
        id_corp:
          type: string
          description: 소셜 로그인 회사
          enum:
          - FACEBOOK
          - GOOGLE
          - KAKAO
          - PAYCO
        id_login:
          type: string
          description: 유저가 설정한 아이디, 외부노출용
        id_social_usr:
          type: string
          description: 소셜로그인에서 주는 유저식별 아이디
        id_usr:
          type: string
          description: 유저 아이디
        img_profile:
          type: string
          description: 유저 프로필 이미지
        nickname:
          type: string
          description: 유저 닉네임
        nm_usr:
          type: string
          description: 유저 이름
        reg_unixtime:
          type: integer
          description: 가입 유닉스 시간
          format: int64
    User:
      title: User
      type: object
      properties:
        b2bCustomerCode:
          type: string
          description: user.b2b_customer_code
        b2bRpCode:
          type: string
          description: user.b2b_rp_code
        b2bUser:
          type: boolean
        cd_country:
          type: string
          description: 거주국가코드
        company_code:
          type: string
          description: 회사코드
        dttm_expire:
          type: string
        dttm_reg:
          type: string
        dttm_upd:
          type: string
        email:
          type: string
          description: 유저가 설정한 이메일
        email_social:
          type: string
          description: 소셜로그인 에서 받아온 이메일
        id_corp:
          type: string
          description: 소셜 로그인 회사
          enum:
          - FACEBOOK
          - GOOGLE
          - KAKAO
          - PAYCO
        id_login:
          type: string
          description: 유저가 설정한 아이디, 외부노출용
        id_social_usr:
          type: string
          description: 소셜로그인에서 주는 유저식별 아이디
        id_usr:
          type: string
          description: 유저 아이디
        img_profile:
          type: string
          description: 유저 프로필 이미지
        nickname:
          type: string
          description: 유저 닉네임
        nm_usr:
          type: string
          description: 유저 이름
        phone_number:
          type: string
        reg_unixtime:
          type: integer
          format: int64
        status:
          type: string
          description: '유저 상태: REGISTERING, REGISTERED, DEREGISTERED, ARCHIVED'
          enum:
          - ARCHIVED
          - DEREGISTERED
          - REGISTERED
          - REGISTERING
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT