{% extends "console_page.html" %} {% block console_content %}
{% include "partials/_pending_agent_transfers.html" %}

Join Our Discord Community

Connect with our team and other users for support, tips, and discussions.

Available Tasks

{% if current_context.type == 'organization' %}

{{ org_tasks_available|floatformat:0 }}

{% else %}

{% if account.usage.tasks_available >= 0 %}{{ account.usage.tasks_available|floatformat:0 }}{% else %}∞{% endif %}

{% endif %}
{% if current_context.type == 'organization' %} {% elif not addl_tasks_enabled %}

Additional Tasks

No additional tasks are currently enabled for your account.

{% if stripe_enabled %} Update settings {% endif %}

{# -1 means unlimited #} {% elif account.usage.tasks_addl_limit == -1 %}

Unlimited Additional Tasks

{{ addl_tasks_used }} tasks used in current billing period Unlimited

{% if stripe_enabled %} Update settings {% endif %}

{% else %}

Additional Tasks Enabled

You can use up to {{ account.usage.tasks_addl_limit }} additional tasks.

{{ addl_tasks_used }} used {{ addl_tasks_remaining }} remaining

{% if stripe_enabled %} Update settings {% endif %}

{% endif %}

Active Agents

{{ agent_count }} {% if not account.usage.agents_unlimited %}/ {{ subscription_plan.agent_limit }}{% endif %}

Task Status

{{ total_active_tasks }} active

Completed {{ completed_tasks }}
In Progress {{ in_progress_tasks }}
Pending {{ pending_tasks }}

API

API Documentation

Explore our API documentation to learn how to integrate with our services.

{% if settings.GOBII_PROPRIETARY_MODE %} View API Docs {% else %} View API Docs {% endif %}

Quick Start

Get started quickly with example code and tutorials.

{% if settings.GOBII_PROPRIETARY_MODE %} View Developer Guide {% else %} View Developer Guide {% endif %}

API Key

{% if has_api_key %}
{{ default_api_key|slice:":12" }}•••••••••••••••••{{ default_api_key|slice:"-4:" }}
Copied to clipboard!

Do not share your API key with anybody.

{% else %}

No API key is available. Create a new API key to access our services.

{% endif %}
{% endblock %}