교환 가능한 코인, 포인트 관계 등록

POST http://{backoffice-domain}/m1.0/add/exchange

Headers

Name
Type
Description

Content-Type*

String

application/json

Request Body

Name
Type
Description

app_id*

int64

앱 ID

is_enabled*

bool

활성여부 (0:비활성, 1:활성)

point_id*

int64

포인트 ID

coin_id*

int64

코인 ID

{
    "return": 0,
    "message": "success"
}
curl --location --request POST 'http://{backoffice-domain}/m1.0/backoffice/add/exchange' \
--header 'Content-Type: application/json' \
--data-raw '{
    "app_id": 9999,
    "coin_id": 9999,
    "point_id": 9999,
    "is_enabled": true
}'

Last updated