For the complete documentation index, see llms.txt. This page is also available as Markdown.

스와이퍼 타입 관리

스와이퍼 타입 단건 조회

get

기능설명

  • 스와이퍼 타입 단건 조회 API 입니다.


상세설명

  • 스와이퍼 타입 번호로 스와이퍼 타입을 상세 조회합니다.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
swiperTypNostringRequired

스와이퍼 타입 번호

Example: 11
Responses
200

OK

*/*
timestampstring · date-timeOptional

result time

codestringOptional

result code

messagestringOptional

result message

isProcessbooleanOptional

process check

errorbooleanOptional

is error

get/v1/display/swiperType/{swiperTypNo}
GET /api/bo/v1/display/swiperType/{swiperTypNo} HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "timestamp": "2026-01-01T00:00:00.000Z",
  "code": "text",
  "message": "text",
  "isProcess": true,
  "payload": {
    "swiperTypNo": 11,
    "swiperTypId": "IMG_A",
    "swiperTypNm": "이미지A",
    "swiperTypDesc": "이미지 상하 노출, 텍스트 하단 노출",
    "useYn": "Y",
    "swiperTypeTargetList": [
      {
        "swiperTypNo": 11,
        "swiperTgtCd": 22,
        "dispSeq": 1,
        "swiperTgtCnt": 2
      }
    ],
    "swiperTypeTgtNmStr": "이미지+TEXT"
  },
  "error": true,
  "errors": [
    {
      "field": "text",
      "message": "text"
    }
  ]
}

스와이퍼 타입 단건 수정

put

기능설명

  • 스와이퍼 타입을 수정하는 API 입니다.


상세설명

  • 필수 값 목록

    • 스와이퍼 타입 번호

    • 스와이퍼 타입 ID

    • 스와이퍼 타입명

    • 스와이퍼 타입 설명

    • 사용여부

    • 스와이퍼 타입 대상 정보 목록

    • 등록자ID

    • 수정자ID


코드정리

  • 사용여부 : Y, N

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
swiperTypNostringRequired

스와이퍼 타입 번호

Body

스와이퍼 타입 기본

swiperTypNostringOptional

스와이퍼 타입 번호

Example: 11
swiperTypIdstringOptional

스와이퍼 타입 ID

Example: IMG_A
swiperTypNmstringOptional

스와이퍼 타입명

Example: 이미지A
swiperTypDescstringOptional

스와이퍼 타입 설명

Example: 이미지 상하 노출, 텍스트 하단 노출
useYnstringOptional

사용여부

Example: Y
swiperTypeTgtNmStrstringOptional

스와이퍼 타입 대상 정보 문자열

Example: 이미지+TEXT
Responses
200

OK

*/*
timestampstring · date-timeOptional

result time

codestringOptional

result code

messagestringOptional

result message

isProcessbooleanOptional

process check

payloadstringOptional

payload

errorbooleanOptional

is error

put/v1/display/swiperType/{swiperTypNo}
PUT /api/bo/v1/display/swiperType/{swiperTypNo} HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 274

{
  "swiperTypNo": 11,
  "swiperTypId": "IMG_A",
  "swiperTypNm": "이미지A",
  "swiperTypDesc": "이미지 상하 노출, 텍스트 하단 노출",
  "useYn": "Y",
  "swiperTypeTargetList": [
    {
      "swiperTypNo": 11,
      "swiperTgtCd": 22,
      "dispSeq": 1,
      "swiperTgtCnt": 2
    }
  ],
  "swiperTypeTgtNmStr": "이미지+TEXT"
}
200

OK

{
  "timestamp": "2026-01-01T00:00:00.000Z",
  "code": "text",
  "message": "text",
  "isProcess": true,
  "payload": "text",
  "error": true,
  "errors": [
    {
      "field": "text",
      "message": "text"
    }
  ]
}

스와이퍼 타입 목록 조회

get

기능설명

  • 스와이퍼 타입 목록 조회 API 입니다.


상세설명

  • 조건에 따라 스와이퍼 타입 목록을 조회합니다.


코드정리

  • 사용여부 : Y, N

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
swiperTypNostringOptional

스와이퍼 타입 번호

Example: 11
swiperTypNmstringOptional

스와이퍼 타입명

Example: 이미지
swiperTypIdstringOptional

스와이퍼 타입ID

Example: IMG
useYnstringOptional

사용여부

Example: Y
Responses
200

OK

*/*
timestampstring · date-timeOptional

result time

codestringOptional

result code

messagestringOptional

result message

isProcessbooleanOptional

process check

errorbooleanOptional

is error

get/v1/display/swiperType
GET /api/bo/v1/display/swiperType HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "timestamp": "2026-01-01T00:00:00.000Z",
  "code": "text",
  "message": "text",
  "isProcess": true,
  "payload": {
    "totalCount": 1,
    "payloads": [
      {
        "swiperTypNo": 11,
        "swiperTypId": "IMG_A",
        "swiperTypNm": "이미지A",
        "swiperTypDesc": "이미지 상하 노출, 텍스트 하단 노출",
        "useYn": "Y",
        "swiperTypeTargetList": [
          {
            "swiperTypNo": 11,
            "swiperTgtCd": 22,
            "dispSeq": 1,
            "swiperTgtCnt": 2
          }
        ],
        "swiperTypeTgtNmStr": "이미지+TEXT"
      }
    ]
  },
  "error": true,
  "errors": [
    {
      "field": "text",
      "message": "text"
    }
  ]
}

스와이퍼 타입 단건 등록

post

기능설명

  • 스와이퍼 타입을 등록하는 API 입니다.


상세설명

  • 필수 값 목록

    • 스와이퍼 타입 ID

    • 스와이퍼 타입명

    • 스와이퍼 타입 설명

    • 사용여부

    • 스와이퍼 타입 대상 정보 목록

    • 등록자ID

    • 수정자ID


코드정리

  • 사용여부 : Y, N

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body

스와이퍼 타입 기본

swiperTypNostringOptional

스와이퍼 타입 번호

Example: 11
swiperTypIdstringOptional

스와이퍼 타입 ID

Example: IMG_A
swiperTypNmstringOptional

스와이퍼 타입명

Example: 이미지A
swiperTypDescstringOptional

스와이퍼 타입 설명

Example: 이미지 상하 노출, 텍스트 하단 노출
useYnstringOptional

사용여부

Example: Y
swiperTypeTgtNmStrstringOptional

스와이퍼 타입 대상 정보 문자열

Example: 이미지+TEXT
Responses
200

OK

*/*
timestampstring · date-timeOptional

result time

codestringOptional

result code

messagestringOptional

result message

isProcessbooleanOptional

process check

payloadstringOptional

payload

errorbooleanOptional

is error

post/v1/display/swiperType
POST /api/bo/v1/display/swiperType HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 274

{
  "swiperTypNo": 11,
  "swiperTypId": "IMG_A",
  "swiperTypNm": "이미지A",
  "swiperTypDesc": "이미지 상하 노출, 텍스트 하단 노출",
  "useYn": "Y",
  "swiperTypeTargetList": [
    {
      "swiperTypNo": 11,
      "swiperTgtCd": 22,
      "dispSeq": 1,
      "swiperTgtCnt": 2
    }
  ],
  "swiperTypeTgtNmStr": "이미지+TEXT"
}
200

OK

{
  "timestamp": "2026-01-01T00:00:00.000Z",
  "code": "text",
  "message": "text",
  "isProcess": true,
  "payload": "text",
  "error": true,
  "errors": [
    {
      "field": "text",
      "message": "text"
    }
  ]
}

스와이퍼 타입 목록 삭제

delete

기능설명

  • 스와이퍼 타입 목록을 삭제하는 API 입니다.


상세설명

  • 필수 값 목록

    • 스와이퍼 타입 번호

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Bodyobject · SwiperType[]

스와이퍼 타입 기본

swiperTypNostringOptional

스와이퍼 타입 번호

Example: 11
swiperTypIdstringOptional

스와이퍼 타입 ID

Example: IMG_A
swiperTypNmstringOptional

스와이퍼 타입명

Example: 이미지A
swiperTypDescstringOptional

스와이퍼 타입 설명

Example: 이미지 상하 노출, 텍스트 하단 노출
useYnstringOptional

사용여부

Example: Y
swiperTypeTgtNmStrstringOptional

스와이퍼 타입 대상 정보 문자열

Example: 이미지+TEXT
Responses
200

OK

*/*
timestampstring · date-timeOptional

result time

codestringOptional

result code

messagestringOptional

result message

isProcessbooleanOptional

process check

payloadstringOptional

payload

errorbooleanOptional

is error

delete/v1/display/swiperType
DELETE /api/bo/v1/display/swiperType HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 276

[
  {
    "swiperTypNo": 11,
    "swiperTypId": "IMG_A",
    "swiperTypNm": "이미지A",
    "swiperTypDesc": "이미지 상하 노출, 텍스트 하단 노출",
    "useYn": "Y",
    "swiperTypeTargetList": [
      {
        "swiperTypNo": 11,
        "swiperTgtCd": 22,
        "dispSeq": 1,
        "swiperTgtCnt": 2
      }
    ],
    "swiperTypeTgtNmStr": "이미지+TEXT"
  }
]
200

OK

{
  "timestamp": "2026-01-01T00:00:00.000Z",
  "code": "text",
  "message": "text",
  "isProcess": true,
  "payload": "text",
  "error": true,
  "errors": [
    {
      "field": "text",
      "message": "text"
    }
  ]
}

매핑된 스와이퍼 타입 목록 조회

get

기능설명

  • 매핑된 스와이퍼 타입 목록을 조회하는 API 입니다.


상세설명

  • 필수 값 목록

    • 스와이퍼 타입 번호 목록

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
swiperTypNoListarrayRequired

스와이퍼 타입 번호 목록

Example: ["11","21"]
Responses
200

OK

*/*
timestampstring · date-timeOptional

result time

codestringOptional

result code

messagestringOptional

result message

isProcessbooleanOptional

process check

errorbooleanOptional

is error

get/v1/display/swiperType/swiperTypNo
GET /api/bo/v1/display/swiperType/swiperTypNo?swiperTypNoList=undefined HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "timestamp": "2026-01-01T00:00:00.000Z",
  "code": "text",
  "message": "text",
  "isProcess": true,
  "payload": [
    {
      "swiperTypNo": 11,
      "swiperTypId": "IMG_A",
      "swiperTypNm": "이미지A",
      "swiperTypDesc": "이미지 상하 노출, 텍스트 하단 노출",
      "useYn": "Y",
      "swiperTypeTargetList": [
        {
          "swiperTypNo": 11,
          "swiperTgtCd": 22,
          "dispSeq": 1,
          "swiperTgtCnt": 2
        }
      ],
      "swiperTypeTgtNmStr": "이미지+TEXT"
    }
  ],
  "error": true,
  "errors": [
    {
      "field": "text",
      "message": "text"
    }
  ]
}

마지막 업데이트