Google Play PC 구매 예약(소모성)
기본 정보
Google Play PC 결제를 진행하기 전에 예약하는 단계로 상세 API 정의는 Google Play 구매 예약(소모성)와 동일합니다.
해당 문서에서는 주요 차이점에 대해서만 가이드 하겠습니다.
Request
HTTP Request end point
POST https://각 환경별 빌링시스템 도메인/billing/api-game/v1/purchase/google/play/pc/consumable/reserve
요청 curl 샘플
샘플 curl 커맨드입니다. 요청 정보에 맞게 변경해서 호출하세요.
Google 모바일과 데이터 구분을 위해서 appStore는 ‘GOOGLE_PLAY_PC’ 로 요청되어야합니다.
결제 수단(payment)는 Google 모바일과 동일하게 GOOGLE_PLAY 입니다.
curl --location 'https://api-qa.pub-dev.hybegames.io/billing/api-game/v1/purchase/google/play/pc/consumable/reserve' \
--header 'X-Req-Pjid: 1201' \
--header 'X-Auth-Access-Key: test-auth-key' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'reqId=userId_reserve-google_98b50907-0928-493b-a816-dac8dbca1f253-2025-07-22' \
--data-urlencode 'pjid=1201' \
--data-urlencode 'svcId=12010000' \
--data-urlencode 'payment=GOOGLE_PLAY' \
--data-urlencode 'appStore=GOOGLE_PLAY_PC' \
--data-urlencode 'imid=87DDCADUCX7WLK7D55HY' \
--data-urlencode 'playerId=playerId' \
--data-urlencode 'productId=google_test_1' \
--data-urlencode 'os=WIN64' \
--data-urlencode 'ipCountry=KR' \
--data-urlencode 'microPrice=1000000000' \
--data-urlencode 'currency=KRW'
Last updated