Skip to main content
PATCH
PATCH a teardown your organization owns. Sparse only the keys on your request body are written. Omitted keys are left alone. Use this for:
  • Correcting a typo in msn or tail_number
  • Re-classifying with a different vocab name
  • Setting / changing / clearing the audience
  • Updating dates, location, traceability, description
To change the status (lifecycle state), use the transition endpoint instead. PATCH does not accept status lifecycle changes go through the state machine.

Headers

string
required
Bearer tdao_live_…
string
required
Your organization’s UUID.
string
required
application/json

Path parameters

string (UUID)
required

Body

Every field is optional. Sending an empty body returns the teardown unchanged.
string
Re-classify by name. Same case-insensitive lookup as create. An unknown value returns 400 unknown_vocabulary with the allowed list in the body. APU and landing-gear vocab fields are not patchable through the public surface.
string
string
string
string (date)
Maps to teardowns.teardown_start_date.
string (date)
Yes or No.
string
string
string
ISO country code.
array | null
Set who can see the teardown’s documents. Pass an array of company types (Airline / Lessor / OEM / MRO / Distributor / Others), or pass null to clear the restriction back to “anyone with platform access”.This is the JSON-array form. The document-upload endpoint accepts the same concept as a comma-separated string. See audience.
array of URLs
Direct overwrite. Usually you want the upload / delete-by-url endpoints instead.
array of URLs
Direct overwrite. Usually you want the upload / delete-by-url endpoints instead.
location_city, sub_status, non_incident_statement, apu_model, and landing_gear_type are NOT patchable on the public surface sending any of them returns 422 (strict mode). If you need to update one of those fields, use the web app.
status is not patchable here. Use the transition endpoint so lifecycle moves run through the state machine. Sending status returns a 422 (strict mode catches unknown body keys).Same goes for teardown_status_label it’s a derived label, not something you set directly.

Response

200 OK. The full updated teardown in the same shape as the GET / POST responses (partner field names).

Audit trail

PATCH writes:
  • teardown.updated the generic update audit, with previous_state containing the old values for msn, registration, description, and new_state containing the sparse body you sent.
  • teardown.audience.set or teardown.audience.changed if the audience field changed. Two separate action codes so support can filter “first time it was restricted” vs “subsequent change”.
Both rows carry the standard API-key metadata (via_api, api_key_id, api_key_prefix, actor_email).

See also