권역 목록조회
- REQUSET (CURL / GET)
curl --request GET \
     --url https://apis.openapi.sk.com/tms/zoneList \
     --header 'Accept: application/json' \
     --header 'appKey: My Project의 Project Key'
- RESPONSE (200 | application/json)
{
"resultCode": "200",
"resultCount": 1,
"resultMessage": "success",
"resultData":[
    {
        "zipcodeData": "",
        "updateDate": "2019-08-27 13:29:58",
        "code": "0001",
        "name": "을지로권역",
        "seq": 243,
        "adminData": ""
    }
]
}
- RESPONSE (PARAMETERS)
| Name | Type | Mandatory | Example | Description | 
|---|---|---|---|---|
| resultCode | String | Y | 200 | HTTP Status Code | 
| resultCount | Number | Y | 1 | 권역 목록의 카운트 정보입니다. | 
| resultMessage | String | Y | success | 결과 메시지 정보 입니다. | 
| resultData | Node | Y | 권역 목록 정보입니다. | |
| seq | Number | Y | 1 | 순번 | 
| code | String | Y | 0001 | 권역 코드 | 
| name | String | Y | 을지로권역 | 권역 이름 | 
| updateDate | String | Y | 2019-08-27 15:49 | 저장 일시 | 
권역 추가
- REQUSET (CURL / GET)
curl --request GET \
     --url https://apis.openapi.sk.com/tms/zoneInsert \
     --header 'Accept: application/json' \
     --header 'appKey: My Project의 Project Key'
- RESPONSE (200 | application/json)
{
"resultCode": "200",
"resultCount": 0,
"resultMessage": "성공적으로 반영 되었습니다."
}
- RESPONSE (PARAMETERS)
| Name | Type | Mandatory | Example | Description | 
|---|---|---|---|---|
| resultCode | String | Y | 200 | HTTP Status Code | 
| resultCount | Number | Y | - | |
| resultMessage | String | Y | 성공적으로 반영 되었습니다. | 결과 메시지 정보 입니다. | 
권역 여러건 추가
- REQUEST (CURL / POST)
curl --request POST \
     --url https://apis.openapi.sk.com/tms/zoneListInsert \
     --header 'Accept: application/json' \
     --header 'Content-Type: application/json' \
     --header 'appKey: My Project의 Project Key'
- REQUEST (SAMPLE CODE)
{
  "reqDatas": [
    {
      "code": "0001",
      "name": "%EC%84%9C%EC%9A%B8"
    },
    {
      "code": "0002",
      "name": "%EA%B6%8C%EC%97%AD2"
    }
  ]
}
- RESPONSE (200 | application/json)
{
  "resultCode": "200",
  "resultCount": "0",
  "resultMessage": "success"
}
- RESPONSE (PARAMETERS)
| Name | Type | Mandatory | Example | Default | Description | 
|---|---|---|---|---|---|
| resultCode | String | N | HTTP Status Code | ||
| resultCount | String | N | - | ||
| resultMessage | String | N | 1 | 결과 메시지 정보 입니다. | 
권역 수정
- REQUSET (CURL / GET)
curl --request GET \
     --url https://apis.openapi.sk.com/tms/zoneUpdate \
     --header 'Accept: application/json' \
     --header 'appKey: My Project의 Project Key'
- RESPONSE (200 | application/json)
{
"resultCode": "200",
"resultCount": 0,
"resultMessage": "성공적으로 반영 되었습니다."
}
- RESPONSE (PARAMETERS)
| Name | Type | Mandatory | Example | Description | 
|---|---|---|---|---|
| resultCode | String | Y | 200 | HTTP Status Code | 
| resultCount | Number | Y | - | |
| resultMessage | String | Y | 성공적으로 반영 되었습니다. | 결과 메시지 정보 입니다. | 
권역 삭제
- REQUSET (CURL / GET)
curl --request GET \
     --url https://apis.openapi.sk.com/tms/zoneDelete \
     --header 'Accept: application/json' \
     --header 'appKey: My Project의 Project Key'
- RESPONSE (200 | application/json)
{
"resultCode": "200",
"resultCount": 0,
"resultMessage": "성공적으로 반영 되었습니다."
}
- RESPONSE (PARAMETERS)
| Name | Type | Mandatory | Example | Description | 
|---|---|---|---|---|
| resultCode | String | Y | 200 | HTTP Status Code | 
| resultCount | Number | Y | - | |
| resultMessage | String | Y | 성공적으로 반영 되었습니다. | 결과 메시지 정보 입니다. |