mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-08 04:56:56 -06:00
Some checks are pending
CI / build (20.x, 3.12) (push) Waiting to run
CI / build (20.x, 3.13) (push) Waiting to run
CodeQL / Analyze (${{ matrix.language }}) (none, actions) (push) Waiting to run
CodeQL / Analyze (${{ matrix.language }}) (none, javascript-typescript) (push) Waiting to run
CodeQL / Analyze (${{ matrix.language }}) (none, python) (push) Waiting to run
10 lines
426 B
HTML
10 lines
426 B
HTML
{% extends 'ui/panels/_base.html' %}
|
|
|
|
{% block panel_content %}
|
|
<div id="token-example" class="card-body font-monospace">curl -X GET \<br />
|
|
-H "Authorization: {{ object.get_auth_header_prefix }}<mark><TOKEN></mark>" \<br />
|
|
-H "Content-Type: application/json" \<br />
|
|
-H "Accept: application/json; indent=4" \<br />
|
|
{{ request.scheme }}://{{ request.get_host }}{% url "api-status" %}</div>
|
|
{% endblock panel_content %}
|