앱 등록

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

Headers

Name
Type
Description

Content-Type*

String

application/json

Request Body

Name
Type
Description

app_id*

int64

앱 ID

database_id*

int64

포인트 정보 생성 DB ID

access_pw*

string

서버 접근 PW (128byte이내)

access_id*

string

서버 접근 ID (20byte이내)

is_enabled*

bool

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

company_id*

int64

고객사ID

icon_path*

string

아이콘 이미지 경로 (256byte이내)

app_name*

string

앱 이름 (20byte이내)

{
    "return": 0,
    "message": "success"
}
curl --location --request POST 'http://{backoffice-domain}/m1.0/backoffice/add/app' \
--header 'Content-Type: application/json' \
--data-raw '{
    "app_id": 9999,
    "app_name": "abcd",
    "icon_path": "abcd",
    "company_id": 9999,
    "is_enabled": true,
    "access_id": "id",
    "access_pw": "pwd",
    "database_id": 1
}'

Last updated