GET api/v2/flight/country/getlist/{lang}

獲取國家列表

Request Information

URI Parameters

NameDescriptionTypeAdditional information
lang

string

Required

Body Parameters

None.

Response Information

Resource Description

獲取國家列表

ReturnResultOfCountryListContract
NameDescriptionTypeAdditional information
data

CountryListContract

None.

code

状态码:100成功,其他自定义

integer

None.

message

提示消息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": {
    "lastUpdate": "2024-12-23T19:53:15.4050053+08:00",
    "countryList": [
      {
        "code": "sample string 1",
        "name": "sample string 2",
        "telCountry": "sample string 3",
        "displayOrder": 4
      },
      {
        "code": "sample string 1",
        "name": "sample string 2",
        "telCountry": "sample string 3",
        "displayOrder": 4
      }
    ]
  },
  "code": 1,
  "message": "sample string 2"
}