AirHub API
  1. LAANC Operations
AirHub API
  • Introduction
  • Authorization
    • Overview
    • Get Oauth Token
      POST
  • Advisories
    • Advisory
      POST
    • Get Advisories BBox
      GET
    • Get Advisories GeoJSON
      POST
  • Briefing
    • Overview
    • B4UFLY
      • What Is B4UFLY
      • The API Basics
      • Location vs Area
      • v1
        • B4UFLY Briefing by Area v1
        • B4UFLY Briefing by Location v1
      • v2
        • What's New in v2
        • B4UFLY Briefing by Area v2
        • B4UFLY Briefing by Location v2
  • LAANC SDSP
    • Overview
    • ASL Operations
      • List Operations
      • Create Operation
      • Get Operation
      • Delete Operation
      • Update Operation
    • LAANC Operations
      • Get Operation
        GET
      • Delete Operation
        DELETE
      • Create Operation
        POST
      • Update Operation
        PUT
    • LAANC Authorizations
      • Rescinded and Invalid Operations
      • Submit Authorization
      • Get Authorization
      • Cancel Authorization
      • Cancel Invalid Authorization
      • Close Authorization
      • Acknowledge Rescinded Authorization
    • Operation v2
      POST
    • Create Ephemeral Operations
      POST
  • Risk
    • Get Hazard
      POST
    • Get Hazard Ground Type
      POST
    • Get Hazard Ground Risk
      POST
  • Aviation
    • Aviation
      POST
  • Surface
    • Suitability
      POST
    • Classification Surface
      POST
    • Surface v2 GeoJSON
      POST
    • Surface v2 Hexbin
      POST
  • Route
    • Route v2
  • Check
    • Check Airspace
    • Get Status
  • Elevation - NEW
    • Elevation
  • Map Vector Tiles - NEW
    • Overview
    • Styled Tiles
    • Vector Tile
  1. LAANC Operations

Update Operation

Sandbox
https://airhub-api-sandbox.airspacelink.com
Sandbox
https://airhub-api-sandbox.airspacelink.com
PUT
/v1/operations/{id}/laanc
LAANC Operations
Last modified:2024-10-17 12:07:45
Scope: laanc:update
This method will update the existing LAANC Operation specified by the id path parameter.

Request

Path Params
id
string 
required
UUID of the parent Airspace Link global operation
Body Params application/json
license
enum<string> 
required
Allowed values:
LICENSE_UNSPECIFIEDLICENSE_PART_107LICENSE_SECTION_44809
Default:
LICENSE_UNSPECIFIED
fixedAltitude
boolean 
required
Should the operation maintain a fixed altitude? If false, the altitude will automatically adjust to fit the LAANC Facility Map ceiling height.
pointOfContact
object (laancsvc.v1.PointOfContact) 
required
firstName
string 
required
First name of the point of contact
lastName
string 
required
Last name of the point of contact
emailAddress
string 
required
Email of the point of contact
phoneNumber
string 
required
Phone number of the point of contact
Example
{
  "license": "LICENSE_PART_107",
  "fixedAltitude": false,
  "pointOfContact": {
    "firstName": "Bob",
    "lastName": "Jones",
    "phoneNumber": "540-867-5309",
    "emailAddress": "bobjones@email.com"
  }
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://airhub-api-sandbox.airspacelink.com/v1/operations//laanc' \
--header 'Content-Type: application/json' \
--data-raw '{
    "license": "LICENSE_PART_107",
    "fixedAltitude": false,
    "pointOfContact": {
        "firstName": "Bob",
        "lastName": "Jones",
        "phoneNumber": "540-867-5309",
        "emailAddress": "bobjones@email.com"
    }
}'

Responses

🟢200OK
application/json
A successful response.
Body
object {0}
Example
{}
🟠403Forbidden
🟠404Record Not Found
🔴500Server Error
Previous
Create Operation
Next
Rescinded and Invalid Operations
Built with