{% extends "base.html" %} {% load static %} {% block title %}{% if object %}Edit Integration Log{% else %}New Integration Log{% endif %}{% endblock %} {% block content %}

{% if object %}Edit Integration Log{% else %}Create Integration Log{% endif %}

Back to List

Integration Log Details

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% csrf_token %}
{% if form.integration_name.errors %}
{{ form.integration_name.errors.0 }}
{% endif %}
{% if form.operation_type.errors %}
{{ form.operation_type.errors.0 }}
{% endif %}
{% if form.status.errors %}
{{ form.status.errors.0 }}
{% endif %}
{% if form.execution_time.errors %}
{{ form.execution_time.errors.0 }}
{% endif %}
{% if form.started_at.errors %}
{{ form.started_at.errors.0 }}
{% endif %}
{% if form.completed_at.errors %}
{{ form.completed_at.errors.0 }}
{% endif %}
{% if form.request_data.errors %}
{{ form.request_data.errors.0 }}
{% endif %}
Enter the request payload or parameters sent to the integration endpoint.
{% if form.response_data.errors %}
{{ form.response_data.errors.0 }}
{% endif %}
Enter the response received from the integration endpoint.
{% if form.error_message.errors %}
{{ form.error_message.errors.0 }}
{% endif %}
{% if form.retry_count.errors %}
{{ form.retry_count.errors.0 }}
{% endif %}
{% if form.external_id.errors %}
{{ form.external_id.errors.0 }}
{% endif %}
{% if form.metadata.errors %}
{{ form.metadata.errors.0 }}
{% endif %}
Additional information about the integration operation.
{% if object %} Cancel {% else %} Cancel {% endif %}
Status Guide
Pending Operation queued for execution
Running Currently executing
Success Completed successfully
Failed Execution failed
Cancelled Operation cancelled
Operation Types
Import
Data import from external system
Export
Data export to external system
Sync
Bidirectional synchronization
API Call
External API request
Quick Actions
{% endblock %}