Introduction
Ez a dokumentáció tartalmazza a BG adategyeztető API dokumentációját.
Base URL
https://adategyezteto-test.pnt5.dev
Authenticating requests
This API is authenticated by sending an Authorization header with the value "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt".
All authenticated endpoints are marked with a requires authentication badge in the documentation below.
You can retrieve your token by asking the developer to provide a valid token.
Alapadatok
API végpont a kapcsolódó alapadatok kezelésére
Bank lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/banks" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/banks"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/banks',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/banks'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 4,
"name": "Budapest Bank",
"o": 100
},
{
"id": 6,
"name": "CIB Bank",
"o": 2
},
{
"id": 10,
"name": "Deutsche Bank",
"o": 100
},
{
"id": 11,
"name": "Erste Bank",
"o": 5
},
{
"id": 14,
"name": "Gránit Bank",
"o": 100
},
{
"id": 16,
"name": "K&H Bank",
"o": 6
},
{
"id": 17,
"name": "KDB Bank",
"o": 100
},
{
"id": 19,
"name": "MagNet Bank",
"o": 100
},
{
"id": 22,
"name": "MKB Bank",
"o": 4
},
{
"id": 24,
"name": "NHB",
"o": 100
},
{
"id": 25,
"name": "Oberbank",
"o": 100
},
{
"id": 26,
"name": "OTP",
"o": 1
},
{
"id": 28,
"name": "Polgári Bank",
"o": 100
},
{
"id": 30,
"name": "Raiffeisen Bank",
"o": 7
},
{
"id": 31,
"name": "Sberbank",
"o": 100
},
{
"id": 32,
"name": "Sopron Bank Burgenland",
"o": 100
},
{
"id": 33,
"name": "Takarékbank",
"o": 100
},
{
"id": 34,
"name": "UniCredit Bank",
"o": 8
},
{
"id": 37,
"name": "ING Bank",
"o": 100
},
{
"id": 38,
"name": "Fundamenta Lakáskassza",
"o": 100
},
{
"id": 42,
"name": "BG Finance Zrt.",
"o": 100
},
{
"id": 45,
"name": "BaranyaCredit",
"o": 100
},
{
"id": 47,
"name": "Magyar-Mikrohitelező Zrt.",
"o": 100
},
{
"id": 50,
"name": "Egyéb",
"o": 101
}
],
"message": ""
}
Received response:
Request failed with error:
Lakástakarék pénztár lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/building_savings" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/building_savings"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/building_savings',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/building_savings'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 1,
"name": "Erste"
},
{
"id": 2,
"name": "Fundamenta"
},
{
"id": 3,
"name": "OTP"
},
{
"id": 4,
"name": "Aegon"
}
],
"message": ""
}
Received response:
Request failed with error:
Céges TEAOR kód lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/company_nace_numbers" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/company_nace_numbers"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/company_nace_numbers',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/company_nace_numbers'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 1,
"code": "111",
"name": "Gabonaféle (kivéve: rizs), hüvelyes növény, olajos mag termesztése"
},
{
"id": 2,
"code": "112",
"name": "Rizstermesztés"
},
{
"id": 3,
"code": "113",
"name": "Zöldségféle, dinnye, gyökér-, gumósnövény termesztése"
},
{
"id": 4,
"code": "114",
"name": "Cukornádtermesztés"
},
{
"id": 5,
"code": "115",
"name": "Dohánytermesztés"
},
{
"id": 6,
"code": "116",
"name": "Rostnövénytermesztés"
},
{
"id": 7,
"code": "119",
"name": "Egyéb, nem évelő növény termesztése"
},
{
"id": 8,
"code": "121",
"name": "Szőlőtermesztés"
},
{
"id": 9,
"code": "122",
"name": "Trópusi gyümölcs termesztése"
},
{
"id": 10,
"code": "123",
"name": "Citrusféle termesztése"
},
{
"id": 11,
"code": "124",
"name": "Almatermésű, csonthéjas termesztése"
},
{
"id": 12,
"code": "125",
"name": "Egyéb gyümölcs, héjastermésű termesztése"
},
{
"id": 13,
"code": "126",
"name": "Olajtartalmú gyümölcs termesztése"
},
{
"id": 14,
"code": "127",
"name": "Italgyártási növény termesztése"
},
{
"id": 15,
"code": "128",
"name": "Fűszer-, aroma-, narkotikus, gyógynövény termesztése"
},
{
"id": 16,
"code": "129",
"name": "Egyéb évelő növény termesztése"
},
{
"id": 17,
"code": "130",
"name": "Növényi szaporítóanyag termesztése"
},
{
"id": 18,
"code": "141",
"name": "Tejhasznú szarvasmarha tenyésztése"
},
{
"id": 19,
"code": "142",
"name": "Egyéb szarvasmarha tenyésztése"
},
{
"id": 20,
"code": "143",
"name": "Ló, lóféle tenyésztése"
},
{
"id": 21,
"code": "144",
"name": "Teve, teveféle tenyésztése"
},
{
"id": 22,
"code": "145",
"name": "Juh, kecske tenyésztése"
},
{
"id": 23,
"code": "146",
"name": "Sertéstenyésztés"
},
{
"id": 24,
"code": "147",
"name": "Baromfitenyésztés"
},
{
"id": 25,
"code": "149",
"name": "Egyéb állat tenyésztése"
},
{
"id": 26,
"code": "150",
"name": "Vegyes gazdálkodás"
},
{
"id": 27,
"code": "161",
"name": "Növénytermesztési szolgáltatás"
},
{
"id": 28,
"code": "162",
"name": "Állattenyésztési szolgáltatás"
},
{
"id": 29,
"code": "163",
"name": "Betakarítást követő szolgáltatás"
},
{
"id": 30,
"code": "164",
"name": "Vetési célú magfeldolgozás"
},
{
"id": 31,
"code": "170",
"name": "Vadgazdálkodás, vadgazdálkodási szolgáltatás"
},
{
"id": 32,
"code": "210",
"name": "Erdészeti, egyéb erdőgazdálkodási tevékenység"
},
{
"id": 33,
"code": "220",
"name": "Fakitermelés"
},
{
"id": 34,
"code": "230",
"name": "Vadon termő egyéb erdei termék gyűjtése"
},
{
"id": 35,
"code": "240",
"name": "Erdészeti szolgáltatás"
},
{
"id": 36,
"code": "311",
"name": "Tengeri halászat"
},
{
"id": 37,
"code": "312",
"name": "Édesvízi halászat"
},
{
"id": 38,
"code": "321",
"name": "Tengerihal-gazdálkodás"
},
{
"id": 39,
"code": "322",
"name": "Édesvízihal-gazdálkodás"
},
{
"id": 40,
"code": "510",
"name": "Feketeszén-bányászat"
},
{
"id": 41,
"code": "520",
"name": "Barnaszén-, lignitbányászat"
},
{
"id": 42,
"code": "610",
"name": "Kőolaj-kitermelés"
},
{
"id": 43,
"code": "620",
"name": "Földgázkitermelés"
},
{
"id": 44,
"code": "710",
"name": "Vasércbányászat"
},
{
"id": 45,
"code": "721",
"name": "Urán-, tóriumérc-bányászat"
},
{
"id": 46,
"code": "729",
"name": "Színesfém érc bányászata"
},
{
"id": 47,
"code": "811",
"name": "Kőfejtés, gipsz, kréta bányászata"
},
{
"id": 48,
"code": "812",
"name": "Kavics-, homok-, agyagbányászat"
},
{
"id": 49,
"code": "891",
"name": "Vegyi ásvány bányászata"
},
{
"id": 50,
"code": "892",
"name": "Tőzegkitermelés"
},
{
"id": 51,
"code": "893",
"name": "Sókitermelés"
},
{
"id": 52,
"code": "899",
"name": "Egyéb m.n.s. bányászat"
},
{
"id": 53,
"code": "910",
"name": "Kőolaj-, földgáz-kitermelési szolgáltatás"
},
{
"id": 54,
"code": "990",
"name": "Egyéb bányászati szolgáltatás"
},
{
"id": 55,
"code": "1011",
"name": "Húsfeldolgozás, -tartósítás"
},
{
"id": 56,
"code": "1012",
"name": "Baromfihús feldolgozása, tartósítása"
},
{
"id": 57,
"code": "1013",
"name": "Hús-, baromfihús-készítmény gyártása"
},
{
"id": 58,
"code": "1020",
"name": "Halfeldolgozás, -tartósítás"
},
{
"id": 59,
"code": "1031",
"name": "Burgonyafeldolgozás, -tartósítás"
},
{
"id": 60,
"code": "1032",
"name": "Gyümölcs-, zöldséglé gyártása"
},
{
"id": 61,
"code": "1039",
"name": "Egyéb gyümölcs-, zöldségfeldolgozás, -tartósítás"
},
{
"id": 62,
"code": "1041",
"name": "Olaj gyártása"
},
{
"id": 63,
"code": "1042",
"name": "Margarin gyártása"
},
{
"id": 64,
"code": "1051",
"name": "Tejtermék gyártása"
},
{
"id": 65,
"code": "1052",
"name": "Jégkrém gyártása"
},
{
"id": 66,
"code": "1061",
"name": "Malomipari termék gyártása"
},
{
"id": 67,
"code": "1062",
"name": "Keményítő, keményítőtermék gyártása"
},
{
"id": 68,
"code": "1071",
"name": "Kenyér, friss pékáru gyártása"
},
{
"id": 69,
"code": "1072",
"name": "Tartósított lisztes áru gyártása"
},
{
"id": 70,
"code": "1073",
"name": "Tésztafélék gyártása"
},
{
"id": 71,
"code": "1081",
"name": "Cukorgyártás"
},
{
"id": 72,
"code": "1082",
"name": "Édesség gyártása"
},
{
"id": 73,
"code": "1083",
"name": "Tea, kávé feldolgozása"
},
{
"id": 74,
"code": "1084",
"name": "Fűszer, ételízesítő gyártása"
},
{
"id": 75,
"code": "1085",
"name": "Készétel gyártása"
},
{
"id": 76,
"code": "1086",
"name": "Homogenizált, diétás étel gyártása"
},
{
"id": 77,
"code": "1089",
"name": "M.n.s. egyéb élelmiszer gyártása"
},
{
"id": 78,
"code": "1091",
"name": "Haszonállat-eledel gyártása"
},
{
"id": 79,
"code": "1092",
"name": "Hobbiállat-eledel gyártása"
},
{
"id": 80,
"code": "1101",
"name": "Desztillált szeszes ital gyártása"
},
{
"id": 81,
"code": "1102",
"name": "Szőlőbor termelése"
},
{
"id": 82,
"code": "1103",
"name": "Gyümölcsbor termelése"
},
{
"id": 83,
"code": "1104",
"name": "Egyéb nem desztillált, erjesztett ital gyártása"
},
{
"id": 84,
"code": "1105",
"name": "Sörgyártás"
},
{
"id": 85,
"code": "1106",
"name": "Malátagyártás"
},
{
"id": 86,
"code": "1107",
"name": "Üdítőital, ásványvíz gyártása"
},
{
"id": 87,
"code": "1200",
"name": "Dohánytermék gyártása"
},
{
"id": 88,
"code": "1310",
"name": "Textilszálak fonása"
},
{
"id": 89,
"code": "1320",
"name": "Textilszövés"
},
{
"id": 90,
"code": "1330",
"name": "Textilkikészítés"
},
{
"id": 91,
"code": "1391",
"name": "Kötött, hurkolt kelme gyártása"
},
{
"id": 92,
"code": "1392",
"name": "Konfekcionált textiláru gyártása (kivéve: ruházat)"
},
{
"id": 93,
"code": "1393",
"name": "Szőnyeggyártás"
},
{
"id": 94,
"code": "1394",
"name": "Kötéláru gyártása"
},
{
"id": 95,
"code": "1395",
"name": "Nem szőtt textília és termék gyártása (kivéve: ruházat)"
},
{
"id": 96,
"code": "1396",
"name": "Műszaki textiláru gyártása"
},
{
"id": 97,
"code": "1399",
"name": "Egyéb textiláru gyártása m.n.s."
},
{
"id": 98,
"code": "1411",
"name": "Bőrruházat gyártása"
},
{
"id": 99,
"code": "1412",
"name": "Munkaruházat gyártása"
},
{
"id": 100,
"code": "1413",
"name": "Felsőruházat gyártása (kivéve: munkaruházat)"
},
{
"id": 101,
"code": "1414",
"name": "Alsóruházat gyártása"
},
{
"id": 102,
"code": "1419",
"name": "Egyéb ruházat, kiegészítők gyártása"
},
{
"id": 103,
"code": "1420",
"name": "Szőrmecikk gyártása"
},
{
"id": 104,
"code": "1431",
"name": "Kötött, hurkolt harisnyafélék gyártása"
},
{
"id": 105,
"code": "1439",
"name": "Egyéb kötött, hurkolt ruházati termék gyártása"
},
{
"id": 106,
"code": "1511",
"name": "Bőr, szőrme kikészítése"
},
{
"id": 107,
"code": "1512",
"name": "Táskafélék, szíjazat gyártása"
},
{
"id": 108,
"code": "1520",
"name": "Lábbeligyártás"
},
{
"id": 109,
"code": "1610",
"name": "Fűrészárugyártás"
},
{
"id": 110,
"code": "1621",
"name": "Falemezgyártás"
},
{
"id": 111,
"code": "1622",
"name": "Parkettagyártás"
},
{
"id": 112,
"code": "1623",
"name": "Épületasztalos-ipari termék gyártása"
},
{
"id": 113,
"code": "1624",
"name": "Tároló fatermék gyártása"
},
{
"id": 114,
"code": "1629",
"name": "Egyéb fa-, parafatermék, fonottáru gyártása"
},
{
"id": 115,
"code": "1711",
"name": "Papíripari rostanyag gyártása"
},
{
"id": 116,
"code": "1712",
"name": "Papírgyártás"
},
{
"id": 117,
"code": "1721",
"name": "Papír csomagolóeszköz gyártása"
},
{
"id": 118,
"code": "1722",
"name": "Háztartási, egészségügyi papírtermék gyártása"
},
{
"id": 119,
"code": "1723",
"name": "Irodai papíráru gyártása"
},
{
"id": 120,
"code": "1724",
"name": "Tapétagyártás"
},
{
"id": 121,
"code": "1729",
"name": "Egyéb papír-, kartontermék gyártása"
},
{
"id": 122,
"code": "1811",
"name": "Napilapnyomás"
},
{
"id": 123,
"code": "1812",
"name": "Nyomás (kivéve: napilap)"
},
{
"id": 124,
"code": "1813",
"name": "Nyomdai előkészítő tevékenység"
},
{
"id": 125,
"code": "1814",
"name": "Könyvkötés, kapcsolódó szolgáltatás"
},
{
"id": 126,
"code": "1820",
"name": "Egyéb sokszorosítás"
},
{
"id": 127,
"code": "1910",
"name": "Kokszgyártás"
},
{
"id": 128,
"code": "1920",
"name": "Kőolaj-feldolgozás"
},
{
"id": 129,
"code": "2011",
"name": "Ipari gáz gyártása"
},
{
"id": 130,
"code": "2012",
"name": "Színezék, pigment gyártása"
},
{
"id": 131,
"code": "2013",
"name": "Szervetlen vegyi alapanyag gyártása"
},
{
"id": 132,
"code": "2014",
"name": "Szerves vegyi alapanyag gyártása"
},
{
"id": 133,
"code": "2015",
"name": "Műtrágya, nitrogénvegyület gyártása"
},
{
"id": 134,
"code": "2016",
"name": "Műanyag-alapanyag gyártása"
},
{
"id": 135,
"code": "2017",
"name": "Szintetikus kaucsuk alapanyag gyártása"
},
{
"id": 136,
"code": "2020",
"name": "Mezőgazdasági vegyi termék gyártása"
},
{
"id": 137,
"code": "2030",
"name": "Festék, bevonóanyag gyártása"
},
{
"id": 138,
"code": "2041",
"name": "Tisztítószer gyártása"
},
{
"id": 139,
"code": "2042",
"name": "Testápolási cikk gyártása"
},
{
"id": 140,
"code": "2051",
"name": "Robbanóanyag gyártása"
},
{
"id": 141,
"code": "2052",
"name": "Ragasztószergyártás"
},
{
"id": 142,
"code": "2053",
"name": "Illóolajgyártás"
},
{
"id": 143,
"code": "2059",
"name": "M.n.s. egyéb vegyi termék gyártása"
},
{
"id": 144,
"code": "2060",
"name": "Vegyi szál gyártása"
},
{
"id": 145,
"code": "2110",
"name": "Gyógyszeralapanyag-gyártás"
},
{
"id": 146,
"code": "2120",
"name": "Gyógyszerkészítmény gyártása"
},
{
"id": 147,
"code": "2211",
"name": "Gumiabroncs, gumitömlő gyártása"
},
{
"id": 148,
"code": "2219",
"name": "Egyéb gumitermék gyártása"
},
{
"id": 149,
"code": "2221",
"name": "Műanyag lap, lemez, fólia, cső, profil gyártása"
},
{
"id": 150,
"code": "2222",
"name": "Műanyag csomagolóeszköz gyártása"
},
{
"id": 151,
"code": "2223",
"name": "Műanyag építőanyag gyártása"
},
{
"id": 152,
"code": "2229",
"name": "Egyéb műanyag termék gyártása"
},
{
"id": 153,
"code": "2311",
"name": "Síküveggyártás"
},
{
"id": 154,
"code": "2312",
"name": "Síküveg továbbfeldolgozása"
},
{
"id": 155,
"code": "2313",
"name": "Öblösüveggyártás"
},
{
"id": 156,
"code": "2314",
"name": "Üvegszálgyártás"
},
{
"id": 157,
"code": "2319",
"name": "Műszaki, egyéb üvegtermék gyártása"
},
{
"id": 158,
"code": "2320",
"name": "Tűzálló termék gyártása"
},
{
"id": 159,
"code": "2331",
"name": "Kerámiacsempe, -lap gyártása"
},
{
"id": 160,
"code": "2332",
"name": "Égetett agyag építőanyag gyártása"
},
{
"id": 161,
"code": "2341",
"name": "Háztartási kerámia gyártása"
},
{
"id": 162,
"code": "2342",
"name": "Egészségügyi kerámia gyártása"
},
{
"id": 163,
"code": "2343",
"name": "Kerámia szigetelő gyártása"
},
{
"id": 164,
"code": "2344",
"name": "Műszaki kerámia gyártása"
},
{
"id": 165,
"code": "2349",
"name": "Egyéb kerámiatermék gyártása"
},
{
"id": 166,
"code": "2351",
"name": "Cementgyártás"
},
{
"id": 167,
"code": "2352",
"name": "Mész-, gipszgyártás"
},
{
"id": 168,
"code": "2361",
"name": "Építési betontermék gyártása"
},
{
"id": 169,
"code": "2362",
"name": "Építési gipsztermék gyártása"
},
{
"id": 170,
"code": "2363",
"name": "Előre kevert beton gyártása"
},
{
"id": 171,
"code": "2364",
"name": "Habarcsgyártás"
},
{
"id": 172,
"code": "2365",
"name": "Szálerősítésű cement gyártása"
},
{
"id": 173,
"code": "2369",
"name": "Egyéb beton-, gipsz-, cementtermék gyártása"
},
{
"id": 174,
"code": "2370",
"name": "Kőmegmunkálás"
},
{
"id": 175,
"code": "2391",
"name": "Csiszolótermék gyártása"
},
{
"id": 176,
"code": "2399",
"name": "M.n.s. egyéb nemfém ásványi termék gyártása"
},
{
"id": 177,
"code": "2410",
"name": "Vas-, acél-, vasötvözet-alapanyag gyártása"
},
{
"id": 178,
"code": "2420",
"name": "Acélcsőgyártás"
},
{
"id": 179,
"code": "2431",
"name": "Hidegen húzott acélrúd gyártása"
},
{
"id": 180,
"code": "2432",
"name": "Hidegen hengerelt keskeny acélszalag gyártása"
},
{
"id": 181,
"code": "2433",
"name": "Hidegen hajlított acélidom gyártása"
},
{
"id": 182,
"code": "2434",
"name": "Hidegen húzott acélhuzal gyártása"
},
{
"id": 183,
"code": "2441",
"name": "Nemesfémgyártás"
},
{
"id": 184,
"code": "2442",
"name": "Alumíniumgyártás"
},
{
"id": 185,
"code": "2443",
"name": "Ólom, cink, ón gyártása"
},
{
"id": 186,
"code": "2444",
"name": "Rézgyártás"
},
{
"id": 187,
"code": "2445",
"name": "Egyéb nem vas fém gyártása"
},
{
"id": 188,
"code": "2446",
"name": "Nukleáris fűtőanyag gyártása"
},
{
"id": 189,
"code": "2451",
"name": "Vasöntés"
},
{
"id": 190,
"code": "2452",
"name": "Acélöntés"
},
{
"id": 191,
"code": "2453",
"name": "Könnyűfémöntés"
},
{
"id": 192,
"code": "2454",
"name": "Egyéb nem vas fém öntése"
},
{
"id": 193,
"code": "2511",
"name": "Fémszerkezet gyártása"
},
{
"id": 194,
"code": "2512",
"name": "Fém épületelem gyártása"
},
{
"id": 195,
"code": "2521",
"name": "Központi fűtési kazán, radiátor gyártása"
},
{
"id": 196,
"code": "2529",
"name": "Fémtartály gyártása"
},
{
"id": 197,
"code": "2530",
"name": "Gőzkazán gyártása"
},
{
"id": 198,
"code": "2540",
"name": "Fegyver-, lőszergyártás"
},
{
"id": 199,
"code": "2550",
"name": "Fémalakítás, porkohászat"
},
{
"id": 200,
"code": "2561",
"name": "Fémfelület-kezelés"
},
{
"id": 201,
"code": "2562",
"name": "Fémmegmunkálás"
},
{
"id": 202,
"code": "2571",
"name": "Evőeszköz gyártása"
},
{
"id": 203,
"code": "2572",
"name": "Lakat-, zárgyártás"
},
{
"id": 204,
"code": "2573",
"name": "Szerszámgyártás"
},
{
"id": 205,
"code": "2591",
"name": "Acél tárolóeszköz gyártása"
},
{
"id": 206,
"code": "2592",
"name": "Könnyűfém csomagolóeszköz gyártása"
},
{
"id": 207,
"code": "2593",
"name": "Huzaltermék gyártása"
},
{
"id": 208,
"code": "2594",
"name": "Kötőelem, csavar gyártása"
},
{
"id": 209,
"code": "2599",
"name": "M.n.s. egyéb fémfeldolgozási termék gyártása"
},
{
"id": 210,
"code": "2611",
"name": "Elektronikai alkatrész gyártása"
},
{
"id": 211,
"code": "2612",
"name": "Elektronikai áramköri kártya gyártása"
},
{
"id": 212,
"code": "2620",
"name": "Számítógép, perifériás egység gyártása"
},
{
"id": 213,
"code": "2630",
"name": "Híradás-technikai berendezés gyártása"
},
{
"id": 214,
"code": "2640",
"name": "Elektronikus fogyasztási cikk gyártása"
},
{
"id": 215,
"code": "2651",
"name": "Mérőműszergyártás"
},
{
"id": 216,
"code": "2652",
"name": "Óragyártás"
},
{
"id": 217,
"code": "2660",
"name": "Elektronikus orvosi berendezés gyártása"
},
{
"id": 218,
"code": "2670",
"name": "Optikai eszköz gyártása"
},
{
"id": 219,
"code": "2680",
"name": "Mágneses, optikai információhordozó gyártása"
},
{
"id": 220,
"code": "2711",
"name": "Villamos motor, áramfejlesztő gyártása"
},
{
"id": 221,
"code": "2712",
"name": "Áramelosztó, -szabályozó készülék gyártása"
},
{
"id": 222,
"code": "2720",
"name": "Akkumulátor, szárazelem gyártása"
},
{
"id": 223,
"code": "2731",
"name": "Száloptikai kábel gyártása"
},
{
"id": 224,
"code": "2732",
"name": "Egyéb elektronikus, villamos vezeték, kábel gyártása"
},
{
"id": 225,
"code": "2733",
"name": "Szerelvény gyártása"
},
{
"id": 226,
"code": "2740",
"name": "Villamos világítóeszköz gyártása"
},
{
"id": 227,
"code": "2751",
"name": "Háztartási villamos készülék gyártása"
},
{
"id": 228,
"code": "2752",
"name": "Nem villamos háztartási készülék gyártása"
},
{
"id": 229,
"code": "2790",
"name": "Egyéb villamos berendezés gyártása"
},
{
"id": 230,
"code": "2811",
"name": "Motor, turbina gyártása (kivéve: légi, közútijármű-motor)"
},
{
"id": 231,
"code": "2812",
"name": "Hidraulikus, pneumatikus berendezés gyártása"
},
{
"id": 232,
"code": "2813",
"name": "Egyéb szivattyú, kompresszor gyártása"
},
{
"id": 233,
"code": "2814",
"name": "Csap, szelep gyártása"
},
{
"id": 234,
"code": "2815",
"name": "Csapágy, erőátviteli elem gyártása"
},
{
"id": 235,
"code": "2821",
"name": "Fűtőberendezés, kemence gyártása"
},
{
"id": 236,
"code": "2822",
"name": "Emelő-, anyagmozgató gép gyártása"
},
{
"id": 237,
"code": "2823",
"name": "Irodagép gyártása (kivéve: számítógép és perifériái)"
},
{
"id": 238,
"code": "2824",
"name": "Gépi meghajtású hordozható kézi szerszámgép gyártása"
},
{
"id": 239,
"code": "2825",
"name": "Nem háztartási hűtő, légállapot-szabályozó gyártása"
},
{
"id": 240,
"code": "2829",
"name": "M.n.s. egyéb általános rendeltetésű gép gyártása"
},
{
"id": 241,
"code": "2830",
"name": "Mezőgazdasági, erdészeti gép gyártása"
},
{
"id": 242,
"code": "2841",
"name": "Fémmegmunkáló szerszámgép gyártása"
},
{
"id": 243,
"code": "2849",
"name": "Egyéb szerszámgép gyártása"
},
{
"id": 244,
"code": "2891",
"name": "Kohászati gép gyártása"
},
{
"id": 245,
"code": "2892",
"name": "Bányászati, építőipari gép gyártása"
},
{
"id": 246,
"code": "2893",
"name": "Élelmiszer-, dohányipari gép gyártása"
},
{
"id": 247,
"code": "2894",
"name": "Textil-, ruházati, bőripari gép gyártása"
},
{
"id": 248,
"code": "2895",
"name": "Papíripari gép gyártása"
},
{
"id": 249,
"code": "2896",
"name": "Műanyag-, gumifeldolgozó gép gyártása"
},
{
"id": 250,
"code": "2899",
"name": "M.n.s. egyéb speciális gép gyártása"
},
{
"id": 251,
"code": "2910",
"name": "Közúti gépjármű gyártása"
},
{
"id": 252,
"code": "2920",
"name": "Gépjármű-karosszéria, pótkocsi gyártása"
},
{
"id": 253,
"code": "2931",
"name": "Járművillamossági, -elektronikai készülékek gyártása"
},
{
"id": 254,
"code": "2932",
"name": "Közúti jármű, járműmotor alkatrészeinek gyártása"
},
{
"id": 255,
"code": "3011",
"name": "Hajógyártás"
},
{
"id": 256,
"code": "3012",
"name": "Szabadidő-, sporthajó gyártása"
},
{
"id": 257,
"code": "3020",
"name": "Vasúti, kötöttpályás jármű gyártása"
},
{
"id": 258,
"code": "3030",
"name": "Légi, űrjármű gyártása"
},
{
"id": 259,
"code": "3040",
"name": "Katonai harcjármű gyártása"
},
{
"id": 260,
"code": "3091",
"name": "Motorkerékpár gyártása"
},
{
"id": 261,
"code": "3092",
"name": "Kerékpár, mozgássérültkocsi gyártása"
},
{
"id": 262,
"code": "3099",
"name": "M.n.s. egyéb jármű gyártása"
},
{
"id": 263,
"code": "3101",
"name": "Irodabútor gyártása"
},
{
"id": 264,
"code": "3102",
"name": "Konyhabútorgyártás"
},
{
"id": 265,
"code": "3103",
"name": "Ágybetét gyártása"
},
{
"id": 266,
"code": "3109",
"name": "Egyéb bútor gyártása"
},
{
"id": 267,
"code": "3211",
"name": "Érmegyártás"
},
{
"id": 268,
"code": "3212",
"name": "Ékszergyártás"
},
{
"id": 269,
"code": "3213",
"name": "Divatékszer gyártása"
},
{
"id": 270,
"code": "3220",
"name": "Hangszergyártás"
},
{
"id": 271,
"code": "3230",
"name": "Sportszergyártás"
},
{
"id": 272,
"code": "3240",
"name": "Játékgyártás"
},
{
"id": 273,
"code": "3250",
"name": "Orvosi eszköz gyártása"
},
{
"id": 274,
"code": "3291",
"name": "Seprű-, kefegyártás"
},
{
"id": 275,
"code": "3299",
"name": "Egyéb m.n.s feldolgozóipari tevékenység"
},
{
"id": 276,
"code": "3311",
"name": "Fémfeldolgozási termék javítása"
},
{
"id": 277,
"code": "3312",
"name": "Ipari gép, berendezés javítása"
},
{
"id": 278,
"code": "3313",
"name": "Elektronikus, optikai eszköz javítása"
},
{
"id": 279,
"code": "3314",
"name": "Ipari villamos gép, berendezés javítása"
},
{
"id": 280,
"code": "3315",
"name": "Hajó, csónak javítása"
},
{
"id": 281,
"code": "3316",
"name": "Repülőgép, űrhajó javítása"
},
{
"id": 282,
"code": "3317",
"name": "Egyéb közlekedési eszköz javítása"
},
{
"id": 283,
"code": "3319",
"name": "Egyéb ipari eszköz javítása"
},
{
"id": 284,
"code": "3320",
"name": "Ipari gép, berendezés üzembe helyezése"
},
{
"id": 285,
"code": "3511",
"name": "Villamosenergia-termelés"
},
{
"id": 286,
"code": "3512",
"name": "Villamosenergia-szállítás"
},
{
"id": 287,
"code": "3513",
"name": "Villamosenergia-elosztás"
},
{
"id": 288,
"code": "3514",
"name": "Villamosenergia-kereskedelem"
},
{
"id": 289,
"code": "3521",
"name": "Gázgyártás"
},
{
"id": 290,
"code": "3522",
"name": "Gázelosztás"
},
{
"id": 291,
"code": "3523",
"name": "Gázkereskedelem"
},
{
"id": 292,
"code": "3530",
"name": "Gőzellátás, légkondicionálás"
},
{
"id": 293,
"code": "3600",
"name": "Víztermelés, -kezelés, -ellátás"
},
{
"id": 294,
"code": "3700",
"name": "Szennyvíz gyűjtése, kezelése"
},
{
"id": 295,
"code": "3811",
"name": "Nem veszélyes hulladék gyűjtése"
},
{
"id": 296,
"code": "3812",
"name": "Veszélyes hulladék gyűjtése"
},
{
"id": 297,
"code": "3821",
"name": "Nem veszélyes hulladék kezelése, ártalmatlanítása"
},
{
"id": 298,
"code": "3822",
"name": "Veszélyes hulladék kezelése, ártalmatlanítása"
},
{
"id": 299,
"code": "3831",
"name": "Használt eszköz bontása"
},
{
"id": 300,
"code": "3832",
"name": "Hulladék újrahasznosítása"
},
{
"id": 301,
"code": "3900",
"name": "Szennyeződésmentesítés, egyéb hulladékkezelés"
},
{
"id": 302,
"code": "4110",
"name": "Épületépítési projekt szervezése"
},
{
"id": 303,
"code": "4120",
"name": "Lakó- és nem lakó épület építése"
},
{
"id": 304,
"code": "4211",
"name": "Út, autópálya építése"
},
{
"id": 305,
"code": "4212",
"name": "Vasút építése"
},
{
"id": 306,
"code": "4213",
"name": "Híd, alagút építése"
},
{
"id": 307,
"code": "4221",
"name": "Folyadék szállítására szolgáló közmű építése"
},
{
"id": 308,
"code": "4222",
"name": "Elektromos, híradás-technikai célú közmű építése"
},
{
"id": 309,
"code": "4291",
"name": "Vízi létesítmény építése"
},
{
"id": 310,
"code": "4299",
"name": "Egyéb m.n.s. építés"
},
{
"id": 311,
"code": "4311",
"name": "Bontás"
},
{
"id": 312,
"code": "4312",
"name": "Építési terület előkészítése"
},
{
"id": 313,
"code": "4313",
"name": "Talajmintavétel, próbafúrás"
},
{
"id": 314,
"code": "4321",
"name": "Villanyszerelés"
},
{
"id": 315,
"code": "4322",
"name": "Víz-, gáz-, fűtés-, légkondicionáló-szerelés"
},
{
"id": 316,
"code": "4329",
"name": "Egyéb épületgépészeti szerelés"
},
{
"id": 317,
"code": "4331",
"name": "Vakolás"
},
{
"id": 318,
"code": "4332",
"name": "Épületasztalos-szerkezet szerelése"
},
{
"id": 319,
"code": "4333",
"name": "Padló-, falburkolás"
},
{
"id": 320,
"code": "4334",
"name": "Festés, üvegezés"
},
{
"id": 321,
"code": "4339",
"name": "Egyéb befejező építés m.n.s."
},
{
"id": 322,
"code": "4391",
"name": "Tetőfedés, tetőszerkezet-építés"
},
{
"id": 323,
"code": "4399",
"name": "Egyéb speciális szaképítés m.n.s."
},
{
"id": 324,
"code": "4511",
"name": "Személygépjármű-, könnyűgépjármű-kereskedelem"
},
{
"id": 325,
"code": "4519",
"name": "Egyéb gépjármű-kereskedelem"
},
{
"id": 326,
"code": "4520",
"name": "Gépjárműjavítás, -karbantartás"
},
{
"id": 327,
"code": "4531",
"name": "Gépjárműalkatrész-nagykereskedelem"
},
{
"id": 328,
"code": "4532",
"name": "Gépjárműalkatrész-kiskereskedelem"
},
{
"id": 329,
"code": "4540",
"name": "Motorkerékpár, -alkatrész kereskedelme, javítása"
},
{
"id": 330,
"code": "4611",
"name": "Mezőgazdasági termék ügynöki nagykereskedelme"
},
{
"id": 331,
"code": "4612",
"name": "Alapanyag, üzemanyag ügynöki nagykereskedelme"
},
{
"id": 332,
"code": "4613",
"name": "Fa-, építési anyag ügynöki nagykereskedelme"
},
{
"id": 333,
"code": "4614",
"name": "Gép, hajó, repülőgép ügynöki nagykereskedelme"
},
{
"id": 334,
"code": "4615",
"name": "Bútor, háztartási áru, fémáru ügynöki nagykereskedelme"
},
{
"id": 335,
"code": "4616",
"name": "Textil, ruházat, lábbeli, bőráru ügynöki nagykereskedelme"
},
{
"id": 336,
"code": "4617",
"name": "Élelmiszer, ital, dohányáru ügynöki nagykereskedelme"
},
{
"id": 337,
"code": "4618",
"name": "Egyéb termék ügynöki nagykereskedelme"
},
{
"id": 338,
"code": "4619",
"name": "Vegyes termékkörű ügynöki nagykereskedelem"
},
{
"id": 339,
"code": "4621",
"name": "Gabona, dohány, vetőmag, takarmány nagykereskedelme"
},
{
"id": 340,
"code": "4622",
"name": "Dísznövény nagykereskedelme"
},
{
"id": 341,
"code": "4623",
"name": "Élőállat nagykereskedelme"
},
{
"id": 342,
"code": "4624",
"name": "Bőr nagykereskedelme"
},
{
"id": 343,
"code": "4631",
"name": "Zöldség-, gyümölcs-nagykereskedelem"
},
{
"id": 344,
"code": "4632",
"name": "Hús-, húskészítmény nagykereskedelme"
},
{
"id": 345,
"code": "4633",
"name": "Tejtermék, tojás, zsiradék nagykereskedelme"
},
{
"id": 346,
"code": "4634",
"name": "Ital nagykereskedelme"
},
{
"id": 347,
"code": "4635",
"name": "Dohányáru nagykereskedelme"
},
{
"id": 348,
"code": "4636",
"name": "Cukor, édesség nagykereskedelme"
},
{
"id": 349,
"code": "4637",
"name": "Kávé-, tea-, kakaó-, fűszer-nagykereskedelem"
},
{
"id": 350,
"code": "4638",
"name": "Egyéb élelmiszer nagykereskedelme"
},
{
"id": 351,
"code": "4639",
"name": "Élelmiszer, ital, dohányáru vegyes nagykereskedelme"
},
{
"id": 352,
"code": "4641",
"name": "Textil-nagykereskedelem"
},
{
"id": 353,
"code": "4642",
"name": "Ruházat, lábbeli nagykereskedelme"
},
{
"id": 354,
"code": "4643",
"name": "Elektronikus háztartási cikk nagykereskedelme"
},
{
"id": 355,
"code": "4644",
"name": "Porcelán-, üvegáru-, tisztítószer-nagykereskedelem"
},
{
"id": 356,
"code": "4645",
"name": "Illatszer nagykereskedelme"
},
{
"id": 357,
"code": "4646",
"name": "Gyógyszer, gyógyászati termék nagykereskedelme"
},
{
"id": 358,
"code": "4647",
"name": "Bútor, szőnyeg, világítóberendezés nagykereskedelme"
},
{
"id": 359,
"code": "4648",
"name": "Óra-, ékszer-nagykereskedelem"
},
{
"id": 360,
"code": "4649",
"name": "Egyéb háztartási cikk nagykereskedelme m.n.s."
},
{
"id": 361,
"code": "4651",
"name": "Számítógép, periféria, szoftver nagykereskedelme"
},
{
"id": 362,
"code": "4652",
"name": "Elektronikus, híradás-technikai berendezés, és alkatrészei nagykereskedelme"
},
{
"id": 363,
"code": "4661",
"name": "Mezőgazdasági gép, berendezés nagykereskedelme"
},
{
"id": 364,
"code": "4662",
"name": "Szerszámgép-nagykereskedelem"
},
{
"id": 365,
"code": "4663",
"name": "Bányászati-, építőipari gép nagykereskedelme"
},
{
"id": 366,
"code": "4664",
"name": "Textilipari gép, varró-, kötőgép nagykereskedelme"
},
{
"id": 367,
"code": "4665",
"name": "Irodabútor-nagykereskedelem"
},
{
"id": 368,
"code": "4666",
"name": "Egyéb irodagép, -berendezés nagykereskedelme"
},
{
"id": 369,
"code": "4669",
"name": "Egyéb m.n.s. gép, berendezés nagykereskedelme"
},
{
"id": 370,
"code": "4671",
"name": "Üzem-, tüzelőanyag nagykereskedelme"
},
{
"id": 371,
"code": "4672",
"name": "Fém-, érc-nagykereskedelem"
},
{
"id": 372,
"code": "4673",
"name": "Fa-, építőanyag-, szaniteráru-nagykereskedelem"
},
{
"id": 373,
"code": "4674",
"name": "Fémáru, szerelvény, fűtési berendezés nagykereskedelme"
},
{
"id": 374,
"code": "4675",
"name": "Vegyi áru nagykereskedelme"
},
{
"id": 375,
"code": "4676",
"name": "Egyéb termelési célú termék nagykereskedelme"
},
{
"id": 376,
"code": "4677",
"name": "Hulladék-nagykereskedelem"
},
{
"id": 377,
"code": "4690",
"name": "Vegyestermékkörű nagykereskedelem"
},
{
"id": 378,
"code": "4711",
"name": "Élelmiszer jellegű bolti vegyes kiskereskedelem"
},
{
"id": 379,
"code": "4719",
"name": "Iparcikk jellegű bolti vegyes kiskereskedelem"
},
{
"id": 380,
"code": "4721",
"name": "Zöldség, gyümölcs kiskereskedelme"
},
{
"id": 381,
"code": "4722",
"name": "Hús-, húsáru kiskereskedelme"
},
{
"id": 382,
"code": "4723",
"name": "Hal kiskereskedelme"
},
{
"id": 383,
"code": "4724",
"name": "Kenyér-, pékáru-, édesség-kiskereskedelem"
},
{
"id": 384,
"code": "4725",
"name": "Ital-kiskereskedelem"
},
{
"id": 385,
"code": "4726",
"name": "Dohányáru-kiskereskedelem"
},
{
"id": 386,
"code": "4729",
"name": "Egyéb élelmiszer-kiskereskedelem"
},
{
"id": 387,
"code": "4730",
"name": "Gépjárműüzemanyag-kiskereskedelem"
},
{
"id": 388,
"code": "4741",
"name": "Számítógép, periféria, szoftver kiskereskedelme"
},
{
"id": 389,
"code": "4742",
"name": "Telekommunikációs termék kiskereskedelme"
},
{
"id": 390,
"code": "4743",
"name": "Audio-, videoberendezés kiskereskedelme"
},
{
"id": 391,
"code": "4751",
"name": "Textil-kiskereskedelem"
},
{
"id": 392,
"code": "4752",
"name": "Vasáru-, festék-, üveg-kiskereskedelem"
},
{
"id": 393,
"code": "4753",
"name": "Takaró, szőnyeg, fal-, padlóburkoló kiskereskedelme"
},
{
"id": 394,
"code": "4754",
"name": "Villamos háztartási készülék kiskereskedelme"
},
{
"id": 395,
"code": "4759",
"name": "Bútor, világítási eszköz, egyéb háztartási cikk kiskereskedelme"
},
{
"id": 396,
"code": "4761",
"name": "Könyv-kiskereskedelem"
},
{
"id": 397,
"code": "4762",
"name": "Újság-, papíráru-kiskereskedelem"
},
{
"id": 398,
"code": "4763",
"name": "Zene-, videofelvétel kiskereskedelme"
},
{
"id": 399,
"code": "4764",
"name": "Sportszer-kiskereskedelem"
},
{
"id": 400,
"code": "4765",
"name": "Játék-kiskereskedelem"
},
{
"id": 401,
"code": "4771",
"name": "Ruházat kiskereskedelem"
},
{
"id": 402,
"code": "4772",
"name": "Lábbeli-, bőráru-kiskereskedelem"
},
{
"id": 403,
"code": "4773",
"name": "Gyógyszer-kiskereskedelem"
},
{
"id": 404,
"code": "4774",
"name": "Gyógyászati termék kiskereskedelme"
},
{
"id": 405,
"code": "4775",
"name": "Illatszer-kiskereskedelem"
},
{
"id": 406,
"code": "4776",
"name": "Dísznövény, vetőmag, műtrágya, hobbiállat-eledel kiskereskedelme"
},
{
"id": 407,
"code": "4777",
"name": "Óra-, ékszer-kiskereskedelem"
},
{
"id": 408,
"code": "4778",
"name": "Egyéb m.n.s. új áru kiskereskedelme"
},
{
"id": 409,
"code": "4779",
"name": "Használtcikk bolti kiskereskedelme"
},
{
"id": 410,
"code": "4781",
"name": "Élelmiszer, ital, dohányáru piaci kiskereskedelme"
},
{
"id": 411,
"code": "4782",
"name": "Textil, ruházat, lábbeli piaci kiskereskedelme"
},
{
"id": 412,
"code": "4789",
"name": "Egyéb áruk piaci kiskereskedelme"
},
{
"id": 413,
"code": "4791",
"name": "Csomagküldő, internetes kiskereskedelem"
},
{
"id": 414,
"code": "4799",
"name": "Egyéb nem bolti, piaci kiskereskedelem"
},
{
"id": 415,
"code": "4910",
"name": "Helyközi vasúti személyszállítás"
},
{
"id": 416,
"code": "4920",
"name": "Vasúti áruszállítás"
},
{
"id": 417,
"code": "4931",
"name": "Városi, elővárosi szárazföldi személyszállítás"
},
{
"id": 418,
"code": "4932",
"name": "Taxis személyszállítás"
},
{
"id": 419,
"code": "4939",
"name": "M.n.s. egyéb szárazföldi személyszállítás"
},
{
"id": 420,
"code": "4941",
"name": "Közúti áruszállítás"
},
{
"id": 421,
"code": "4942",
"name": "Költöztetés"
},
{
"id": 422,
"code": "4950",
"name": "Csővezetékes szállítás"
},
{
"id": 423,
"code": "5010",
"name": "Tengeri személyszállítás"
},
{
"id": 424,
"code": "5020",
"name": "Tengeri áruszállítás"
},
{
"id": 425,
"code": "5030",
"name": "Belvízi személyszállítás"
},
{
"id": 426,
"code": "5040",
"name": "Belvízi áruszállítás"
},
{
"id": 427,
"code": "5110",
"name": "Légi személyszállítás"
},
{
"id": 428,
"code": "5121",
"name": "Légi áruszállítás"
},
{
"id": 429,
"code": "5122",
"name": "Űrszállítás"
},
{
"id": 430,
"code": "5210",
"name": "Raktározás, tárolás"
},
{
"id": 431,
"code": "5221",
"name": "Szárazföldi szállítást kiegészítő szolgáltatás"
},
{
"id": 432,
"code": "5222",
"name": "Vízi szállítást kiegészítő szolgáltatás"
},
{
"id": 433,
"code": "5223",
"name": "Légi szállítást kiegészítő szolgáltatás"
},
{
"id": 434,
"code": "5224",
"name": "Rakománykezelés"
},
{
"id": 435,
"code": "5229",
"name": "Egyéb szállítást kiegészítő szolgáltatás"
},
{
"id": 436,
"code": "5310",
"name": "Postai tevékenység (egyetemes kötelezettséggel)"
},
{
"id": 437,
"code": "5320",
"name": "Egyéb postai, futárpostai tevékenység"
},
{
"id": 438,
"code": "5510",
"name": "Szállodai szolgáltatás"
},
{
"id": 439,
"code": "5520",
"name": "Üdülési, egyéb átmeneti szálláshely-szolgáltatás"
},
{
"id": 440,
"code": "5530",
"name": "Kempingszolgáltatás"
},
{
"id": 441,
"code": "5590",
"name": "Egyéb szálláshely-szolgáltatás"
},
{
"id": 442,
"code": "5610",
"name": "Éttermi, mozgó vendéglátás"
},
{
"id": 443,
"code": "5621",
"name": "Rendezvényi étkeztetés"
},
{
"id": 444,
"code": "5629",
"name": "Egyéb vendéglátás"
},
{
"id": 445,
"code": "5630",
"name": "Italszolgáltatás"
},
{
"id": 446,
"code": "5811",
"name": "Könyvkiadás"
},
{
"id": 447,
"code": "5812",
"name": "Címtárak, levelezőjegyzékek kiadása"
},
{
"id": 448,
"code": "5813",
"name": "Napilapkiadás"
},
{
"id": 449,
"code": "5814",
"name": "Folyóirat, időszaki kiadvány kiadása"
},
{
"id": 450,
"code": "5819",
"name": "Egyéb kiadói tevékenység"
},
{
"id": 451,
"code": "5821",
"name": "Számítógépes játék kiadása"
},
{
"id": 452,
"code": "5829",
"name": "Egyéb szoftverkiadás"
},
{
"id": 453,
"code": "5911",
"name": "Film-, video-, televízióműsor-gyártás"
},
{
"id": 454,
"code": "5912",
"name": "Film-, videogyártás, televíziós műsorfelvétel utómunkálatai"
},
{
"id": 455,
"code": "5913",
"name": "Film-, video- és televízióprogram terjesztése"
},
{
"id": 456,
"code": "5914",
"name": "Filmvetítés"
},
{
"id": 457,
"code": "5920",
"name": "Hangfelvétel készítése, kiadása"
},
{
"id": 458,
"code": "6010",
"name": "Rádióműsor-szolgáltatás"
},
{
"id": 459,
"code": "6020",
"name": "Televízióműsor összeállítása, szolgáltatása"
},
{
"id": 460,
"code": "6110",
"name": "Vezetékes távközlés"
},
{
"id": 461,
"code": "6120",
"name": "Vezeték nélküli távközlés"
},
{
"id": 462,
"code": "6130",
"name": "Műholdas távközlés"
},
{
"id": 463,
"code": "6190",
"name": "Egyéb távközlés"
},
{
"id": 464,
"code": "6201",
"name": "Számítógépes programozás"
},
{
"id": 465,
"code": "6202",
"name": "Információ-technológiai szaktanácsadás"
},
{
"id": 466,
"code": "6203",
"name": "Számítógép-üzemeltetés"
},
{
"id": 467,
"code": "6209",
"name": "Egyéb információ-technológiai szolgáltatás"
},
{
"id": 468,
"code": "6311",
"name": "Adatfeldolgozás, web-hoszting szolgáltatás"
},
{
"id": 469,
"code": "6312",
"name": "Világháló-portál szolgáltatás"
},
{
"id": 470,
"code": "6391",
"name": "Hírügynökségi tevékenység"
},
{
"id": 471,
"code": "6399",
"name": "M.n.s. egyéb információs szolgáltatás"
},
{
"id": 472,
"code": "6411",
"name": "Jegybanki tevékenység"
},
{
"id": 473,
"code": "6419",
"name": "Egyéb monetáris közvetítés"
},
{
"id": 474,
"code": "6420",
"name": "Vagyonkezelés (holding)"
},
{
"id": 475,
"code": "6430",
"name": "Befektetési alapok és hasonlók"
},
{
"id": 476,
"code": "6491",
"name": "Pénzügyi lízing"
},
{
"id": 477,
"code": "6492",
"name": "Egyéb hitelnyújtás"
},
{
"id": 478,
"code": "6499",
"name": "M.n.s. egyéb pénzügyi közvetítés"
},
{
"id": 479,
"code": "6511",
"name": "Életbiztosítás"
},
{
"id": 480,
"code": "6512",
"name": "Nem életbiztosítás"
},
{
"id": 481,
"code": "6520",
"name": "Viszontbiztosítás"
},
{
"id": 482,
"code": "6530",
"name": "Nyugdíjalapok"
},
{
"id": 483,
"code": "6611",
"name": "Pénz-, tőkepiac igazgatása"
},
{
"id": 484,
"code": "6612",
"name": "Értékpapír-, árutőzsdei ügynöki tevékenység"
},
{
"id": 485,
"code": "6619",
"name": "Egyéb pénzügyi kiegészítő tevékenység"
},
{
"id": 486,
"code": "6621",
"name": "Kockázatértékelés, kárszakértés"
},
{
"id": 487,
"code": "6622",
"name": "Biztosítási ügynöki, brókeri tevékenység"
},
{
"id": 488,
"code": "6629",
"name": "Biztosítás, nyugdíjalap egyéb kiegészítő tevékenysége"
},
{
"id": 489,
"code": "6630",
"name": "Alapkezelés"
},
{
"id": 490,
"code": "6810",
"name": "Saját tulajdonú ingatlan adásvétele"
},
{
"id": 491,
"code": "6820",
"name": "Saját tulajdonú, bérelt ingatlan bérbeadása, üzemeltetése"
},
{
"id": 492,
"code": "6831",
"name": "Ingatlanügynöki tevékenység"
},
{
"id": 493,
"code": "6832",
"name": "Ingatlankezelés"
},
{
"id": 494,
"code": "6910",
"name": "Jogi tevékenység"
},
{
"id": 495,
"code": "6920",
"name": "Számviteli, könyvvizsgálói, adószakértői tevékenység"
},
{
"id": 496,
"code": "7010",
"name": "Üzletvezetés"
},
{
"id": 497,
"code": "7021",
"name": "PR, kommunikáció"
},
{
"id": 498,
"code": "7022",
"name": "Üzletviteli, egyéb vezetési tanácsadás"
},
{
"id": 499,
"code": "7111",
"name": "Építészmérnöki tevékenység"
},
{
"id": 500,
"code": "7112",
"name": "Mérnöki tevékenység, műszaki tanácsadás"
},
{
"id": 501,
"code": "7120",
"name": "Műszaki vizsgálat, elemzés"
},
{
"id": 502,
"code": "7211",
"name": "Biotechnológiai kutatás, fejlesztés"
},
{
"id": 503,
"code": "7219",
"name": "Egyéb természettudományi, műszaki kutatás, fejlesztés"
},
{
"id": 504,
"code": "7220",
"name": "Társadalomtudományi, humán kutatás, fejlesztés"
},
{
"id": 505,
"code": "7311",
"name": "Reklámügynöki tevékenység"
},
{
"id": 506,
"code": "7312",
"name": "Médiareklám"
},
{
"id": 507,
"code": "7320",
"name": "Piac-, közvélemény-kutatás"
},
{
"id": 508,
"code": "7410",
"name": "Divat-, formatervezés"
},
{
"id": 509,
"code": "7420",
"name": "Fényképészet"
},
{
"id": 510,
"code": "7430",
"name": "Fordítás, tolmácsolás"
},
{
"id": 511,
"code": "7490",
"name": "M.n.s. egyéb szakmai, tudományos, műszaki tevékenység"
},
{
"id": 512,
"code": "7500",
"name": "Állat-egészségügyi ellátás"
},
{
"id": 513,
"code": "7711",
"name": "Személygépjármű kölcsönzése"
},
{
"id": 514,
"code": "7712",
"name": "Gépjárműkölcsönzés (3,5 tonna fölött)"
},
{
"id": 515,
"code": "7721",
"name": "Szabadidős, sporteszköz kölcsönzése"
},
{
"id": 516,
"code": "7722",
"name": "Videokazetta, lemez kölcsönzése"
},
{
"id": 517,
"code": "7729",
"name": "Egyéb személyi használatú, háztartási cikk kölcsönzése"
},
{
"id": 518,
"code": "7731",
"name": "Mezőgazdasági gép kölcsönzése"
},
{
"id": 519,
"code": "7732",
"name": "Építőipari gép kölcsönzése"
},
{
"id": 520,
"code": "7733",
"name": "Irodagép kölcsönzése (beleértve: számítógép)"
},
{
"id": 521,
"code": "7734",
"name": "Vízi szállítóeszköz kölcsönzése"
},
{
"id": 522,
"code": "7735",
"name": "Légi szállítóeszköz kölcsönzése"
},
{
"id": 523,
"code": "7739",
"name": "Egyéb gép, tárgyi eszköz kölcsönzése"
},
{
"id": 524,
"code": "7740",
"name": "Immateriális javak kölcsönzése"
},
{
"id": 525,
"code": "7810",
"name": "Munkaközvetítés"
},
{
"id": 526,
"code": "7820",
"name": "Munkaerőkölcsönzés"
},
{
"id": 527,
"code": "7830",
"name": "Egyéb emberierőforrás-ellátás, -gazdálkodás"
},
{
"id": 528,
"code": "7911",
"name": "Utazásközvetítés"
},
{
"id": 529,
"code": "7912",
"name": "Utazásszervezés"
},
{
"id": 530,
"code": "7990",
"name": "Egyéb foglalás"
},
{
"id": 531,
"code": "8010",
"name": "Személybiztonsági tevékenység"
},
{
"id": 532,
"code": "8020",
"name": "Biztonsági rendszer szolgáltatás"
},
{
"id": 533,
"code": "8030",
"name": "Nyomozás"
},
{
"id": 534,
"code": "8110",
"name": "Építményüzemeltetés"
},
{
"id": 535,
"code": "8121",
"name": "Általános épülettakarítás"
},
{
"id": 536,
"code": "8122",
"name": "Egyéb épület-, ipari takarítás"
},
{
"id": 537,
"code": "8129",
"name": "Egyéb takarítás"
},
{
"id": 538,
"code": "8130",
"name": "Zöldterület-kezelés"
},
{
"id": 539,
"code": "8211",
"name": "Összetett adminisztratív szolgáltatás"
},
{
"id": 540,
"code": "8219",
"name": "Fénymásolás, egyéb irodai szolgáltatás"
},
{
"id": 541,
"code": "8220",
"name": "Telefoninformáció"
},
{
"id": 542,
"code": "8230",
"name": "Konferencia, kereskedelmi bemutató szervezése"
},
{
"id": 543,
"code": "8291",
"name": "Követelésbehajtás"
},
{
"id": 544,
"code": "8292",
"name": "Csomagolás"
},
{
"id": 545,
"code": "8299",
"name": "M.n.s. egyéb kiegészítő üzleti szolgáltatás"
},
{
"id": 546,
"code": "8411",
"name": "Általános közigazgatás"
},
{
"id": 547,
"code": "8413",
"name": "Üzleti élet szabályozása, hatékonyságának ösztönzése"
},
{
"id": 548,
"code": "8421",
"name": "Külügyek"
},
{
"id": 549,
"code": "8422",
"name": "Honvédelem"
},
{
"id": 550,
"code": "8423",
"name": "Igazságügy, bíróság"
},
{
"id": 551,
"code": "8424",
"name": "Közbiztonság, közrend"
},
{
"id": 552,
"code": "8425",
"name": "Tűzvédelem"
},
{
"id": 553,
"code": "8430",
"name": "Kötelező társadalombiztosítás"
},
{
"id": 554,
"code": "8510",
"name": "Iskolai előkészítő oktatás"
},
{
"id": 555,
"code": "8520",
"name": "Alapfokú oktatás"
},
{
"id": 556,
"code": "8531",
"name": "Általános középfokú oktatás"
},
{
"id": 557,
"code": "8532",
"name": "Szakmai középfokú oktatás"
},
{
"id": 558,
"code": "8541",
"name": "Felső szintű, nem felsőfokú oktatás"
},
{
"id": 559,
"code": "8542",
"name": "Felsőfokú oktatás"
},
{
"id": 560,
"code": "8551",
"name": "Sport, szabadidős képzés"
},
{
"id": 561,
"code": "8552",
"name": "Kulturális képzés"
},
{
"id": 562,
"code": "8553",
"name": "Járművezető-oktatás"
},
{
"id": 563,
"code": "8559",
"name": "M.n.s. egyéb oktatás"
},
{
"id": 564,
"code": "8560",
"name": "Oktatást kiegészítő tevékenység"
},
{
"id": 565,
"code": "8610",
"name": "Fekvőbeteg-ellátás"
},
{
"id": 566,
"code": "8621",
"name": "Általános járóbeteg-ellátás"
},
{
"id": 567,
"code": "8622",
"name": "Szakorvosi járóbeteg-ellátás"
},
{
"id": 568,
"code": "8623",
"name": "Fogorvosi járóbeteg-ellátás"
},
{
"id": 569,
"code": "8690",
"name": "Egyéb humán-egészségügyi ellátás"
},
{
"id": 570,
"code": "8710",
"name": "Bentlakásos, nem kórházi ápolás"
},
{
"id": 571,
"code": "8720",
"name": "Mentális, szenvedélybeteg bentlakásos ellátása"
},
{
"id": 572,
"code": "8730",
"name": "Idősek, fogyatékosok bentlakásos ellátása"
},
{
"id": 573,
"code": "8790",
"name": "Egyéb bentlakásos ellátás"
},
{
"id": 574,
"code": "8810",
"name": "Idősek, fogyatékosok szociális ellátása bentlakás nélkül"
},
{
"id": 575,
"code": "8891",
"name": "Gyermekek napközbeni ellátása"
},
{
"id": 576,
"code": "8899",
"name": "M.n.s. egyéb szociális ellátás bentlakás nélkül"
},
{
"id": 577,
"code": "9001",
"name": "Előadó-művészet"
},
{
"id": 578,
"code": "9002",
"name": "Előadó-művészetet kiegészítő tevékenység"
},
{
"id": 579,
"code": "9003",
"name": "Alkotóművészet"
},
{
"id": 580,
"code": "9004",
"name": "Művészeti létesítmények működtetése"
},
{
"id": 581,
"code": "9101",
"name": "Könyvtári, levéltári tevékenység"
},
{
"id": 582,
"code": "9102",
"name": "Múzeumi tevékenység"
},
{
"id": 583,
"code": "9103",
"name": "Történelmi hely, építmény, egyéb látványosság működtetése"
},
{
"id": 584,
"code": "9104",
"name": "Növény-, állatkert, természetvédelmi terület működtetése"
},
{
"id": 585,
"code": "9200",
"name": "Szerencsejáték, fogadás"
},
{
"id": 586,
"code": "9311",
"name": "Sportlétesítmény működtetése"
},
{
"id": 587,
"code": "9312",
"name": "Sportegyesületi tevékenység"
},
{
"id": 588,
"code": "9313",
"name": "Testedzési szolgáltatás"
},
{
"id": 589,
"code": "9319",
"name": "Egyéb sporttevékenység"
},
{
"id": 590,
"code": "9321",
"name": "Vidámparki, szórakoztatóparki tevékenység"
},
{
"id": 591,
"code": "9329",
"name": "M.n.s. egyéb szórakoztatás, szabadidős tevékenység"
},
{
"id": 592,
"code": "9411",
"name": "Vállalkozói, munkaadói érdekképviselet"
},
{
"id": 593,
"code": "9412",
"name": "Szakmai érdekképviselet"
},
{
"id": 594,
"code": "9420",
"name": "Szakszervezeti tevékenység"
},
{
"id": 595,
"code": "9491",
"name": "Egyházi tevékenység"
},
{
"id": 596,
"code": "9492",
"name": "Politikai tevékenység"
},
{
"id": 597,
"code": "9499",
"name": "M.n.s. egyéb közösségi, társadalmi tevékenység"
},
{
"id": 598,
"code": "9511",
"name": "Számítógép, -periféria javítása"
},
{
"id": 599,
"code": "9512",
"name": "Kommunikációs eszköz javítása"
},
{
"id": 600,
"code": "9521",
"name": "Szórakoztatóelektronikai cikk javítása"
},
{
"id": 601,
"code": "9522",
"name": "Háztartási gép, háztartási, kerti eszköz javítása"
},
{
"id": 602,
"code": "9523",
"name": "Lábbeli, egyéb bőráru javítása"
},
{
"id": 603,
"code": "9524",
"name": "Bútor, lakberendezési tárgy javítása"
},
{
"id": 604,
"code": "9525",
"name": "Óra-, ékszerjavítás"
},
{
"id": 605,
"code": "9529",
"name": "Egyéb személyi-, háztartási cikk javítása"
},
{
"id": 606,
"code": "9601",
"name": "Textil, szőrme mosása, tisztítása"
},
{
"id": 607,
"code": "9602",
"name": "Fodrászat, szépségápolás"
},
{
"id": 608,
"code": "9603",
"name": "Temetkezés, temetkezést kiegészítő szolgáltatás"
},
{
"id": 609,
"code": "9604",
"name": "Fizikai közérzetet javító szolgáltatás"
},
{
"id": 610,
"code": "9609",
"name": "M.n.s. egyéb személyi szolgáltatás"
},
{
"id": 611,
"code": "9700",
"name": "Háztartási alkalmazottat foglalkoztató magánháztartás"
},
{
"id": 612,
"code": "9810",
"name": "Háztartás termék-előállítása, szolgáltatása saját fogyasztásra"
},
{
"id": 613,
"code": "9820",
"name": "Háztartás szolgáltatása saját fogyasztásra"
},
{
"id": 614,
"code": "9900",
"name": "Területen kívüli szervezet"
},
{
"id": 615,
"code": "9999",
"name": "Ügyvédi tevékenység"
}
],
"message": ""
}
Received response:
Request failed with error:
Szerződés szereplő jogosultság típusok lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/contract_customer_types" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract_customer_types"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/contract_customer_types',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract_customer_types'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 10,
"name": "vevő"
},
{
"id": 11,
"name": "nem szereplő"
},
{
"id": 12,
"name": "haszonélvező: vásárlás"
},
{
"id": 13,
"name": "haszonélvező: ajándékozás"
},
{
"id": 14,
"name": "cég képviselője"
},
{
"id": 15,
"name": "cég tulajdonosa"
}
],
"message": ""
}
Received response:
Request failed with error:
Szerződéshez kapcsolódó fájl típusok lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/contract_file_types" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract_file_types"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/contract_file_types',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract_file_types'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 1,
"name": "Személyi igazolvány",
"for_person": 1,
"for_company": 0
},
{
"id": 2,
"name": "Lakcímkártya",
"for_person": 1,
"for_company": 0
},
{
"id": 3,
"name": "Adókártya",
"for_person": 1,
"for_company": 0
},
{
"id": 5,
"name": "Útlevél",
"for_person": 0,
"for_company": 0
},
{
"id": 6,
"name": "Vezetői engedély",
"for_person": 0,
"for_company": 0
},
{
"id": 7,
"name": "Tartózkodási engedély",
"for_person": 0,
"for_company": 0
},
{
"id": 10,
"name": "Aláírásminta \/ aláírási címpéldány",
"for_person": 0,
"for_company": 1
},
{
"id": 20,
"name": "Földhivatali díj igazolás",
"for_person": 0,
"for_company": 0
},
{
"id": 30,
"name": "Marketing fájl",
"for_person": 0,
"for_company": 0
},
{
"id": 40,
"name": "Adásvételi szerződések",
"for_person": 0,
"for_company": 0
},
{
"id": 41,
"name": "Műszaki egyeztetések",
"for_person": 0,
"for_company": 0
},
{
"id": 42,
"name": "Átadási dokumentumok",
"for_person": 0,
"for_company": 0
},
{
"id": 70,
"name": "Illetékkedvezményhez adásvételi szerződés",
"for_person": 0,
"for_company": 0
}
],
"message": ""
}
Received response:
Request failed with error:
Szerződéshez kapcsolódó hitel típusok lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/contract_loan_types" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract_loan_types"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/contract_loan_types',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract_loan_types'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 1,
"name": "Támogatott hitel"
},
{
"id": 2,
"name": "Piaci hitel"
},
{
"id": 3,
"name": "Munkáltatói kölcsön"
},
{
"id": 5,
"name": "CSOK"
}
],
"message": ""
}
Received response:
Request failed with error:
Igazolvány típusok lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/customer_card_types" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/customer_card_types"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/customer_card_types',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/customer_card_types'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 1,
"name": "személyi igazolvány"
},
{
"id": 2,
"name": "útlevél"
},
{
"id": 3,
"name": "vezetői engedély"
},
{
"id": 4,
"name": "tartózkodási engedély"
}
],
"message": ""
}
Received response:
Request failed with error:
Jogi státusz lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/customer_legal_types" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/customer_legal_types"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/customer_legal_types',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/customer_legal_types'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 1,
"name": "devizabelföldi"
},
{
"id": 2,
"name": "devizakülföldi"
}
],
"message": ""
}
Received response:
Request failed with error:
Nemzetiségek lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/nationalities" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/nationalities"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/nationalities',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/nationalities'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 1,
"name": "magyar"
},
{
"id": 2,
"name": "belga"
},
{
"id": 3,
"name": "bolgár"
},
{
"id": 4,
"name": "ciprusi"
},
{
"id": 5,
"name": "cseh"
},
{
"id": 6,
"name": "dán"
},
{
"id": 7,
"name": "észt"
},
{
"id": 8,
"name": "finn"
},
{
"id": 9,
"name": "francia"
},
{
"id": 10,
"name": "görög"
},
{
"id": 11,
"name": "holland"
},
{
"id": 12,
"name": "horvát"
},
{
"id": 13,
"name": "ír"
},
{
"id": 14,
"name": "lengyel"
},
{
"id": 15,
"name": "lett"
},
{
"id": 16,
"name": "litván"
},
{
"id": 17,
"name": "luxemburgi"
},
{
"id": 18,
"name": "máltai"
},
{
"id": 19,
"name": "német"
},
{
"id": 20,
"name": "olasz"
},
{
"id": 21,
"name": "osztrák"
},
{
"id": 22,
"name": "portugál"
},
{
"id": 23,
"name": "román"
},
{
"id": 24,
"name": "spanyol"
},
{
"id": 25,
"name": "svéd"
},
{
"id": 26,
"name": "szlovák"
},
{
"id": 27,
"name": "szlovén"
},
{
"id": 28,
"name": "Egyéb"
}
],
"message": ""
}
Received response:
Request failed with error:
Cserepótló lista lekérése
requires authentication
Illetékkedvezmény típusok lekérése
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/replacement_types" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/replacement_types"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/replacement_types',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/replacement_types'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 1,
"name": "Megelőző 3 éven belül eladott másik lakástulajdon"
},
{
"id": 2,
"name": "Követő 1 éven belül eladni kívánt másik lakástulajdon"
}
],
"message": ""
}
Received response:
Request failed with error:
Ingatlan
API végpont az ingatlan adatok kezelésére
Ingatlan lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/properties" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/properties"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/properties',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/properties'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 4752,
"code": "C-203",
"price": 60620000,
"type": 1,
"usable_area": 30
},
{
"id": 4921,
"code": "CT_005",
"price": 1092000,
"type": 2,
"usable_area": null
},
{
"id": 4939,
"code": "CT_023",
"price": 1244000,
"type": 2,
"usable_area": null
},
{
"id": 5023,
"code": "GK-P-5",
"price": 3500000,
"type": 3,
"usable_area": null
},
{
"id": 6825,
"code": "4-111",
"price": 26626200,
"type": 1,
"usable_area": null
}
],
"message": ""
}
Received response:
Request failed with error:
Response
Response Fields
id integer
A rekord azonosítója
code string
Az ingatlan neve
price integer
Az ingatlan ára
type integer
Az ingatlan típusa. 1: lakás, 2: tároló, 3: parkolóhely
usable_area integer
Az ingatlan hasznos alapterülete
Ingatlan létrehozása
requires authentication
Example request:
curl --request POST \
"https://adategyezteto-test.pnt5.dev/api/properties" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": 1,
\"code\": \"ABC\",
\"price\": 50000000,
\"type\": 1,
\"usable_area\": 1
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/properties"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"code": "ABC",
"price": 50000000,
"type": 1,
"usable_area": 1
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://adategyezteto-test.pnt5.dev/api/properties',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'id' => 1,
'code' => 'ABC',
'price' => 50000000,
'type' => 1,
'usable_area' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/properties'
payload = {
"id": 1,
"code": "ABC",
"price": 50000000,
"type": 1,
"usable_area": 1
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": {
"id": 11,
"code": "ABC",
"price": 50000000,
"type": 1
},
"message": "Property created."
}
Received response:
Request failed with error:
Ingatlan törlése
requires authentication
Example request:
curl --request DELETE \
"https://adategyezteto-test.pnt5.dev/api/properties" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": 1
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/properties"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
}
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'https://adategyezteto-test.pnt5.dev/api/properties',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'id' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/properties'
payload = {
"id": 1
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": [],
"message": "Property destroyed."
}
Received response:
Request failed with error:
Lakástakarék
API végpont a lakástakarék kezelésére
LTP lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/contract_building_savings" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract_building_savings"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/contract_building_savings',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract_building_savings'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 1,
"contract_id": 1205,
"contract_number": "foo",
"beneficiary": "Kis Kázmér",
"amount": 5000000,
"building_saving_id": 2
},
{
"id": 231,
"contract_id": 1205,
"contract_number": "4510125-801",
"beneficiary": "Rabár LTP2",
"amount": 2650000,
"building_saving_id": 2
},
{
"id": 232,
"contract_id": 1205,
"contract_number": "4510127-401",
"beneficiary": "Nagy LTP1",
"amount": 2650000,
"building_saving_id": 2
}
],
"message": ""
}
Received response:
Request failed with error:
Response
Response Fields
id integer
A rekord azonosítója
contract_id integer
A szerződés azonosítója
contract_number string
A szerződés száma
beneficiary string
A szerződés kedvezményezettje
amount integer
A szerződés összege
building_saving_id integer
Az LTP azonosítója
LTP rögzítése
requires authentication
Example request:
curl --request POST \
"https://adategyezteto-test.pnt5.dev/api/contract_building_savings" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": 1,
\"contract_id\": 1205,
\"building_saving_id\": 2,
\"contract_number\": \"Foo\",
\"beneficiary\": \"Kis Kázmér\",
\"amount\": 5000000
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract_building_savings"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"contract_id": 1205,
"building_saving_id": 2,
"contract_number": "Foo",
"beneficiary": "Kis Kázmér",
"amount": 5000000
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://adategyezteto-test.pnt5.dev/api/contract_building_savings',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'id' => 1,
'contract_id' => 1205,
'building_saving_id' => 2,
'contract_number' => 'Foo',
'beneficiary' => 'Kis Kázmér',
'amount' => 5000000,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract_building_savings'
payload = {
"id": 1,
"contract_id": 1205,
"building_saving_id": 2,
"contract_number": "Foo",
"beneficiary": "Kis Kázmér",
"amount": 5000000
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": {
"id": 1,
"contract_id": 1205,
"building_saving_id": 2,
"contract_number": "Foo",
"beneficiary": "Kis Kázmér",
"amount": 5000000
},
"message": "Contract building saving created."
}
Received response:
Request failed with error:
LTP törlése
requires authentication
Example request:
curl --request DELETE \
"https://adategyezteto-test.pnt5.dev/api/contract_building_savings" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": 1
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract_building_savings"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
}
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'https://adategyezteto-test.pnt5.dev/api/contract_building_savings',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'id' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract_building_savings'
payload = {
"id": 1
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": [],
"message": "Contract building saving destroyed."
}
Received response:
Request failed with error:
Munkaszüneti napok
API végpont a munkaszüneti napok kezelésére. A rendszer NEM kezel rendkívüli munkanapokat!
Munkaszüneti napok lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/holidays" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/holidays"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/holidays',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/holidays'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"holiday": "2021-08-20"
},
{
"holiday": "2021-11-01"
},
{
"holiday": "2021-12-24"
}
],
"message": ""
}
Received response:
Request failed with error:
Munkaszüneti nap rögzítése
requires authentication
Example request:
curl --request POST \
"https://adategyezteto-test.pnt5.dev/api/holidays" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"holiday\": \"2021-09-01\"
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/holidays"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"holiday": "2021-09-01"
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://adategyezteto-test.pnt5.dev/api/holidays',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'holiday' => '2021-09-01',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/holidays'
payload = {
"holiday": "2021-09-01"
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": {
"holiday": "2021-08-18T11:45:11"
},
"message": "Holiday created."
}
Example response (400):
{
"success": false,
"message": {
"holiday": [
"A(z) holiday megadása kötelező!"
]
}
}
Received response:
Request failed with error:
Munkaszüneti nap törlése
requires authentication
Example request:
curl --request DELETE \
"https://adategyezteto-test.pnt5.dev/api/holidays" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"holiday\": \"2021-09-01\"
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/holidays"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"holiday": "2021-09-01"
}
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'https://adategyezteto-test.pnt5.dev/api/holidays',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'holiday' => '2021-09-01',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/holidays'
payload = {
"holiday": "2021-09-01"
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": [],
"message": "Holiday destroyed."
}
Example response (400):
{
"success": false,
"message": {
"holiday": [
"A kiválasztott holiday érvénytelen."
]
}
}
Received response:
Request failed with error:
Projekt
API végpont a projekt adatok kezelésére
Projekt lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/projects" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/projects"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/projects',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/projects'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 11,
"name": "Sasad Liget 6",
"address": null,
"status": 0
},
{
"id": 15,
"name": "Waterfront City 1",
"address": null,
"status": 0
},
{
"id": 16,
"name": "Waterfront City 2",
"address": null,
"status": 1
},
{
"id": 17,
"name": "Waterfront City 3",
"address": null,
"status": 0
},
{
"id": 21,
"name": "Spirit Residence",
"address": null,
"status": 0
},
{
"id": 29,
"name": "Westside Residence",
"address": null,
"status": 0
}
],
"message": ""
}
Received response:
Request failed with error:
Response
Response Fields
id integer
A rekord azonosítója
name string
A projekt neve
address
A projekt címe
status integer
A projekt státusza. 0 esetén adategyeztetés nem végezhető, ennél nagyobb státusznál viszont igen.
Projekt létrehozása
requires authentication
Example request:
curl --request POST \
"https://adategyezteto-test.pnt5.dev/api/projects" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": 1,
\"name\": \"Sasadliget\",
\"address\": \"1011 Budapest, Minta utca 2\",
\"status\": 0
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/projects"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"name": "Sasadliget",
"address": "1011 Budapest, Minta utca 2",
"status": 0
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://adategyezteto-test.pnt5.dev/api/projects',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'id' => 1,
'name' => 'Sasadliget',
'address' => '1011 Budapest, Minta utca 2',
'status' => 0,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/projects'
payload = {
"id": 1,
"name": "Sasadliget",
"address": "1011 Budapest, Minta utca 2",
"status": 0
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": {
"id": 18,
"name": "Sasadliget",
"address": "1011 Budapest, Minta utca 2",
"status": 0
},
"message": "Project created."
}
Example response (400):
{
"success": false,
"message": {
"id": [
"A kiválasztott id érvénytelen."
]
}
}
Received response:
Request failed with error:
Projekt törlése
requires authentication
Example request:
curl --request DELETE \
"https://adategyezteto-test.pnt5.dev/api/projects" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": 1
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/projects"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
}
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'https://adategyezteto-test.pnt5.dev/api/projects',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'id' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/projects'
payload = {
"id": 1
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": [],
"message": "Project destroyed."
}
Received response:
Request failed with error:
Projekt módosítása
requires authentication
Example request:
curl --request PUT \
"https://adategyezteto-test.pnt5.dev/api/projects/1" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"status\": 1,
\"name\": \"Sasadliget\",
\"address\": \"1011 Budapest, Minta utca 2\"
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/projects/1"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"status": 1,
"name": "Sasadliget",
"address": "1011 Budapest, Minta utca 2"
}
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->put(
'https://adategyezteto-test.pnt5.dev/api/projects/1',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'status' => 1,
'name' => 'Sasadliget',
'address' => '1011 Budapest, Minta utca 2',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/projects/1'
payload = {
"status": 1,
"name": "Sasadliget",
"address": "1011 Budapest, Minta utca 2"
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": {
"id": 1,
"name": "Foo",
"address": "bar",
"status": "1"
},
"message": "Project updated."
}
Example response (400):
{
"success": false,
"message": {
"project_id": [
"A kiválasztott project id érvénytelen."
]
}
}
Received response:
Request failed with error:
Projekt általános/marketing dokumentum rögzítése
requires authentication
Example request:
curl --request POST \
"https://adategyezteto-test.pnt5.dev/api/project/4/attachements" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"file_original_name\": \"minta-fajl.gif\",
\"data\": \"R0lGODlhAQABAIAAAAAAAP\\\\\\/\\\\\\/\\\\\\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\"
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/project/4/attachements"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"file_original_name": "minta-fajl.gif",
"data": "R0lGODlhAQABAIAAAAAAAP\\\/\\\/\\\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://adategyezteto-test.pnt5.dev/api/project/4/attachements',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'file_original_name' => 'minta-fajl.gif',
'data' => 'R0lGODlhAQABAIAAAAAAAP\\/\\/\\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/project/4/attachements'
payload = {
"file_original_name": "minta-fajl.gif",
"data": "R0lGODlhAQABAIAAAAAAAP\\\/\\\/\\\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": [],
"message": "Project general attachement saved."
}
Received response:
Request failed with error:
Projekt ingatlan
API végpont a projekt ingatlan adatok kezelésére
Projekt ingatlan lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/project_properties" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/project_properties"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/project_properties',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/project_properties'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 3151,
"contract_id": 1205,
"property_id": 4752
},
{
"id": 3152,
"contract_id": 1205,
"property_id": 5023
},
{
"id": 3153,
"contract_id": 1205,
"property_id": 4928
},
{
"id": 4043,
"contract_id": 1205,
"property_id": 4939
},
{
"id": 5862,
"contract_id": 1205,
"property_id": 4921
},
{
"id": 6765,
"contract_id": 2609,
"property_id": 6825
}
],
"message": ""
}
Received response:
Request failed with error:
Response
Response Fields
id integer
A rekord azonosítója
contract_id integer
A projekt azonosítója
property_id integer
Az ingatlan azonosítója
Projekt ingatlan létrehozása
requires authentication
Example request:
curl --request POST \
"https://adategyezteto-test.pnt5.dev/api/project_properties" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": 1,
\"contract_id\": 1205,
\"property_id\": 4752
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/project_properties"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"contract_id": 1205,
"property_id": 4752
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://adategyezteto-test.pnt5.dev/api/project_properties',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'id' => 1,
'contract_id' => 1205,
'property_id' => 4752,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/project_properties'
payload = {
"id": 1,
"contract_id": 1205,
"property_id": 4752
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": {
"id": 8,
"contract_id": "1205",
"property_id": "4752"
},
"message": "Project property created."
}
Example response (400):
{
"success": false,
"message": {
"contract_id": [
"A kiválasztott contract id érvénytelen."
]
}
}
Received response:
Request failed with error:
Projekt törlése
requires authentication
Example request:
curl --request DELETE \
"https://adategyezteto-test.pnt5.dev/api/project_properties" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": 1
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/project_properties"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
}
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'https://adategyezteto-test.pnt5.dev/api/project_properties',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'id' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/project_properties'
payload = {
"id": 1
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": [],
"message": "Project property destroyed."
}
Received response:
Request failed with error:
Pénzügy
API végpont a pénzügyek kezelésére
Szerződés pénzügyi összesítő felülírása
requires authentication
Example request:
curl --request POST \
"https://adategyezteto-test.pnt5.dev/api/finance_summary" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"contract_id\": 1205,
\"data\": [
{
\"type\": \"Egyik típus\",
\"date\": \"2021.07.26.\",
\"credit\": 500,
\"debit\": 0,
\"bankaccount\": \"11111\",
\"bankaccount_other\": \"0000\",
\"bankaccount_other_name\": \"Minta\",
\"comment\": \"Példa megjegyzés\"
}
]
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/finance_summary"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"contract_id": 1205,
"data": [
{
"type": "Egyik típus",
"date": "2021.07.26.",
"credit": 500,
"debit": 0,
"bankaccount": "11111",
"bankaccount_other": "0000",
"bankaccount_other_name": "Minta",
"comment": "Példa megjegyzés"
}
]
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://adategyezteto-test.pnt5.dev/api/finance_summary',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'contract_id' => 1205,
'data' => [
[
'type' => 'Egyik típus',
'date' => '2021.07.26.',
'credit' => 500,
'debit' => 0,
'bankaccount' => '11111',
'bankaccount_other' => '0000',
'bankaccount_other_name' => 'Minta',
'comment' => 'Példa megjegyzés',
],
],
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/finance_summary'
payload = {
"contract_id": 1205,
"data": [
{
"type": "Egyik típus",
"date": "2021.07.26.",
"credit": 500,
"debit": 0,
"bankaccount": "11111",
"bankaccount_other": "0000",
"bankaccount_other_name": "Minta",
"comment": "Példa megjegyzés"
}
]
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 1000018,
"contract_id": 1205,
"type": "Egyik típus",
"date": "2021-07-26",
"credit": 500,
"debit": 0,
"bankaccount": "11111",
"bankaccount_other": "0000",
"bankaccount_other_name": "Minta",
"comment": "Példa megjegyzés"
}
],
"message": "Contract finance history created."
}
Example response (200):
{
"success": true,
"data": [],
"message": "Contract finance history created."
}
Received response:
Request failed with error:
Szerződés pénzügyi hátralék felülírása
requires authentication
Example request:
curl --request POST \
"https://adategyezteto-test.pnt5.dev/api/finance_overdue" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"contract_id\": 1205,
\"data\": [
{
\"type\": \"Közös költség tartozás\",
\"amount\": 500000
}
]
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/finance_overdue"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"contract_id": 1205,
"data": [
{
"type": "Közös költség tartozás",
"amount": 500000
}
]
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://adategyezteto-test.pnt5.dev/api/finance_overdue',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'contract_id' => 1205,
'data' => [
[
'type' => 'Közös költség tartozás',
'amount' => 500000,
],
],
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/finance_overdue'
payload = {
"contract_id": 1205,
"data": [
{
"type": "Közös költség tartozás",
"amount": 500000
}
]
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 1000005,
"contract_id": 1205,
"type": "Közös költség tartozás",
"amount": 50000
}
],
"message": "Contract finance overdue created."
}
Example response (200):
{
"success": true,
"data": [],
"message": "Contract finance overdue created."
}
Received response:
Request failed with error:
Szerződés
API végpont a szerződések kezelésére
Szerződés lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/contract" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/contract',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 1,
"identifier": "ABC123",
"bank_id": 26,
"csok_bank_id": 26,
"status": 0,
"administration_fee": 6000,
"hrsz": "A\/123\/1234\/12345",
"customers_closed_at": null,
"loan_amount": null,
"data_entry_closed_at": null,
"accept_contract_form": null
},
{
"id": 1205,
"identifier": "aaa",
"bank_id": 16,
"csok_bank_id": 16,
"status": 1,
"administration_fee": 660,
"hrsz": "a,b",
"customers_closed_at": "2021-08-09",
"loan_amount": null,
"data_entry_closed_at": null,
"accept_contract_form": null
},
{
"id": 2609,
"identifier": "bbb",
"bank_id": null,
"csok_bank_id": null,
"status": 1,
"administration_fee": 1200,
"hrsz": "c,d",
"customers_closed_at": null,
"loan_amount": null,
"data_entry_closed_at": null,
"accept_contract_form": null
},
{
"id": 2610,
"identifier": "ABC123",
"bank_id": null,
"csok_bank_id": null,
"status": 0,
"administration_fee": 0,
"hrsz": null,
"customers_closed_at": null,
"loan_amount": null,
"data_entry_closed_at": null,
"accept_contract_form": null
},
{
"id": 2611,
"identifier": "ABC123",
"bank_id": null,
"csok_bank_id": null,
"status": 0,
"administration_fee": 500,
"hrsz": "A\/4\/w4csx",
"customers_closed_at": null,
"loan_amount": null,
"data_entry_closed_at": null,
"accept_contract_form": null
},
{
"id": 2612,
"identifier": "ABC123",
"bank_id": null,
"csok_bank_id": null,
"status": 0,
"administration_fee": 0,
"hrsz": null,
"customers_closed_at": null,
"loan_amount": null,
"data_entry_closed_at": null,
"accept_contract_form": null
},
{
"id": 2613,
"identifier": "ABC123",
"bank_id": 26,
"csok_bank_id": 26,
"status": 0,
"administration_fee": 6000,
"hrsz": "A\/123\/1234\/12345",
"customers_closed_at": null,
"loan_amount": null,
"data_entry_closed_at": null,
"accept_contract_form": null
},
{
"id": 2614,
"identifier": "ABC123",
"bank_id": null,
"csok_bank_id": null,
"status": 0,
"administration_fee": 0,
"hrsz": null,
"customers_closed_at": null,
"loan_amount": null,
"data_entry_closed_at": null,
"accept_contract_form": null
},
{
"id": 2615,
"identifier": "ABC123",
"bank_id": null,
"csok_bank_id": null,
"status": 0,
"administration_fee": 0,
"hrsz": null,
"customers_closed_at": null,
"loan_amount": null,
"data_entry_closed_at": null,
"accept_contract_form": null
}
],
"message": ""
}
Received response:
Request failed with error:
Response
Response Fields
id integer
A rekord azonosítója
identifier string
A szerződés azonosítója
bank_id integer
A bank azonosítója
csok_bank_id integer
A CSOK bank azonosítója
child_existing
Meglévő gyerekek száma (CSOK)
child_expected
Várható gyerekek száma (CSOK)
status integer
A szerződés státusza. 0: kitöltés alatt, 1: vevők lezárva, 2: szerződés elfogadásra vár, 3: szerződés elfogadva
administration_fee integer
A földhivatali díj összege
hrsz string
A helyrajzi szám
customers_closed_at
A vevők lezárásának időpontja
loan_amount
A hitel összege összesen
data_entry_closed_at
Adatrögzítés lezárásának időpontja
accept_contract_form
JSON szerződés elfogadás adatai
vat_benefit
ÁFA kedvezmény
remainder_price
Maradék fizetendő ár kedvezmények után
property_tax_benefit
Illeték kedvezmény
Szerződés rögzítése
requires authentication
Example request:
curl --request POST \
"https://adategyezteto-test.pnt5.dev/api/contract" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"identifier\": \"ABC123\",
\"id\": 1,
\"project_id\": 11,
\"bank_id\": 26,
\"csok_bank_id\": 26,
\"administration_fee\": 6000,
\"vat_benefit\": 0,
\"remainder_price\": 0,
\"property_tax_benefit\": 0,
\"hrsz\": \"A\\/123\\/1234\\/12345\"
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"identifier": "ABC123",
"id": 1,
"project_id": 11,
"bank_id": 26,
"csok_bank_id": 26,
"administration_fee": 6000,
"vat_benefit": 0,
"remainder_price": 0,
"property_tax_benefit": 0,
"hrsz": "A\/123\/1234\/12345"
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://adategyezteto-test.pnt5.dev/api/contract',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'identifier' => 'ABC123',
'id' => 1,
'project_id' => 11,
'bank_id' => 26,
'csok_bank_id' => 26,
'administration_fee' => 6000,
'vat_benefit' => 0,
'remainder_price' => 0,
'property_tax_benefit' => 0,
'hrsz' => 'A/123/1234/12345',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract'
payload = {
"identifier": "ABC123",
"id": 1,
"project_id": 11,
"bank_id": 26,
"csok_bank_id": 26,
"administration_fee": 6000,
"vat_benefit": 0,
"remainder_price": 0,
"property_tax_benefit": 0,
"hrsz": "A\/123\/1234\/12345"
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": {
"identifier": "ABC123",
"project_id": 11,
"bank_id": 26,
"csok_bank_id": 26,
"administration_fee": 6000,
"hrsz": "A\/123\/1234\/12345",
"id": 2613
},
"message": "Contract created."
}
Example response (400):
{
"success": false,
"message": {
"id": [
"A(z) id már foglalt."
]
}
}
Received response:
Request failed with error:
Szerződés adatainak lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/contract/1205" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract/1205"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/contract/1205',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract/1205'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": {
"id": 1205,
"bank_id": 16,
"csok_bank_id": 16,
"child_existing": null,
"child_expected": null,
"csok_amount": 0,
"status": 0,
"administration_fee": 660,
"vat_benefit": null,
"property_tax_benefit": 0,
"remainder_price": null,
"hrsz": "a,b",
"customers_closed_at": null,
"loan_amount": null,
"data_entry_closed_at": null,
"accept_contract_form": null,
"building_saving": [
{
"id": 231,
"contract_id": 1205,
"contract_number": "4510125-801",
"beneficiary": "Rabár LTP2",
"amount": 2650000,
"building_saving_id": 2
},
{
"id": 232,
"contract_id": 1205,
"contract_number": "4510127-401",
"beneficiary": "Nagy LTP1",
"amount": 2650000,
"building_saving_id": 2
}
],
"contract_customer": [
{
"id": 1980,
"contract_id": 1205,
"customer_id": 1587,
"contract_customer_type": null,
"incorporeal_interest_num": 0,
"incorporeal_interest_denom": 0
},
{
"id": 1981,
"contract_id": 1205,
"customer_id": 1588,
"contract_customer_type": null,
"incorporeal_interest_num": 0,
"incorporeal_interest_denom": 0
},
{
"id": 2716,
"contract_id": 1205,
"customer_id": 1587,
"contract_customer_type": 10,
"incorporeal_interest_num": 0,
"incorporeal_interest_denom": 0
}
],
"contract_loan": [
{
"id": 33,
"contract_id": 1205,
"contract_loan_type": 1,
"amount": 10000000,
"child_existing": null,
"child_expected": null,
"bank_id": null
},
{
"id": 34,
"contract_id": 1205,
"contract_loan_type": 2,
"amount": 17000000,
"child_existing": null,
"child_expected": null,
"bank_id": null
}
],
"contract_replacements": [
{
"id": 34,
"contract_id": 1205,
"replacement_type": 1,
"customer_id": 1588,
"topographical_number": "25721\/11\/A\/999",
"zip": "1138",
"city": "Budapest",
"address": "CIM2",
"file_id": null
},
{
"id": 35,
"contract_id": 1205,
"replacement_type": 1,
"customer_id": 1587,
"topographical_number": "25721\/11\/A\/999",
"zip": "1138",
"city": "Budapest",
"address": "CIM1",
"file_id": null
}
],
"customers": [
{
"id": 1587,
"gdpr_accepted_at": null,
"gdpr_new_accepted_at": null,
"name": "Nagy Vevő",
"born_name": "Nagy Vevő",
"born_city": "SZULETESI_HELY1",
"born_date": null,
"mother_name": "ANYJA_NEVE1",
"card_identifier": "OKIRAT1",
"card_type": 1,
"personal_id": "2-xxxxxx-yyyy",
"personal_tax_number": "8xxxxxxxx1",
"nationality": 1,
"company_short_name": null,
"company_registration_number": null,
"company_tax_number": null,
"company_ksh_number": null,
"company_nace_number": null,
"sole_prop_number": null,
"advocate": null,
"customer_legal_type": null,
"address_country": "Magyarország",
"address_zip": "1138",
"address_city": "Budapest",
"address_address": "CIM_UTCAHSZ1",
"contact_name": null,
"contact_country": "Magyarország",
"contact_zip": "4110",
"contact_city": "Biharkeresztes",
"contact_address": "ERT_CIM_UTCAHSZ1",
"email": "bonalaszlomarton+1@gmail.com",
"email2": "bonalaszlomarton+1a@gmail.com",
"phone": "06 30 xxx yyyy",
"phone2": null,
"skype": null,
"is_company": 0,
"is_new_user": 0,
"completed_percent": 0,
"contact_address_matches": 0,
"nationality_other": null,
"customer_files": []
},
{
"id": 1588,
"gdpr_accepted_at": null,
"gdpr_new_accepted_at": null,
"name": "Rabár Vevő",
"born_name": "Rabár Vevő",
"born_city": "SZULETESI_HELY2",
"born_date": null,
"mother_name": "ANYJA_NEVE2",
"card_identifier": "OKIRAT2",
"card_type": 1,
"personal_id": "1-xxxxxx-yyyy",
"personal_tax_number": "8xxxxxxxx2",
"nationality": 1,
"company_short_name": null,
"company_registration_number": null,
"company_tax_number": null,
"company_ksh_number": null,
"company_nace_number": null,
"sole_prop_number": null,
"advocate": null,
"customer_legal_type": null,
"address_country": "Magyarország",
"address_zip": "1138",
"address_city": "Budapest",
"address_address": "CIM_UTCAHSZ2",
"contact_name": null,
"contact_country": null,
"contact_zip": null,
"contact_city": null,
"contact_address": null,
"email": "bonalaszlomarton+2@gmail.com",
"email2": null,
"phone": "06 70 aaa bbbb",
"phone2": null,
"skype": "skype2@hotmail.com",
"is_company": 0,
"is_new_user": 0,
"completed_percent": 0,
"contact_address_matches": 0,
"nationality_other": null,
"customer_files": []
}
],
"customer_files": {
"1587": [],
"1588": []
}
},
"message": "Contract shown."
}
Received response:
Request failed with error:
Response
Response Fields
id integer
A rekord azonosítója
bank_id integer
A bank azonosítója
csok_bank_id integer
A CSOK bank azonosítója
child_existing
Meglévő gyerekek száma (CSOK)
child_expected
Várható gyerekek száma (CSOK)
csok_amount integer
CSOK összege (CSOK)
status integer
A szerződés státusza. 0: kitöltés alatt, 1: vevők lezárva, 2: szerződés elfogadásra vár, 3: szerződés elfogadva
administration_fee integer
A földhivatali díj összege
hrsz string
A helyrajzi szám
customers_closed_at
A vevők lezárásának időpontja
loan_amount
A hitel összege összesen
data_entry_closed_at
Adatrögzítés lezárásának időpontja
accept_contract_form
JSON szerződés elfogadás adatai
vat_benefit
ÁFA kedvezmény
remainder_price
Maradék fizetendő ár kedvezmények után
property_tax_benefit integer
Illeték kedvezmény
building_saving.id
A lakástakarék rekord azonosítója
building_saving.contract_id
A szerződés azonosítója
building_saving.contract_number
A szerződés száma
building_saving.beneficiary
A szerződés kedvezményezettje
building_saving.amount
A szerződés összege
building_saving.building_saving_id
A lakástakarékpénztár azonosítója
contract_customer.id
A szerződés-vevő kapcsolat rekord azonosítója
contract_customer.contract_id
A szerződés azonosítója
contract_customer.customer_id
A vevő azonosítója
contract_customer.contract_customer_type
A szerződés-vevő kapcsolat típus azonosítója
contract_customer.incorporeal_interest_num
Tulajdoni hányad számláló
contract_customer.incorporeal_interest_denom
Tulajdoni hányad nevező
contract_loan.id
A szerződés-hitel kapcsolat rekord azonosítója
contract_loan.contract_id
A szerződés azonosítója
contract_loan.contract_loan_type
A hitel típus azonosítója
contract_loan.amount
A hitel összege
contract_loan.child_existing
CSOK esetén a meglévő gyerekek száma (deprecated, a szerződés adatai alatt találod)
contract_loan.child_expected
CSOK esetén a várható gyerekek száma (deprecated, a szerződés adatai alatt találod)
contract_loan.bank_id
Bank azonosítója
contract_replacements.id
A cserepótló rekord azonosítója
contract_replacements.contract_id
A szerződés azonosítója
contract_replacements.replacement_type
A cserepótló típus azonosítója
contract_replacements.customer_id
A vevő azonosítója
contract_replacements.topographical_number
Helyrajzi szám
contract_replacements.zip
Irányítószám
contract_replacements.city
Város
contract_replacements.address
Cím
contract_replacements.file_id
Fájl azonosító
customers.id
A vevő azonosítója
customers.gdpr_accepted_at
GDPR elfogadás dátuma
customers.gdpr_new_accepted_at
GDPR elfogadás dátuma
customers.name
Név
customers.born_name
Születési név
customers.born_city
Születési hely
customers.born_date
Születési dátum
customers.mother_name
Anyja neve
customers.card_identifier
Okirat azonosító
customers.card_type
Okirat típus azonosító
customers.personal_id
Személyi szám
customers.personal_tax_number
Adóazonosító jel
customers.nationality
Nemzetiség azonosítója
customers.company_short_name
Cég rövid neve
customers.company_registration_number
Cégjegyzékszám
customers.company_tax_number
Cég adószáma
customers.company_ksh_number
Cég KSH azonosítója
customers.company_nace_number
Cég tevékenysége
customers.sole_prop_number
Nyilvántartási szám
customers.advocate
Ügyvezető
customers.customer_legal_type
Devizajogi státusz azonosítója
customers.address_country
Cím ország
customers.address_zip
Cím irányítószáma
customers.address_city
Cím városa
customers.address_address
Cím
customers.contact_name
Kapcsolattartási név
customers.contact_country
Kapcsolat ország
customers.contact_zip
Kapcsolat irányítószám
customers.contact_city
Kapcsolat város
customers.contact_address
Kapcsolat cím
customers.email
customers.email2
Email2
customers.phone
Telefon
customers.phone2
Telefon
customers.skype
Skype
customers.is_company
Cég-e
customers.is_new_user
Új felhasználó-e
customers.completed_percent
Kitöltöttség állapota
customers.contact_address_matches
A kapcsolattartási cím ugyan az-e, mint a cím
customers.nationality_other
Nemzetiség egyéb szöveg
customers.customer_files[]
Dokumentumok
Szerződés módosítása
requires authentication
Example request:
curl --request PUT \
"https://adategyezteto-test.pnt5.dev/api/contract/1" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"identifier\": \"ABC123\",
\"project_id\": 11,
\"bank_id\": 26,
\"csok_bank_id\": 26,
\"administration_fee\": 6000,
\"hrsz\": \"A\\/123\\/1234\\/12345\",
\"vat_benefit\": 0,
\"remainder_price\": 0,
\"property_tax_benefit\": 0,
\"id\": 1
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract/1"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"identifier": "ABC123",
"project_id": 11,
"bank_id": 26,
"csok_bank_id": 26,
"administration_fee": 6000,
"hrsz": "A\/123\/1234\/12345",
"vat_benefit": 0,
"remainder_price": 0,
"property_tax_benefit": 0,
"id": 1
}
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->put(
'https://adategyezteto-test.pnt5.dev/api/contract/1',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'identifier' => 'ABC123',
'project_id' => 11,
'bank_id' => 26,
'csok_bank_id' => 26,
'administration_fee' => 6000,
'hrsz' => 'A/123/1234/12345',
'vat_benefit' => 0,
'remainder_price' => 0,
'property_tax_benefit' => 0,
'id' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract/1'
payload = {
"identifier": "ABC123",
"project_id": 11,
"bank_id": 26,
"csok_bank_id": 26,
"administration_fee": 6000,
"hrsz": "A\/123\/1234\/12345",
"vat_benefit": 0,
"remainder_price": 0,
"property_tax_benefit": 0,
"id": 1
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": {
"id": 1,
"identifier": "ABC123",
"bank_id": 26,
"csok_bank_id": 26,
"tenure": null,
"status": 0,
"administration_fee": 6000,
"hrsz": "A\/123\/1234\/12345",
"customers_closed_at": null,
"loan_amount": null,
"data_entry_closed_at": null,
"accept_contract_form": null
},
"message": "Contract updated."
}
Example response (400):
{
"success": false,
"message": {
"project_id": [
"A kiválasztott project id érvénytelen."
]
}
}
Received response:
Request failed with error:
Szerződés dokumentum
API végpont a szerződés dokumentumok kezelésére
Szerződés dokumentumok listája
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/contract/18/attachements" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract/18/attachements"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/contract/18/attachements',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract/18/attachements'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 1,
"contract_id": 1205,
"customer_id": 1587,
"customer_card_type": null,
"file_type_id": 1,
"file_name": "contract_files\/1205\/1205_1628504167.jpg",
"file_original_name": "iStock-515060552.jpg",
"created_at": "2021-08-09 10:16:12",
"deleted_at": null,
"project_id": null
},
{
"id": 2,
"contract_id": 1205,
"customer_id": 1587,
"customer_card_type": null,
"file_type_id": 2,
"file_name": "contract_files\/1205\/1205_1628504167.jpg",
"file_original_name": "iStock-515060552.jpg",
"created_at": "2021-08-09 10:16:12",
"deleted_at": null,
"project_id": null
},
{
"id": 3,
"contract_id": 1205,
"customer_id": 1587,
"customer_card_type": null,
"file_type_id": 3,
"file_name": "contract_files\/1205\/1205_1628504167.jpg",
"file_original_name": "iStock-515060552.jpg",
"created_at": "2021-08-09 10:16:12",
"deleted_at": null,
"project_id": null
}
],
"message": ""
}
Received response:
Request failed with error:
Response
Response Fields
id integer
A rekord azonosítója
contract_id integer
A szerződés azonosítója
customer_id integer
A vevő azonosítója
customer_card_type
Az okirat típusa
file_type_id integer
A fájltípus azonosítója
file_original_name string
A feltöltő által használt fájlnév
project_id
Általános/marketing fájl esetén a projekt azonosítója
Szerződés dokumentumok rögzítése
requires authentication
Example request:
curl --request POST \
"https://adategyezteto-test.pnt5.dev/api/contract/1/attachements" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"file_type_id\": 41,
\"file_original_name\": \"minta-fajl.gif\",
\"data\": \"R0lGODlhAQABAIAAAAAAAP\\\\\\/\\\\\\/\\\\\\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\"
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract/1/attachements"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"file_type_id": 41,
"file_original_name": "minta-fajl.gif",
"data": "R0lGODlhAQABAIAAAAAAAP\\\/\\\/\\\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://adategyezteto-test.pnt5.dev/api/contract/1/attachements',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'file_type_id' => 41,
'file_original_name' => 'minta-fajl.gif',
'data' => 'R0lGODlhAQABAIAAAAAAAP\\/\\/\\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract/1/attachements'
payload = {
"file_type_id": 41,
"file_original_name": "minta-fajl.gif",
"data": "R0lGODlhAQABAIAAAAAAAP\\\/\\\/\\\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": [],
"message": "Contract attachement saved."
}
Received response:
Request failed with error:
Szerződés dokumentumok lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/contract/1205/attachements/1" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract/1205/attachements/1"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/contract/1205/attachements/1',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract/1205/attachements/1'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": "R0lGODlhAQABAIAAAAAAAP\/\/\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",
"message": ""
}
Received response:
Request failed with error:
Response
Response Fields
data string
A fájl tartalma base64 kódolással kódolva
Szerződés hitel
API végpont a szerződés hitelek kezelésére
Szerződés hitel lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/contract_loans" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract_loans"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/contract_loans',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract_loans'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 33,
"contract_id": 1205,
"contract_loan_type": 1,
"amount": 10000000,
"child_existing": null,
"child_expected": null,
"bank_id": null
},
{
"id": 34,
"contract_id": 1205,
"contract_loan_type": 2,
"amount": 17000000,
"child_existing": null,
"child_expected": null,
"bank_id": null
},
{
"id": 1000003,
"contract_id": 1205,
"contract_loan_type": 2,
"amount": 500000,
"child_existing": null,
"child_expected": null,
"bank_id": null
}
],
"message": ""
}
Received response:
Request failed with error:
Response
Response Fields
id integer
A szerződés-vevő kapcsolat rekord azonosítója
contract_id integer
A szerződés azonosítója
contract_loan_type integer
A hitel típus azonosítója
amount integer
A hitel összege
child_existing
CSOK meglévő gyermekek száma
child_expected
CSOK várható gyermekek száma
bank_id
Bank azonosítója
Szerződés szereplő létrehozása
requires authentication
Example request:
curl --request POST \
"https://adategyezteto-test.pnt5.dev/api/contract_loans" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": 1,
\"contract_id\": 1205,
\"contract_loan_type\": 1,
\"amount\": 500000,
\"child_existing\": 0,
\"child_expected\": 3,
\"bank_id\": 26
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract_loans"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"contract_id": 1205,
"contract_loan_type": 1,
"amount": 500000,
"child_existing": 0,
"child_expected": 3,
"bank_id": 26
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://adategyezteto-test.pnt5.dev/api/contract_loans',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'id' => 1,
'contract_id' => 1205,
'contract_loan_type' => 1,
'amount' => 500000,
'child_existing' => 0,
'child_expected' => 3,
'bank_id' => 26,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract_loans'
payload = {
"id": 1,
"contract_id": 1205,
"contract_loan_type": 1,
"amount": 500000,
"child_existing": 0,
"child_expected": 3,
"bank_id": 26
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": {
"id": 3,
"contract_id": "1205",
"contract_loan_type": "1",
"amount": 6,
"child_existing": 8,
"child_expected": 24,
"bank_id": "24"
},
"message": "Contract loan created."
}
Received response:
Request failed with error:
Szerződés hitel törlése
requires authentication
Example request:
curl --request DELETE \
"https://adategyezteto-test.pnt5.dev/api/contract_loans" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": 1
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract_loans"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
}
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'https://adategyezteto-test.pnt5.dev/api/contract_loans',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'id' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract_loans'
payload = {
"id": 1
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": [],
"message": "Contract loan destroyed."
}
Received response:
Request failed with error:
Szerződés szereplő
API végpont a szerződés szereplők kezelésére
Szerződés szereplők lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/contract_customers" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract_customers"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/contract_customers',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract_customers'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 1980,
"contract_id": 1205,
"customer_id": 1587,
"contract_customer_type": 11,
"incorporeal_interest_num": null,
"incorporeal_interest_denom": null
},
{
"id": 1981,
"contract_id": 1205,
"customer_id": 1588,
"contract_customer_type": 11,
"incorporeal_interest_num": null,
"incorporeal_interest_denom": null
},
{
"id": 2716,
"contract_id": 1205,
"customer_id": 1587,
"contract_customer_type": 10,
"incorporeal_interest_num": 1,
"incorporeal_interest_denom": 1
},
{
"id": 4885,
"contract_id": 2609,
"customer_id": 3221,
"contract_customer_type": 10,
"incorporeal_interest_num": 1,
"incorporeal_interest_denom": 1
},
{
"id": 1000000,
"contract_id": 2609,
"customer_id": 3223,
"contract_customer_type": 15,
"incorporeal_interest_num": null,
"incorporeal_interest_denom": null
},
{
"id": 1000001,
"contract_id": 2609,
"customer_id": 3222,
"contract_customer_type": 15,
"incorporeal_interest_num": null,
"incorporeal_interest_denom": null
}
],
"message": ""
}
Received response:
Request failed with error:
Response
Response Fields
id integer
A szerződés-vevő kapcsolat rekord azonosítója
contract_id integer
A szerződés azonosítója
customer_id integer
A vevő azonosítója
contract_customer_type integer
A szerződés-vevő kapcsolat típus azonosítója
incorporeal_interest_num
Tulajdoni hányad számláló
incorporeal_interest_denom
Tulajdoni hányad nevező
Szerződés szereplő létrehozása
requires authentication
Example request:
curl --request POST \
"https://adategyezteto-test.pnt5.dev/api/contract_customers" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": 1,
\"contract_id\": 1205,
\"customer_id\": 1587,
\"contract_customer_type\": 11,
\"incorporeal_interest_num\": 1,
\"incorporeal_interest_denom\": 1
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract_customers"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"contract_id": 1205,
"customer_id": 1587,
"contract_customer_type": 11,
"incorporeal_interest_num": 1,
"incorporeal_interest_denom": 1
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://adategyezteto-test.pnt5.dev/api/contract_customers',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'id' => 1,
'contract_id' => 1205,
'customer_id' => 1587,
'contract_customer_type' => 11,
'incorporeal_interest_num' => 1,
'incorporeal_interest_denom' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract_customers'
payload = {
"id": 1,
"contract_id": 1205,
"customer_id": 1587,
"contract_customer_type": 11,
"incorporeal_interest_num": 1,
"incorporeal_interest_denom": 1
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": {
"id": 1,
"contract_id": 1205,
"customer_id": 1587,
"contract_customer_type": 11,
"incorporeal_interest_num": 1,
"incorporeal_interest_denom": 1
},
"message": "Contract customer created."
}
Received response:
Request failed with error:
Szerződés szereplő törlése
requires authentication
Example request:
curl --request DELETE \
"https://adategyezteto-test.pnt5.dev/api/contract_customers" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": 1
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/contract_customers"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
}
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'https://adategyezteto-test.pnt5.dev/api/contract_customers',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'id' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/contract_customers'
payload = {
"id": 1
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": [],
"message": "Contract customer destroyed."
}
Received response:
Request failed with error:
Vevők
API végpont a vevők kezelésére
Vevő lista lekérése
requires authentication
Example request:
curl --request GET \
--get "https://adategyezteto-test.pnt5.dev/api/customers" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/customers"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://adategyezteto-test.pnt5.dev/api/customers',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/customers'
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"success": true,
"data": [
{
"id": 1587,
"gdpr_accepted_at": "2021-08-09 09:42:20",
"gdpr_new_accepted_at": null,
"name": "Nagy Vevő",
"born_name": "Nagy Vevő",
"born_city": "SZULETESI_HELY1",
"born_date": "1904-01-01",
"mother_name": "ANYJA_NEVE1",
"card_identifier": "OKIRAT1",
"card_type": 1,
"personal_id": "2-212345-6789",
"personal_tax_number": "8124356789",
"nationality": 1,
"company_short_name": null,
"company_registration_number": null,
"company_tax_number": null,
"company_ksh_number": null,
"company_nace_number": null,
"sole_prop_number": null,
"advocate": null,
"customer_legal_type": null,
"address_country": "Magyarország",
"address_zip": "1138",
"address_city": "Budapest",
"address_address": "CIM_UTCAHSZ1",
"contact_name": null,
"contact_country": null,
"contact_zip": null,
"contact_city": null,
"contact_address": null,
"email": "bonalaszlomarton+1@gmail.com",
"email2": "bonalaszlomarton+1a@gmail.com",
"phone": "06 30 xxx yyyy",
"phone2": null,
"skype": null,
"is_company": 0,
"is_new_user": 0,
"completed_percent": 100,
"contact_address_matches": 1,
"nationality_other": null
},
{
"id": 1588,
"gdpr_accepted_at": null,
"gdpr_new_accepted_at": null,
"name": "Rabár Vevő",
"born_name": "Rabár Vevő",
"born_city": "SZULETESI_HELY2",
"born_date": "1903-01-01",
"mother_name": "ANYJA_NEVE2",
"card_identifier": "OKIRAT2",
"card_type": 1,
"personal_id": "1-xxxxxx-yyyy",
"personal_tax_number": "8xxxxxxxx2",
"nationality": 1,
"company_short_name": null,
"company_registration_number": null,
"company_tax_number": null,
"company_ksh_number": null,
"company_nace_number": null,
"sole_prop_number": null,
"advocate": null,
"customer_legal_type": null,
"address_country": "Magyarország",
"address_zip": "1138",
"address_city": "Budapest",
"address_address": "CIM_UTCAHSZ2",
"contact_name": null,
"contact_country": null,
"contact_zip": null,
"contact_city": null,
"contact_address": null,
"email": "bonalaszlomarton+2@gmail.com",
"email2": null,
"phone": "06 70 aaa bbbb",
"phone2": null,
"skype": "skype2@hotmail.com",
"is_company": 0,
"is_new_user": 0,
"completed_percent": 0,
"contact_address_matches": 0,
"nationality_other": null
},
{
"id": 3221,
"gdpr_accepted_at": null,
"gdpr_new_accepted_at": null,
"name": "Robust Digital Kereskedelmi és Szolgáltató Korlátolt Felelősségű Társaság",
"born_name": null,
"born_city": null,
"born_date": "1970-01-01",
"mother_name": null,
"card_identifier": null,
"card_type": null,
"personal_id": " - -",
"personal_tax_number": null,
"nationality": 28,
"company_short_name": "Robust Digital Kft.",
"company_registration_number": "13-09-199360",
"company_tax_number": "26259572-2-13",
"company_ksh_number": "26259572-7311-113-13",
"company_nace_number": 505,
"sole_prop_number": null,
"advocate": 3222,
"customer_legal_type": 1,
"address_country": "Magyarország",
"address_zip": "2161",
"address_city": "Csomád",
"address_address": "Levente utca 14\/a.",
"contact_name": null,
"contact_country": "Magyarország",
"contact_zip": null,
"contact_city": null,
"contact_address": null,
"email": "bonalaszlomarton+3@gmail.com",
"email2": null,
"phone": "06 70 aaa bbbb",
"phone2": null,
"skype": null,
"is_company": 1,
"is_new_user": 0,
"completed_percent": 66,
"contact_address_matches": 1,
"nationality_other": null
},
{
"id": 3222,
"gdpr_accepted_at": "2021-08-09 10:11:17",
"gdpr_new_accepted_at": null,
"name": "Szabó Vevő",
"born_name": "Szabó Vevő",
"born_city": "SZULETESI_HELY4",
"born_date": "1909-01-01",
"mother_name": "ANYJA_NEVE4",
"card_identifier": "OKIRAT4",
"card_type": 1,
"personal_id": null,
"personal_tax_number": null,
"nationality": 1,
"company_short_name": null,
"company_registration_number": null,
"company_tax_number": null,
"company_ksh_number": null,
"company_nace_number": null,
"sole_prop_number": null,
"advocate": null,
"customer_legal_type": null,
"address_country": "Magyarország",
"address_zip": "1181",
"address_city": "Budapest",
"address_address": "CIM_UTCAHSZ3",
"contact_name": null,
"contact_country": "Magyarország",
"contact_zip": null,
"contact_city": null,
"contact_address": null,
"email": "bonalaszlomarton+4@gmail.com",
"email2": null,
"phone": null,
"phone2": null,
"skype": null,
"is_company": 0,
"is_new_user": 0,
"completed_percent": 33,
"contact_address_matches": 0,
"nationality_other": null
},
{
"id": 3223,
"gdpr_accepted_at": null,
"gdpr_new_accepted_at": null,
"name": "Jakubovics Vevő",
"born_name": "Jakubovics Vevő",
"born_city": "SZULETESI_HELY5",
"born_date": "1900-01-01",
"mother_name": "ANYJA_NEVE5",
"card_identifier": "OKIRAT5",
"card_type": 1,
"personal_id": "1-zzzzzz-wwww",
"personal_tax_number": "8xxxxxxxx5",
"nationality": 1,
"company_short_name": null,
"company_registration_number": null,
"company_tax_number": null,
"company_ksh_number": null,
"company_nace_number": null,
"sole_prop_number": null,
"advocate": null,
"customer_legal_type": null,
"address_country": "Magyarország",
"address_zip": "1145",
"address_city": "Budapest",
"address_address": "CIM_UTCAHSZ4",
"contact_name": null,
"contact_country": "Magyarország",
"contact_zip": null,
"contact_city": null,
"contact_address": null,
"email": "bonalaszlomarton+5@gmail.com",
"email2": null,
"phone": "06 70 ccc dddd",
"phone2": null,
"skype": null,
"is_company": 0,
"is_new_user": 0,
"completed_percent": 0,
"contact_address_matches": 0,
"nationality_other": null
}
],
"message": ""
}
Received response:
Request failed with error:
Response
Response Fields
id integer
A vevő azonosítója
gdpr_accepted_at string
GDPR elfogadás dátuma
gdpr_new_accepted_at
GDPR elfogadás dátuma
name string
Név
born_name string
Születési név
born_city string
Születési hely
born_date string
Születési dátum
mother_name string
Anyja neve
card_identifier string
Okirat azonosító
card_type integer
Okirat típus azonosító
personal_id string
Személyi szám
personal_tax_number string
Adóazonosító jel
nationality integer
Nemzetiség azonosítója
company_short_name
Cég rövid neve
company_registration_number
Cégjegyzékszám
company_tax_number
Cég adószáma
company_ksh_number
Cég KSH azonosítója
company_nace_number
Cég tevékenysége
sole_prop_number
Nyilvántartási szám
advocate
Ügyvezető
customer_legal_type
Devizajogi státusz azonosítója
address_country string
Cím ország
address_zip string
Cím irányítószáma
address_city string
Cím városa
address_address string
Cím
contact_name
Kapcsolattartási név
contact_country
Kapcsolat ország
contact_zip
Kapcsolat irányítószám
contact_city
Kapcsolat város
contact_address
Kapcsolat cím
email string
email2 string
Email2
phone string
Telefon
phone2
Telefon
skype
Skype
is_company integer
Cég-e
is_new_user integer
Új felhasználó-e
completed_percent integer
Kitöltöttség állapota
contact_address_matches integer
A kapcsolattartási cím ugyan az-e, mint a cím
nationality_other
Nemzetiség egyéb szöveg
Vevő létrehozása
requires authentication
Example request:
curl --request POST \
"https://adategyezteto-test.pnt5.dev/api/customers" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": 1,
\"name\": \"Teszt Elek\",
\"email\": \"me@localhost.com\",
\"born_name\": \"dolorem\",
\"born_city\": \"neque\",
\"born_date\": \"nihil\",
\"mother_name\": \"cupiditate\",
\"card_identifier\": \"fugit\",
\"card_type\": 13,
\"personal_id\": \"temporibus\",
\"personal_tax_number\": \"quod\",
\"company_short_name\": \"qui\",
\"company_registration_number\": \"voluptatem\",
\"company_tax_number\": \"quia\",
\"company_ksh_number\": \"quo\",
\"sole_prop_number\": \"corporis\",
\"company_nace_number\": 9,
\"customer_legal_type\": 16,
\"address_country\": \"voluptatum\",
\"address_zip\": \"fuga\",
\"address_city\": \"ex\",
\"address_address\": \"molestias\",
\"contact_name\": \"vitae\",
\"contact_country\": \"iure\",
\"contact_zip\": \"non\",
\"contact_city\": \"nam\",
\"contact_address\": \"rerum\",
\"contact_address_matches\": \"occaecati\",
\"email2\": \"rerum\",
\"phone\": \"reiciendis\",
\"phone2\": \"nihil\",
\"skype\": \"reiciendis\",
\"nationality\": 11,
\"nationality_other\": \"voluptatem\",
\"gdpr_accepted_at\": \"magnam\",
\"gdpr_new_accepted_at\": \"saepe\",
\"advocate\": 18
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/customers"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"name": "Teszt Elek",
"email": "me@localhost.com",
"born_name": "dolorem",
"born_city": "neque",
"born_date": "nihil",
"mother_name": "cupiditate",
"card_identifier": "fugit",
"card_type": 13,
"personal_id": "temporibus",
"personal_tax_number": "quod",
"company_short_name": "qui",
"company_registration_number": "voluptatem",
"company_tax_number": "quia",
"company_ksh_number": "quo",
"sole_prop_number": "corporis",
"company_nace_number": 9,
"customer_legal_type": 16,
"address_country": "voluptatum",
"address_zip": "fuga",
"address_city": "ex",
"address_address": "molestias",
"contact_name": "vitae",
"contact_country": "iure",
"contact_zip": "non",
"contact_city": "nam",
"contact_address": "rerum",
"contact_address_matches": "occaecati",
"email2": "rerum",
"phone": "reiciendis",
"phone2": "nihil",
"skype": "reiciendis",
"nationality": 11,
"nationality_other": "voluptatem",
"gdpr_accepted_at": "magnam",
"gdpr_new_accepted_at": "saepe",
"advocate": 18
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://adategyezteto-test.pnt5.dev/api/customers',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'id' => 1,
'name' => 'Teszt Elek',
'email' => 'me@localhost.com',
'born_name' => 'dolorem',
'born_city' => 'neque',
'born_date' => 'nihil',
'mother_name' => 'cupiditate',
'card_identifier' => 'fugit',
'card_type' => 13,
'personal_id' => 'temporibus',
'personal_tax_number' => 'quod',
'company_short_name' => 'qui',
'company_registration_number' => 'voluptatem',
'company_tax_number' => 'quia',
'company_ksh_number' => 'quo',
'sole_prop_number' => 'corporis',
'company_nace_number' => 9,
'customer_legal_type' => 16,
'address_country' => 'voluptatum',
'address_zip' => 'fuga',
'address_city' => 'ex',
'address_address' => 'molestias',
'contact_name' => 'vitae',
'contact_country' => 'iure',
'contact_zip' => 'non',
'contact_city' => 'nam',
'contact_address' => 'rerum',
'contact_address_matches' => 'occaecati',
'email2' => 'rerum',
'phone' => 'reiciendis',
'phone2' => 'nihil',
'skype' => 'reiciendis',
'nationality' => 11,
'nationality_other' => 'voluptatem',
'gdpr_accepted_at' => 'magnam',
'gdpr_new_accepted_at' => 'saepe',
'advocate' => 18,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/customers'
payload = {
"id": 1,
"name": "Teszt Elek",
"email": "me@localhost.com",
"born_name": "dolorem",
"born_city": "neque",
"born_date": "nihil",
"mother_name": "cupiditate",
"card_identifier": "fugit",
"card_type": 13,
"personal_id": "temporibus",
"personal_tax_number": "quod",
"company_short_name": "qui",
"company_registration_number": "voluptatem",
"company_tax_number": "quia",
"company_ksh_number": "quo",
"sole_prop_number": "corporis",
"company_nace_number": 9,
"customer_legal_type": 16,
"address_country": "voluptatum",
"address_zip": "fuga",
"address_city": "ex",
"address_address": "molestias",
"contact_name": "vitae",
"contact_country": "iure",
"contact_zip": "non",
"contact_city": "nam",
"contact_address": "rerum",
"contact_address_matches": "occaecati",
"email2": "rerum",
"phone": "reiciendis",
"phone2": "nihil",
"skype": "reiciendis",
"nationality": 11,
"nationality_other": "voluptatem",
"gdpr_accepted_at": "magnam",
"gdpr_new_accepted_at": "saepe",
"advocate": 18
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": {
"id": 1,
"name": "Teszt Elek",
"email": "me@localhost.com"
},
"message": "Customer created."
}
Received response:
Request failed with error:
Vevő módosítása
requires authentication
Example request:
curl --request PUT \
"https://adategyezteto-test.pnt5.dev/api/customers" \
--header "Authorization: Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": 1,
\"name\": \"Teszt Elek\",
\"email\": \"me@localhost.com\",
\"born_name\": \"quos\",
\"born_city\": \"recusandae\",
\"born_date\": \"veritatis\",
\"mother_name\": \"repellat\",
\"card_identifier\": \"numquam\",
\"card_type\": 20,
\"personal_id\": \"error\",
\"personal_tax_number\": \"sapiente\",
\"company_short_name\": \"fugit\",
\"company_registration_number\": \"occaecati\",
\"company_tax_number\": \"rerum\",
\"company_ksh_number\": \"et\",
\"sole_prop_number\": \"unde\",
\"company_nace_number\": 14,
\"customer_legal_type\": 14,
\"address_country\": \"sapiente\",
\"address_zip\": \"voluptate\",
\"address_city\": \"quia\",
\"address_address\": \"blanditiis\",
\"contact_name\": \"non\",
\"contact_country\": \"ut\",
\"contact_zip\": \"molestias\",
\"contact_city\": \"aut\",
\"contact_address\": \"consequatur\",
\"contact_address_matches\": \"qui\",
\"email2\": \"repudiandae\",
\"phone\": \"labore\",
\"phone2\": \"itaque\",
\"skype\": \"qui\",
\"nationality\": 12,
\"nationality_other\": \"dolorem\",
\"gdpr_accepted_at\": \"quia\",
\"gdpr_new_accepted_at\": \"ullam\",
\"advocate\": 13
}"
const url = new URL(
"https://adategyezteto-test.pnt5.dev/api/customers"
);
const headers = {
"Authorization": "Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1,
"name": "Teszt Elek",
"email": "me@localhost.com",
"born_name": "quos",
"born_city": "recusandae",
"born_date": "veritatis",
"mother_name": "repellat",
"card_identifier": "numquam",
"card_type": 20,
"personal_id": "error",
"personal_tax_number": "sapiente",
"company_short_name": "fugit",
"company_registration_number": "occaecati",
"company_tax_number": "rerum",
"company_ksh_number": "et",
"sole_prop_number": "unde",
"company_nace_number": 14,
"customer_legal_type": 14,
"address_country": "sapiente",
"address_zip": "voluptate",
"address_city": "quia",
"address_address": "blanditiis",
"contact_name": "non",
"contact_country": "ut",
"contact_zip": "molestias",
"contact_city": "aut",
"contact_address": "consequatur",
"contact_address_matches": "qui",
"email2": "repudiandae",
"phone": "labore",
"phone2": "itaque",
"skype": "qui",
"nationality": 12,
"nationality_other": "dolorem",
"gdpr_accepted_at": "quia",
"gdpr_new_accepted_at": "ullam",
"advocate": 13
}
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->put(
'https://adategyezteto-test.pnt5.dev/api/customers',
[
'headers' => [
'Authorization' => 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Accept' => 'application/json',
],
'json' => [
'id' => 1,
'name' => 'Teszt Elek',
'email' => 'me@localhost.com',
'born_name' => 'quos',
'born_city' => 'recusandae',
'born_date' => 'veritatis',
'mother_name' => 'repellat',
'card_identifier' => 'numquam',
'card_type' => 20,
'personal_id' => 'error',
'personal_tax_number' => 'sapiente',
'company_short_name' => 'fugit',
'company_registration_number' => 'occaecati',
'company_tax_number' => 'rerum',
'company_ksh_number' => 'et',
'sole_prop_number' => 'unde',
'company_nace_number' => 14,
'customer_legal_type' => 14,
'address_country' => 'sapiente',
'address_zip' => 'voluptate',
'address_city' => 'quia',
'address_address' => 'blanditiis',
'contact_name' => 'non',
'contact_country' => 'ut',
'contact_zip' => 'molestias',
'contact_city' => 'aut',
'contact_address' => 'consequatur',
'contact_address_matches' => 'qui',
'email2' => 'repudiandae',
'phone' => 'labore',
'phone2' => 'itaque',
'skype' => 'qui',
'nationality' => 12,
'nationality_other' => 'dolorem',
'gdpr_accepted_at' => 'quia',
'gdpr_new_accepted_at' => 'ullam',
'advocate' => 13,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://adategyezteto-test.pnt5.dev/api/customers'
payload = {
"id": 1,
"name": "Teszt Elek",
"email": "me@localhost.com",
"born_name": "quos",
"born_city": "recusandae",
"born_date": "veritatis",
"mother_name": "repellat",
"card_identifier": "numquam",
"card_type": 20,
"personal_id": "error",
"personal_tax_number": "sapiente",
"company_short_name": "fugit",
"company_registration_number": "occaecati",
"company_tax_number": "rerum",
"company_ksh_number": "et",
"sole_prop_number": "unde",
"company_nace_number": 14,
"customer_legal_type": 14,
"address_country": "sapiente",
"address_zip": "voluptate",
"address_city": "quia",
"address_address": "blanditiis",
"contact_name": "non",
"contact_country": "ut",
"contact_zip": "molestias",
"contact_city": "aut",
"contact_address": "consequatur",
"contact_address_matches": "qui",
"email2": "repudiandae",
"phone": "labore",
"phone2": "itaque",
"skype": "qui",
"nationality": 12,
"nationality_other": "dolorem",
"gdpr_accepted_at": "quia",
"gdpr_new_accepted_at": "ullam",
"advocate": 13
}
headers = {
'Authorization': 'Bearer WQdfABDTZo72eS5HPKtBGkBfEsRw9mCxm4oZfCPt',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"success": true,
"data": {
"id": 1,
"name": "Teszt Elek",
"email": "me@localhost.com"
},
"message": "Customer updated."
}
Received response:
Request failed with error: