Get Cities

URL

İl Adı ve İl Kodu listesini dönen endpoint ve http metod bilgisi aşağıda verilmiştir.

HTTP Method URL
POST /v1​/InvoicePayment​/GetCities

Dönüş Parametreleri

Parametre Tip Açıklama
status int Statü
code string Kod
message string Mesaj
payload obje[] Veri
city_code string İl Kodu
city_name string İl Adı

İSTEK (POST):


{

}

YANIT:

{
    "status": 0,
    "code": "100",
    "message": null,
    "payload": [
        {
            "city_code": "01",
            "city_name": "ADANA"
        },
        {
            "city_code": "02",
            "city_name": "ADIYAMAN"
        },
        ...
    ]
}