포인트 데이터 수정

PUT http://{backoffice-domain}/m1.0/mod/point

Headers

Name
Type
Description

Content-Type*

String

application/json

Request Body

Name
Type
Description

point_id*

int64

포인트ID

icon_path*

string

아이콘 경로 (256byte이내)

point_name*

string

포인트 이름 (20byte이내)

{
    "return": 0,
    "message": "success"
}
curl --location --request PUT 'http://{backoffice-domain}/m1.0/backoffice/mod/point' \
--header 'Content-Type: application/json' \
--data-raw '{
    "point_id": 9999,
    "point_name": "abcde",
    "icon_path": "abcde"
}'

Last updated