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

OB유형관리

OB유형 등록/수정

post

기능설명

  • OB유형을 등록/수정 합니다.


상세설명

  • 신규 OB유형을 등록하거나, 기존 OB유형정보를 수정 합니다.

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

OB유형번호

obTypNmStringOptional

OB유형명

obTypDescStringOptional

OB유형설명

useYnStringOptional

사용여부

cnslTypNoStringOptional

상담유형번호

Body
Responses
200

성공

No content

post/v2/customerservice/outbound-types/saveList
POST /api/bo/v2/customerservice/outbound-types/saveList HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 510

{
  "all": [
    {
      "obTypNo": 10331,
      "obTypNm": "OB테스트",
      "obTypDesc": "OB테스트 유형",
      "useYn": "Y",
      "cnslTypNo": 10020,
      "sortSeq": 1
    }
  ],
  "create": [
    {
      "obTypNo": 10331,
      "obTypNm": "OB테스트",
      "obTypDesc": "OB테스트 유형",
      "useYn": "Y",
      "cnslTypNo": 10020,
      "sortSeq": 1
    }
  ],
  "update": [
    {
      "obTypNo": 10331,
      "obTypNm": "OB테스트",
      "obTypDesc": "OB테스트 유형",
      "useYn": "Y",
      "cnslTypNo": 10020,
      "sortSeq": 1
    }
  ],
  "delete": [
    {
      "obTypNo": 10331,
      "obTypNm": "OB테스트",
      "obTypDesc": "OB테스트 유형",
      "useYn": "Y",
      "cnslTypNo": 10020,
      "sortSeq": 1
    }
  ]
}

No content

OB유형 목록 전체 조회

get

기능설명

  • OB유형 목록을 전체 조회 합니다.

  • 검색영역에 셀렉트 박스를 표시할 때 사용할 수 있습니다.


상세설명

  • 등록된 OB유형 목록을 전체 조회 합니다.

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

사용여부

Example: Y
Responses
200

성공

*/*
timestampstring · date-timeOptional

result time

codestringOptional

result code

messagestringOptional

result message

isProcessbooleanOptional

process check

errorbooleanOptional

is error

get/v2/customerservice/outbound-types
GET /api/bo/v2/customerservice/outbound-types HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "timestamp": "2026-01-01T00:00:00.000Z",
  "code": "text",
  "message": "text",
  "isProcess": true,
  "payload": [
    {
      "obTypNo": "text",
      "obTypNm": "text",
      "obTypDesc": "text",
      "useYn": "text",
      "cnslTypNo": "text",
      "cnslTypNm": "text",
      "useCnt": 1,
      "sortSeq": 1
    }
  ],
  "error": true,
  "errors": [
    {
      "field": "text",
      "message": "text"
    }
  ]
}

모든 OB 유형 조회

get

기능설명

  • 등록된 모든 OB 유형정보를 조회 합니다.


상세설명

  • 등록된 모든 OB 유형정보를 조회 합니다.

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

사용여부

Example: Y
Responses
200

성공

*/*
timestampstring · date-timeOptional

result time

codestringOptional

result code

messagestringOptional

result message

isProcessbooleanOptional

process check

errorbooleanOptional

is error

get/v2/customerservice/outbound-types/getObTypeNoPagingList
GET /api/bo/v2/customerservice/outbound-types/getObTypeNoPagingList HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "timestamp": "2026-01-01T00:00:00.000Z",
  "code": "text",
  "message": "text",
  "isProcess": true,
  "payload": [
    {
      "obTypNo": "text",
      "obTypNm": "text",
      "obTypDesc": "text",
      "useYn": "text",
      "cnslTypNo": "text",
      "cnslTypNm": "text",
      "useCnt": 1,
      "sortSeq": 1
    }
  ],
  "error": true,
  "errors": [
    {
      "field": "text",
      "message": "text"
    }
  ]
}

OB유형 목록 조회

get

기능설명

  • OB유형 목록을 조회 합니다.


상세설명

  • 등록된 OB유형 목록을 조회 합니다.

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

사용여부

Example: Y
Responses
200

성공

*/*
totalCountinteger · int32Optional
get/v2/customerservice/outbound-types/getObTypeList
GET /api/bo/v2/customerservice/outbound-types/getObTypeList HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "totalCount": 1,
  "payloads": [
    {
      "obTypNo": "text",
      "obTypNm": "text",
      "obTypDesc": "text",
      "useYn": "text",
      "cnslTypNo": "text",
      "cnslTypNm": "text",
      "useCnt": 1,
      "sortSeq": 1
    }
  ]
}

OB유형명 중복여부 확인

get

기능설명

  • 등록하는 OB유형명 중복여부를 확인 합니다.


상세설명

  • 등록하는 OB유형명과 동일한 데이터가 있는지 확인 합니다.

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

OB유형명

Example: OB테스트1
Responses
200

성공

*/*
timestampstring · date-timeOptional

result time

codestringOptional

result code

messagestringOptional

result message

isProcessbooleanOptional

process check

payloadbooleanOptional

payload

errorbooleanOptional

is error

get/v2/customerservice/outbound-types/checkObTypNm
GET /api/bo/v2/customerservice/outbound-types/checkObTypNm HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "timestamp": "2026-01-01T00:00:00.000Z",
  "code": "text",
  "message": "text",
  "isProcess": true,
  "payload": true,
  "error": true,
  "errors": [
    {
      "field": "text",
      "message": "text"
    }
  ]
}

OB유형 목록 조회

get

기능설명

  • OB유형 목록을 조회 합니다.


상세설명

  • 등록된 OB유형 목록을 조회 합니다.

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

사용여부

Example: Y
Responses
200

성공

*/*
timestampstring · date-timeOptional

result time

codestringOptional

result code

messagestringOptional

result message

isProcessbooleanOptional

process check

errorbooleanOptional

is error

get/v1/customerservice/obTypeMgmt/getObTypeList
GET /api/bo/v1/customerservice/obTypeMgmt/getObTypeList HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "timestamp": "2026-01-01T00:00:00.000Z",
  "code": "text",
  "message": "text",
  "isProcess": true,
  "payload": [
    {
      "obTypNo": "text",
      "obTypNm": "text",
      "obTypDesc": "text",
      "useYn": "text",
      "cnslTypNo": "text",
      "cnslTypNm": "text",
      "useCnt": 1,
      "sortSeq": 1
    }
  ],
  "error": true,
  "errors": [
    {
      "field": "text",
      "message": "text"
    }
  ]
}

상담유형에 따른 OB 유형 조회

get

기능설명

  • 상담유형에 따른 OB 유형을 조회 합니다.


상세설명

  • 상담유형에 따른 OB 유형을 조회 합니다.

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

상담유형번호

Example: 10020
Responses
200

성공

*/*
timestampstring · date-timeOptional

result time

codestringOptional

result code

messagestringOptional

result message

isProcessbooleanOptional

process check

errorbooleanOptional

is error

get/v1/customerservice/obTypeMgmt/getObCnslTypeList
GET /api/bo/v1/customerservice/obTypeMgmt/getObCnslTypeList HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "timestamp": "2026-01-01T00:00:00.000Z",
  "code": "text",
  "message": "text",
  "isProcess": true,
  "payload": [
    {
      "obTypNo": "text",
      "obTypNm": "text",
      "obTypDesc": "text",
      "useYn": "text",
      "cnslTypNo": "text",
      "cnslTypNm": "text",
      "useCnt": 1,
      "sortSeq": 1
    }
  ],
  "error": true,
  "errors": [
    {
      "field": "text",
      "message": "text"
    }
  ]
}

마지막 업데이트