타겟 국가 목록 조회
POST/procedure-menu/open/target-countries/queries/get-target-countries
타겟 국가 목록 조회
Request
### Content-Type별 요청의 JSON Schema
{
"application/json": {
"schema": {
"type": "object",
"properties": {},
"title": "protos.Empty"
}
}
}
Responses
- 200
OK
### Status Code별 응답의 JSON Schema
{
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "# 국가 코드n - ISO 3166-1 alpha-2 (https://ko.wikipedia.org/wiki/ISO_3166-1_alpha-2?useskin=vector)n - 단, '그 외 국가'는 `ETC`로 표기"
},
"order": {
"type": "integer",
"format": "int32"
},
"suggestingVisitorTypeId": {
"type": "string",
"description": "비어 있는 경우, 기본 수가 유형인 '정상가' 를 사용함."
}
},
"title": "protos.procedure.TargetCountryContract"
}
}
},
"title": "protos.procedure.GetTargetCountriesQueryResponse"
}
}
}
}
}