{% extends "airflow/main.html" %} {% block title %}Airflow - REST API Plugin{% endblock %} {% block head_css %} {{ super() }} {% endblock %} {% block body %} {% if rbac_authentication_enabled %} {% block navbar %}
{% include 'appbuilder/navbar.html' %}
{% endblock %} {%endif%}

Airflow REST API

Documentation

Versions

API Directory

Click on one of the links bellow to jump to the API form

APIs

{% for api_metadata in apis_metadata %}

{{api_metadata.name}}

Description:

Endpoint:

Arguments:

{% if api_metadata.arguments|length > 0 or api_metadata.post_arguments|length > 0 %} {% for argument in api_metadata.arguments %} {% endfor %} {% for argument in api_metadata.post_arguments %} {% endfor %} {% else %} No Arguments {% endif %}
Argument Name Required Description
{% if argument.form_input_type == "custom_input"%} {%endif%} {{argument.name}}: {{argument.required}} {{argument.description}}
{{argument.name}} {{argument.required}} {{argument.description}}

{% endfor %}
{% endblock %} {% block tail %} {{ super() }} {% endblock %}