기본 아이콘 이미지 목록 조회

Request

RBC에서 제공되는 기본 아이콘 이미지 정보를 조회합니다.

get

RBC에서 제공되는 기본 아이콘 이미지 정보를 조회합니다.
조회된 파일 ID를 메시지 발송 시 또는 템플릿 등록 시 사용할 수 있습니다.

  • 계정 권한 : 마스터, 매니저, 대행사
Authorizations
get
GET /api/1.1/logo/common HTTP/1.1
Host: api-qa.rcsbizcenter.com
Authorization: Bearer JWT
Accept: */*

Response

필드명
타입
길이
필수여부
기본값
설명

array<object>

O

RBC에서 제공되는 기본 로고 정보

code

string

5

O

20000000

리턴코드값

status

integer

3

O

200

상태값

desc

string

O

처리메시지

result - array<object>

필드명
타입
길이
필수여부
기본값
설명

fileId

string

64

기본 로고 이미지 파일 ID 입니다.

fileUrl

string

기본 로고 이미지 파일 URL 입니다.

fileName

string

30

기본 로고명 입니다.

❖ response body sample

{
    "code": "20000000",
    "desc": null,
    "result": [
        {
            "fileName": "프로모션.gif",
            "fileUrl": "https://file-qa.rcsbizcenter.com/form/messagebase.common/LT-messagebase.common-DdWk6s_1.gif",
            "fileId": "LT-messagebase.common-DdWk6s"
        },
        {
            "fileName": "쿠폰.gif",
            "fileUrl": "https://file-qa.rcsbizcenter.com/form/messagebase.common/LT-messagebase.common-5Weq00_1.gif",
            "fileId": "LT-messagebase.common-5Weq00"
        },
        {
            "fileName": "이벤트.gif",
            "fileUrl": "https://file-qa.rcsbizcenter.com/form/messagebase.common/LT-messagebase.common-jUAJX2_1.gif",
            "fileId": "LT-messagebase.common-jUAJX2"
        },
        {
            "fileName": "예약.gif",
            "fileUrl": "https://file-qa.rcsbizcenter.com/form/messagebase.common/LT-messagebase.common-2Yxt2H_1.gif",
            "fileId": "LT-messagebase.common-2Yxt2H"
        },
        {
            "fileName": "영수증.gif",
            "fileUrl": "https://file-qa.rcsbizcenter.com/form/messagebase.common/LT-messagebase.common-2k8ydI_1.gif",
            "fileId": "LT-messagebase.common-2k8ydI"
        },
        {
            "fileName": "알림.gif",
            "fileUrl": "https://file-qa.rcsbizcenter.com/form/messagebase.common/LT-messagebase.common-YCVd02_1.gif",
            "fileId": "LT-messagebase.common-YCVd02"
        }
    ],
    "status": 200
}

Last updated