(deprecated) 2. B2B 교환권
최신으로 제공되는 API는 29.1. Server API 예제 (/talk) 에서 확인해 주세요.
(deprecated) /talk/voucher/create
Description
kakaogame sdk 3.0 플레이어의 연결된 카카오톡으로 B2B 교환권 발송을 요청합니다.
발송 요청은 초당 100건 이하로 설정해주세요.
Method
POST
Request Headers
Name | Type | Mandatory | Description |
appId | String | Y | 앱 아이디
|
appSecret | String | Y | 앱 시크릿
|
playerId | String | Y | 플레이어 아이디 |
Content-Type | String | Y | "application/json;charset=UTF-8" |
Authorization | String | Y | Authorization: KakaoAK {ADMIN_KEY} 예제) Authorization: KakaoAK 11118035a320f23423585acae3ded1111 |
Request Body Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
voucherApiKey | String | Y | 발송 교환권 key |
isDuplicate | String | Y | 중복 허용 여부 ("Y" or "N") |
Response Content
Name | Type | Description |
---|---|---|
code | String | 처리 결과 0인 경우 성공, 기타 값인 경우 실패 |
message | String | 처리 메세지 |
Response Status Code
Status Code | Status Code 설명 | Status Code 상세 설명 |
---|---|---|
200 | 정상 응답 | 정상 |
400 | Bad Request | 파싱되지 않는 요청 데이터. 필수 파라미터 부족 or 파라미터 타입 오류 |
401 | Unauthenticated | 인증 실패 |
406 | Not Acceptable | 처리 불가 |
461 | Invalid Message Box | messageBoxId로 요청된 메시지 박스가 존재하지 않음. |
500 | Internal Server Error | 서버 시스템 내부 오류 |
503 | Service Unavailable | 서비스가 가능하지 않은 상태 (예, 내부 서버간 timeout) |
Example Request
POST /service/v3/talk/voucher/create HTTP/1.1
Host: openapi-zinny3.game.kakao.com:10443
Content-Type: application/json;charset=UTF-8
appId: 103815
appSecret: 951b75bf17fe0885ab5106ba2a9f9bc9
playerId: 319921919896
Authorization: KakaoAK 11118035a320f23423585acae3ded1111
{
"voucherApiKey": "c26fc43d-05c7-4b37-ad61-27e0c3df90f0",
"isDuplicate": "Y"
} |
Example Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
{
"code": "0",
"message": "발송처리 되었습니다."
} |
(deprecated) /talk/emoticon/reward
Description
미션달성형 이모티콘 발송 요청입니다.
Method
POST
Request Headers
Name | Type | Mandatory | Description |
appId | String | Y | 앱 아이디
|
appSecret | String | Y | 앱 시크릿
|
playerId | String | Y | 플레이어 아이디 |
Content-Type | String | Y | "application/json;charset=UTF-8" |
Authorization | String | Y | Authorization: KakaoAK {ADMIN_KEY} 예제) Authorization: KakaoAK 11118035a320f23423585acae3ded1111 |
Request Body Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
rewardEventCode | String | Y | 미션달성형 이모티콘 이벤트 코드 |
Response Content
Name | Type | Description |
---|---|---|
code | String | 처리 결과 200인 경우 성공, 기타 값인 경우 실패 |
message | String | 처리 메세지 |
Response Status Code
Status Code | Status Code 설명 | Status Code 상세 설명 | 세부코드 |
---|---|---|---|
200 | 정상 응답 | 정상 |
|
400 | Bad Request | 파싱되지 않는 요청 데이터. 필수 파라미터 부족 or 파라미터 타입 오류 | { |
401 | Unauthenticated | 인증 실패 |
|
403 |
| 가입되지 않은 사용자에 대해 요청한 경우 | { |
403 |
| (이벤트 실제 시작 전, 테스트 기간) | (이벤트 실제 시작 전, 테스트 기간) |
403 |
| 잘못된 event code로 요청한 경우 | { |
404 |
| 존재하지 않은 리소스를 요청한 경우 | { |
406 | Not Acceptable | 처리 불가 | { |
406 |
| 이미 이모티콘을 지급받은 경우 | { |
410 |
| 유효한 이벤트 기간이 아닌 경우 | { |
461 | Invalid Message Box | messageBoxId로 요청된 메시지 박스가 존재하지 않음. |
|
500 | Internal Server Error | 서버 시스템 내부 오류 | { |
503 | Service Unavailable | 서비스가 가능하지 않은 상태 (예, 내부 서버간 timeout) 이 경우 반드시 차후에 다시 지급할 수 있도록 재지급 로직을 구현 해주시기 바랍니다. | { |
Example Request
POST /service/v3/talk/emoticon/reward HTTP/1.1
Host: openapi-zinny3.game.kakao.com:10443
Authorization: KakaoAK temp3f036e2543b6596f141955441111
appId: 111111
playerId: 123412341234
appSecret: temp8d43622fc531bb2a9b3e91f11111
Content-Type: application/json;charset=UTF-8
{
"rewardEventCode":"testEventCode"
} |
Example Response