Swap 요청
지갑 정보를 조회합니다.
POST https://{point-domain}/v1.0/swap/gamechip
Headers
Name
Type
Description
Authorization*
string
Bearer {{web-access-token}}
Content-Type*
string
application/json
Request Body
Name
Type
Description
swap_type
int64
ssr -> ssrm 이면 '34' ssrm -> ssr 이면 '35'
ssr_adjust_point
int64
ssr -> ssrm 이면 음수 ssrm -> ssr 이면 양수
ssrm_adjust_chip
int64
ssr -> ssrm 이면 양수 ssrm -> ssr 이면 음수
Response
{
"return": 0,
"message": "success"
}curl --location 'https://localhost:51011/v1.0/swap/gamechip' \
--header 'Content-Type: application/json' \
--header 'Authorization: ••••••' \
--data '{
"swap_type" : 34,
"ssr_adjust_point" : -45,
"ssrm_adjust_chip" : 22
}'
key
data type
desc.
return
message
desc.
0
success
성공(진행중인 정보가 없음)
12103
Point Exchange ratio error
ssr 전환 비율 에러
19000
internal DB error
db 에러
11101
Not exist member
존재하지 않는 member
18111
Innoid is not registered in SSR mini game
SSR mini game에 inno id가 등록되어 있지 않다
12100
lack of minimum poiont quantity
포인트 최소 보유 수량 에러
12104
daily points swap limit exceeded
일일 최대 전환 수량 초과
Last updated