반려 브랜드 등록 재승인 요청
Request
RBC 웹에서 임시저장으로 등록한 브랜드 또는 신규 브랜드 등록 검수 시 반려된 경우 브랜드 수정 후 승인요청 시 사용합니다.
브랜드 등록 POST API를 통해 승인 요청하였으나 검수 시 반려되어 재승인 요청 또는
RBC 홈페이지에서 임시저장한 브랜드 정보를 수정하여 승인 요청하는 경우 사용합니다.
- 계정 권한 : 마스터, 매니저
- 브랜드 권한 : 브랜드 대표운영자(브랜드를 등록한 마스터 또는 매니저)
- 수정 대상 브랜드 상태 : 반려, 저장
Authorizations
Path parameters
brandIdstring · max: 13Required
maxLength: 13 - 브랜드 내 정보 접근시 사용되는 브랜드ID Path Parameter 입니다.
Body
brandProfileobject · binaryRequired
브랜드 프로필 이미지를 업로드합니다.
최소사이즈: 388X388px / 최대사이즈: 1080X1080px / 1:1 비율 / 파일형식 png (최대1MB)
brandBackgroundobject · binaryOptional
브랜드 백그라운드 이미지를 업로드합니다.
최소사이즈: 388X388px / 최대사이즈: 1080X1080px / 1:1 비율 / 파일형식 jpg, png (최대1MB)
mainMdnstring · max: 40OptionalDeprecated
maxLength: 40 - 대표발신번호 개념 제거되어 더 이상 유효하지 않습니다.
subNumCertificateobject · binaryOptional
통신서비스이용증명원을 업로드합니다.
대화방(발신번호) 등록을 위해 chatbots 지정한 경우 필수로 함께 업로드해야 합니다.
허용되는 파일형식 : jpg, png, pdf, tiff, zip (최대20MB)
put
PUT /api/1.1/corp/brand/{brandId} HTTP/1.1
Host: api-qa.rcsbizcenter.com
Authorization: Bearer JWT
Content-Type: multipart/form-data
Accept: */*
Content-Length: 703
{
"regBrand": {
"regBrand": {
"name": "text",
"description": "text",
"tel": "text",
"menus": [
{
"buttonType": "call",
"applink": {
"packageName": "text",
"action": "text",
"uri": "text"
},
"weblink": "text"
}
],
"categoryId": "text",
"subCategoryId": "text",
"categoryOpt": "text",
"zipCode": "text",
"roadAddress": "text",
"detailAddress": "text",
"email": "name@gmail.com",
"webSiteUrl": "text",
"initTab": "FEED",
"initFeedItems": [
"call"
],
"templateColor": "text",
"bizInfoYn": "N",
"bizInfoTitle": "text",
"bizInfoContent": "text"
}
},
"brandProfile": {},
"brandBackground": {},
"chatbots": {
"chatbots": [
{
"mdn": "text",
"subNum": "text",
"subTitle": "text",
"rcsReply": "1",
"display": "01",
"inputField": 1,
"subDescr": "text",
"saftyStatusYn": "Y"
}
]
},
"subNumCertificate": {}
}
❖ request body form data sample
'regBrand="{
\"regBrand\": {
\"name\": \"테스트브랜드\",
\"description\": \"반려브랜드등록재승인요청\",
\"tel\": \"09046123177\",
\"categoryId\": \"EDU\",
\"subCategoryId\": \"EDU007\",
\"categoryOpt\": \"\",
\"zipCode\": \"03924\",
\"roadAddress\": \"서울특별시\",
\"detailAddress\": \"17층\",
\"menus\": [ {\"buttonType\": \"call\"}, {\"buttonType\": \"chat\"} ]
}
}"' \
Response
필드명
타입
길이
필수여부
기본값
설명
result - array<object>
필드명
타입
길이
필수여부
기본값
설명
brandId
string
13
O
등록된 브랜드ID 입니다.
❖ response body sample
{
"code": "20000000",
"desc": null,
"result": [
{
"brandId": "BR.0a81DDlZjz"
}
],
"status": 200
}
error code는 RCS Biz Center - Response body error code 참조
Last updated