GetApplicationScriptVariable
アプリケーションに定義してあるプログラム拡張定数を取得する
Description
アプリケーション内にあるプログラム拡張の定数情報を指定して取得します。
Method
GET
Request URL Format
/api/v0/applications/:app-id/script/:var-name
URL Params
app-id : アプリケーションID(Hexabase画面から入力したIDを指定)
var-name : プログラム拡張定数名
Request URL Sample
GET https://api.xxx.com/api/v0/applications/624bea3a879f4e8d8b5dcc6f/script/VARIABLE_1
Response Sample
Status 200
{
"var_name": "VARIABLE_1",
"desc": "description for VARIABLE_1",
"value": "value1",
"enabled": true
}
Status 400
{
"code": 101,
"error_code": "INVALID_PARAMS",
"message": "script variable not found" // 指定した定数名が存在しない
}