메신저 서비스알림 가이드
Last updated
Last updated
이 문서는 오피스넥스트 메신저 서비스 알림 전송 API에 대한 전반적 이해를 돕는 것을 목적으로 합니다.
서비스알림 전송 API 요청 URL은 입니다.
서비스알림 전송 API를 사용하려면 토큰이 필요합니다. 토큰은 지란지교소프트 메신저 개발팀 이준태에게 연락바랍니다.
서비스알림 전송 API는 페이지와 데이터베이스 리소스에 대한 POST
요청을 통해 작업을 수행하는 RESTful 규칙을 따릅니다. 요청과 응답 본문은 JSON으로 인코딩됩니다.
JSON 형식에 필요한 데이터는 whole
, to
, type
, template
, contents
, items
입니다.
whole
데이터는 전체 전송 여부 값이며, boolean 값입니다. true일 경우 전체 전송입니다.
to
데이터는 받는 사람의 오피스웨이브 사용자 ID 또는 email 값을 입력하면 됩니다. 배열형식이며 여러명에게 보낼 수 있습니다. whole
이 true인 경우 to 값은 빈 배열이어야 합니다.
type
데이터는 서비스알림의 유형입니다. type
값은 default
, static
, carousel
값이 있습니다.
default
버튼이나 링크가 연결되지 않고 텍스트형식만 보내는 방식입니다.
static
버튼이나 링크가 추가된 방식입니다.
carousel
static 방식의 서비스알림을 한꺼번에 묶어서 보내는 방식입니다.
template
데이터는 서비스알림의 표현 레이아웃를 의미합니다. template
값은 text
, card
, list
값이 있습니다.
template
데이터는 서비스알림의 표현 레이아웃를 의미합니다. template
값은 text
, card
, list
값이 있습니다.
text
텍스트로만 구성되어있는 레이아웃입니다.
card
사진과 텍스트로 구성되어있는 레이아웃입니다.
list
사진과 텍스트로 구성된 아이템들을 여러개 표현하는 레이아웃입니다.
contents
데이터는 서비스알림에서 type
이 default
일 때에만 사용하는 값으로써, 순수 텍스트만 보내는 경우에 사용합니다.
items
데이터는 type
이 default
를 제외한 static
, carousel
템플릿에서만 사용할 수 있습니다.
아래 타입 / 템플릿 예시의 json 값을 body에 담아서 요청하면 예시 사진과 같이 표시되게 됩니다.
whole
boolean
X
전체 전송 여부
false
to
array
whole이 false이거나 없는 경우 O
받는 대상 유저의 이메일 값
[”example1@jiran.com”, “example2@jiran.com”]
contents
string
O
서비스 알림의 본문 내용
“컨텐츠입니다.”
type
string
X
서비스 알림의 타입
“default”
template
string
X
서비스 알림의 레이아웃
“text”
whole
boolean
X
전체 전송 여부
false
to
array
whole이 false이거나 없는 경우 O
받는 대상 유저의 이메일 값
[”example1@jiran.com”, “example2@jiran.com”]
type
string
X
서비스 알림의 타입
“default”
template
string
X
서비스 알림의 레이아웃
“text”
items
array
O
서비스 알림의 레이아웃 요소
items.header
string
X
text template의 header
“헤더입니다”
50자
items.contents
string
O
text template의 contents
“컨텐츠입니다”
1000자
items.buttons
array
X
text template의 버튼
버튼 최대 3개
items.buttons.label
string
O
버튼에 쓰여진 글자
“이미지 보기”
vertical: 14자 horizontal: 8자
items.buttons.type
string
O
버튼 타입
“image”
image, link, webview
items.buttons.href
string
O
버튼 클릭 했을 때 참조하는 링크 또는 코드 값
items.button_layout
string
X
버튼 배치방식
“vertical”
vertical, horizontal
whole
boolean
X
전체 전송 여부
false
to
array
whole이 false이거나 없는 경우 O
받는 대상 유저의 이메일 값
[”example1@jiran.com”, “example2@jiran.com”]
type
string
X
서비스 알림의 타입
“default”
template
string
X
서비스 알림의 레이아웃
“text”
items
array
O
서비스 알림의 레이아웃 요소
items.header
string
O
list template의 header
“헤더입니다.”
50자
items.items
array
O
list template의 요소
static 타입인 경우 최대 5개
items.items.image_url
string
X
list template의 이미지 url
items.items.title
string
O
list template의 제목
“타이틀1입니다.”
50자
items.items.contents
string
X
list template의 내용
“컨텐츠1입니다.”
200자
items.items.type
string
href 있으면 O
list template의 클릭 타입
“image”
image, link
items.items.href
string
type 있으면 O
list template의 클릭 시 참조하는 링크 또는 코드 값
items.buttons
array
X
card template의 버튼
버튼 최대 3개
items.buttons.label
string
O
버튼에 쓰여진 글자
“이미지1”
vertical : 14자 horizontal : 8자
items.buttons.type
string
O
버튼 타입
“image”
image, link, webview
items.buttons.href
string
O
버튼 클릭 했을 때 참조하는 링크 또는 코드 값
items.button_layout
string
X
버튼 배치방식
“vertical”
vertical, horizontal
whole
boolean
X
전체 전송 여부
false
to
array
whole이 false이거나 없는 경우 O
받는 대상 유저의 이메일 값
[”example1@jiran.com”, “example2@jiran.com”]
type
string
X
서비스 알림의 타입
“default”
template
string
X
서비스 알림의 레이아웃
“text”
items
array
O
서비스 알림의 레이아웃 요소
items.*.header
string
X
text template의 header
“헤더입니다”
50자
items.*.contents
string
O
text template의 contents
“컨텐츠입니다”
1000자
items.*.buttons
array
X
text template의 버튼
버튼 최대 3개
items.*.buttons.label
string
O
버튼에 쓰여진 글자
“이미지”
items.*.buttons.type
string
O
버튼 타입
“image”
image, link, webview
items.*.buttons.href
string
O
버튼 클릭 했을 때 참조하는 링크 또는 코드 값
items.*.button_layout
string
X
버튼 배치방식
“vertical”
vertical 고정
whole
boolean
X
전체 전송 여부
false
to
array
whole이 false이거나 없는 경우 O
받는 대상 유저의 이메일 값
[”example1@jiran.com”, “example2@jiran.com”]
type
string
X
서비스 알림의 타입
“default”
template
string
X
서비스 알림의 레이아웃
“text”
items
array
O
서비스 알림의 레이아웃 요소
items.title
string
O
card template의 header
“헤더입니다”
100자
items.contents
string
X
card template의 contents
“컨텐츠입니다”
1000자
items.image_url
string
O
card template의 이미지 url
items.buttons
array
X
card template의 버튼
버튼 최대 3개
items.buttons.label
string
O
버튼에 쓰여진 글자
“이미지”
items.buttons.type
string
O
버튼 타입
“image”
image, link, webview
items.buttons.href
string
O
버튼 클릭 했을 때 참조하는 링크 또는 코드 값
items.button_layout
string
X
버튼 배치방식
vertical 고정
whole
boolean
X
전체 전송 여부
false
to
array
whole이 false이거나 없는 경우 O
받는 대상 유저의 이메일 값
[”example1@jiran.com”, “example2@jiran.com”]
type
string
X
서비스 알림의 타입
“default”
template
string
X
서비스 알림의 레이아웃
“text”
items
array
O
서비스 알림의 레이아웃 요소
items.*.header
string
O
list template의 header
“헤더입니다.”
50자
items.*.items
array
O
list template의 요소
carousel인 경우 최대 4개
items.*.items.image_url
string
X
list template의 이미지 url
items.*.items.title
string
O
list template의 제목
“타이틀1입니다.”
50자
items.*.items.contents
string
X
list template의 내용
“컨텐츠1입니다.”
200자
items.*.items.type
string
href 있으면 O
list template의 클릭 타입
“image”
image, link
items.*.items.href
string
type 있으면 O
list template의 클릭 시 참조하는 링크 또는 코드 값
items.*.buttons
array
X
card template의 버튼
버튼 최대 3개
items.*.buttons.label
string
O
버튼에 쓰여진 글자
“이미지1”
items.*.buttons.type
string
O
버튼 타입
“image”
image, link, webview
items.*.buttons.href
string
O
버튼 클릭 했을 때 참조하는 링크 또는 코드 값
items.*.button_layout
string
X
버튼 배치방식
“vertical”
vertical 고정
href는 버튼을 클릭 했을 때 참조하는 링크 또는 코드 값입니다.
horizontal
vertical
버튼 레이아웃의 제한사항은 다음과 같습니다.
"vertical" (세로배치) 혹은 "horizontal" (가로배치) 만 입력 가능합니다.
단일형만 button layout 설정 가능, 케로셀형은 세로배치 고정입니다.
단일형에서 별도 지정하지 않는 경우 버튼 개수에 따라 배치모양이 결정됩니다. 2개 이하: 가로배치 3개: 세로 배치
버튼 레이아웃에 따른 버튼명 글자 수 제한은 다음과 같습니다. vertical 레이아웃 : button label 14자, horizontal 레이아웃 : button label 8자
레이아웃에 따른 버튼명 글자 수 제한은 다음과 같습니다. vertical 레이아웃 : button label 14자, horizontal 레이아웃 : button label 8자
type
template
속성
사이즈 제한
static / carousel
text
header
50자
static / carousel
text
contents
1,000자
static / carousel
card
title
100자
static / carousel
card
contents
1,000자
static / carousel
list
header
50자
static / carousel
list
title
50자
static / carousel
list
contents
200자
글자수 제한을 넘어서도 요청을 받지 않는게 아닌 저 글자수만큼만 잘라서 처리합니다.
HTTP 응답 코드는 일반적인 성공과 오류 클래스를 나타내는 데 사용됩니다.
HTTP 상태
설명
200
성공적으로 처리된 요청
HTTP 상태명
code
message
403
invalid_request
잘못된 요청입니다.
410
invalid_contract
유효하지 않는 계약입니다.
419
invalid_token
만료된 토큰입니다.
422
invalid_parameter
유효하지 않는 요청 파라미터입니다.
“"
“
“
“
“"
“
“
“
“
“