LiveOps API (2.0.0)
- 버전: 2.0.0
- 서버:
https://store.xsolla.com/api - 이메일을 통해 당사에 문의
- 연락처 URL: https://xsolla.com/
- 필수 TLS 버전: 1.2
LiveOps는 프로모션 및 맞춤형 혜택을 통해 진행 중인 플레이어 참여를 독려하는 툴킷입니다.
API를 사용하여 다음 기능을 관리할 수 있습니다:
- 프로모션 - 쿠폰, 프로모션 코드, 할인 및 보너스 캠페인을 생성하고 관리합니다.
- 개인화 - 특정 승인된 사용자에 한해 아이템 카탈로그를 표시하고 프로모션을 적용할 수 있는 조건을 지정합니다.
- 프로모션 한도 - 사용자당 프로모션 사용 횟수에 대한 한도를 설정하고, 해당 한도에 대한 정기적인 초기화 일정을 구성합니다.
- 리워드 체인 및 가치 포인트 - 가치 포인트 적립과 연계된 보상 진행 단계 설정.
- 일일 체인 - 매일 반복되는 보상을 설정하여 정기적인 로그인을 유도합니다.
- 혜택 체인 - 단계별 가격 책정 및 무료 보상 옵션을 통해 순차적 구매 혜택을 구축합니다.
- 업셀링 - 추가적인 가치가 있는 아이템을 구매할 수 있도록 사용자에게 제공되는 판매 방법.
API는 다음 그룹으로 구분됩니다:
Admin - 캠페인 및 체인 구성의 생성, 업데이트, 활성화 및 삭제를 수행합니다. 상품 또는 프로젝트 자격 증명으로 기본 액세스 인증을 통해 인증됩니다.Client - 인증된 최종 사용자를 대신하여 이용 가능한 프로모션을 검색하고, 활성 체인을 확인하며, 코드를 사용하고, 보상을 요청하는 기능을 제공합니다. 사용자 JWT를 통해 인증됩니다.
개인 맞춤형 카탈로그
이 API를 사용하여 사용자 특성에 대한 규칙을 지정할 수 있습니다. 사용자가 구체적인 규칙에 대한 모든 조건을 충족하면 개인 맞춤형 아이템이 표시됩니다.
개인 맞춤형 프로모션에 대한 내용은 프로모션 섹션을 참조하십시오.
구매 전에 특성을 전달하려면 엑솔라 로그인 API를 사용하거나 페이 스테이션 API를 사용하여 토큰을 생성하는 동안 user.attributes 특성으로 특성을 전달할 수 있습니다.
요청
Resets the value points balance and progress of all users in the reward chain.
The balance is tied to the value points type, not to a specific reward chain. If these value points are used in other chains, the balance will be reset in all chains that use these value points.
After the reset, you can update the reward chain’s validity period, and users will be able to progress through it again.
The clan balance is calculated as the sum of its members’ balances. Therefore, after the reset, the clan balance is also reset.
This request is irreversible and applies to all users of the project.
You should not reset the reward chain during its validity period. In this case, users may lose earned value points before they claim their reward.
- https://store.xsolla.com/api/v3/project/{project_id}/admin/reward_chain/id/{reward_chain_id}/reset
- Mock serverhttps://xsolla.redocly.app/_mock/ko/api/liveops/v3/project/{project_id}/admin/reward_chain/id/{reward_chain_id}/reset
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
-u <username>:<password> \
https://store.xsolla.com/api/v3/project/44056/admin/reward_chain/id/101/reset- https://store.xsolla.com/api/v3/project/{project_id}/admin/reward_chain/id/{reward_chain_id}/toggle
- Mock serverhttps://xsolla.redocly.app/_mock/ko/api/liveops/v3/project/{project_id}/admin/reward_chain/id/{reward_chain_id}/toggle
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
-u <username>:<password> \
https://store.xsolla.com/api/v3/project/44056/admin/reward_chain/id/101/toggle