You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
2.0 KiB

### - --
GET http://localhost:8080/v1/com/code/all
?siteCd=KAC&langDivCd=ko_KR
### -
GET http://localhost:8080/v1/com/code/group
### - -
GET http://localhost:8080/v1/com/code/code
?groupCd=TEST1&langDivCd=ko_KR
###
POST http://localhost:8080/v1/com/code/group
Content-Type: application/json
{
"groupCd": "NEW_GROUP001",
"siteCd": "KAC",
"groupCdNm": "001",
"rm": "...."
}
###
POST http://localhost:8080/v1/com/code/code
Content-Type: application/json
{
"groupCd": "NEW_GROUP001",
"cdId": "NEW_CODE001",
"upperCd": null,
"sortOrdr": 0,
"addInfoValue": "!!",
"useYn": "Y"
}
###
POST http://localhost:8080/v1/com/code/lang
Content-Type: application/json
{
"groupCd": "NEW_GROUP001",
"cdId": "NEW_CODE001",
"langDivCd": "ko_KR",
"cdNm": "001",
"rm": "...."
}
###
PUT http://localhost:8080/v1/com/code/group
Content-Type: application/json
{
"groupCd": "NEW_GROUP001",
"siteCd": "KAC",
"groupCdNm": "001",
"rm": "..asdfasdf.."
}
###
PUT http://localhost:8080/v1/com/code/code
Content-Type: application/json
{
"groupCd": "NEW_GROUP001",
"cdId": "NEW_CODE001",
"upperCd": null,
"sortOrdr": 0,
"addInfoValue": "!ccccc!",
"useYn": "Y"
}
###
PUT http://localhost:8080/v1/com/code/lang
Content-Type: application/json
{
"groupCd": "NEW_GROUP001",
"cdId": "NEW_CODE001",
"langDivCd": "ko_KR",
"cdNm": "001",
"rm": ".ffff..."
}
###
DELETE http://localhost:8080/v1/com/code/group
?groupCd=NEW_GROUP001
###
DELETE http://localhost:8080/v1/com/code/code
?groupCd=NEW_GROUP001&cdId=NEW_CODE001
###
DELETE http://localhost:8080/v1/com/code/lang
?groupCd=NEW_GROUP001&cdId=NEW_CODE001&langDivCd=ko_KR