WinCL Admin API

Admin Controller

Operations 8

GET /bapi/v1/admin 어드민 리스트 #
POST /bapi/v1/admin 어드민 생성 #
GET /bapi/v1/admin/authority 어드민 권한 리스트 #
GET /bapi/v1/admin/profile 어드민 프로필 #
GET /bapi/v1/admin/tab 어드민 탭 리스트 #
GET /bapi/v1/admin/{id} 어드민 디테일 #
PUT /bapi/v1/admin/{id} 어드민 수정 #
DELETE /bapi/v1/admin/{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-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-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Wincl Admin API
  version: '1.0'
  description: Admin Controller
servers:
- url: https://api.wincl.io:443
  description: Inferred Url
tags:
- name: Admin
  description: Admin Controller
paths:
  /bapi/v1/admin:
    get:
      tags:
      - Admin
      summary: 어드민 리스트
      operationId: getAdminListUsingGET
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WinclResponseData_List_AdminUser'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
    post:
      tags:
      - Admin
      summary: 어드민 생성
      operationId: createAdminUsingPOST
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAdminRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WinclResponse'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
  /bapi/v1/admin/authority:
    get:
      tags:
      - Admin
      summary: 어드민 권한 리스트
      operationId: getAuthoritiesUsingGET
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WinclResponseData_List_CommonCode'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
  /bapi/v1/admin/profile:
    get:
      tags:
      - Admin
      summary: 어드민 프로필
      operationId: getAdminProfileUsingGET
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WinclResponseData_AdminUser'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
  /bapi/v1/admin/tab:
    get:
      tags:
      - Admin
      summary: 어드민 탭 리스트
      operationId: getTabListUsingGET
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WinclResponseData_AdminTabResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
  /bapi/v1/admin/{id}:
    get:
      tags:
      - Admin
      summary: 어드민 디테일
      operationId: getAdminDetailUsingGET
      parameters:
      - name: id
        in: path
        description: id
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WinclResponseData_AdminUser'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
    put:
      tags:
      - Admin
      summary: 어드민 수정
      operationId: updateAdminUsingPUT
      parameters:
      - name: id
        in: path
        description: id
        required: true
        style: simple
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateAdminRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WinclResponse'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
    delete:
      tags:
      - Admin
      summary: 어드민 삭제
      operationId: deleteAdminUsingDELETE
      parameters:
      - name: id
        in: path
        description: id
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WinclResponse'
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - Bearer 토큰 값:
        - global
components:
  schemas:
    AdminTabResponse:
      title: AdminTabResponse
      type: object
      properties:
        adminTabs:
          type: array
          items:
            type: string
            enum:
            - ADMIN
            - BANNER
            - CERTIFICATE
            - CREDIT
            - FAQ
            - GIFT_RECEIVE
            - GIFT_SEND
            - HEDERA
            - HOME_PRODUCT
            - INQUIRY
            - NEWS
            - NOTICE
            - PAYMENT
            - PRODUCT
            - PROJECT
            - REFUND
            - REWARD_COMPANY
            - REWARD_ISSUED
            - REWARD_ORDER
            - REWARD_PAYMENT_LOG
            - REWARD_PROGRAM
            - USER
    WinclResponse:
      title: WinclResponse
      type: object
      properties:
        code:
          type: string
        message:
          type: string
    WinclResponseData_AdminUser:
      title: WinclResponseData«AdminUser»
      type: object
      properties:
        code:
          type: string
        data:
          $ref: '#/components/schemas/AdminUser'
        message:
          type: string
    WinclResponseData_AdminTabResponse:
      title: WinclResponseData«AdminTabResponse»
      type: object
      properties:
        code:
          type: string
        data:
          $ref: '#/components/schemas/AdminTabResponse'
        message:
          type: string
    CreateAdminRequest:
      title: CreateAdminRequest
      type: object
      properties:
        authorities:
          type: array
          items:
            type: string
            enum:
            - ADMIN
            - BANNER
            - CERTIFICATE
            - CREDIT
            - FAQ
            - GIFT_RECEIVE
            - GIFT_SEND
            - HEDERA
            - HOME_PRODUCT
            - INQUIRY
            - NEWS
            - NOTICE
            - PAYMENT
            - PRODUCT
            - PROJECT
            - REFUND
            - REWARD_COMPANY
            - REWARD_ISSUED
            - REWARD_ORDER
            - REWARD_PAYMENT_LOG
            - REWARD_PROGRAM
            - USER
        email:
          type: string
        name:
          type: string
    CommonCode:
      title: CommonCode
      type: object
      properties:
        cd:
          type: string
          description: 코드
        cd_grp:
          type: string
          description: 코드 그룹
          enum:
          - ADMIN_AUTHORITY
          - B2B_PARTNER_QUESTION_CATEGORY
          - FAQ_CATEGORY
          - NEWS_CATEGORY
          - PROJECT_EFFECT
          - PROJECT_TYPE
          - QNA_TYPE
        nm_en:
          type: string
          description: 영어 이름
        nm_kr:
          type: string
          description: 한글 이름
        pos:
          type: integer
          description: 표시 순서
          format: int32
    WinclResponseData_List_AdminUser:
      title: WinclResponseData«List«AdminUser»»
      type: object
      properties:
        code:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/AdminUser'
        message:
          type: string
    UpdateAdminRequest:
      title: UpdateAdminRequest
      type: object
      properties:
        authorities:
          type: array
          items:
            type: string
            enum:
            - ADMIN
            - BANNER
            - CERTIFICATE
            - CREDIT
            - FAQ
            - GIFT_RECEIVE
            - GIFT_SEND
            - HEDERA
            - HOME_PRODUCT
            - INQUIRY
            - NEWS
            - NOTICE
            - PAYMENT
            - PRODUCT
            - PROJECT
            - REFUND
            - REWARD_COMPANY
            - REWARD_ISSUED
            - REWARD_ORDER
            - REWARD_PAYMENT_LOG
            - REWARD_PROGRAM
            - USER
        name:
          type: string
    WinclResponseData_List_CommonCode:
      title: WinclResponseData«List«CommonCode»»
      type: object
      properties:
        code:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/CommonCode'
        message:
          type: string
    AdminUser:
      title: AdminUser
      type: object
      properties:
        authorities:
          type: array
          items:
            type: string
        dttm_expire:
          type: integer
          format: int64
        dttm_reg:
          type: integer
          format: int64
        email:
          type: string
        google_uid:
          type: string
        id_adm_reg:
          type: string
        nm_adm:
          type: string
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT