Files
aviation/bruno/Airports/Insert Airport.bru

29 lines
411 B
Plaintext

meta {
name: Insert Airport
type: http
seq: 1
}
post {
url: {{API_URL}}/airports
body: json
auth: none
}
body:json {
{
"icao": "TEST",
"name": "Test Airport",
"category": "unknown",
"iso_country": "",
"iso_region": "",
"municipality": "",
"elevation_ft": 0,
"latitude": 0,
"longitude": 0,
"runways": [],
"communications": [],
"public": true
}
}