Type: {{ authorization_type or "—" }}
{% if proof %}
{% if proof.authorization_type in ("CHECKBOX", "checkbox") %}
{% if proof.signing_name %}
Signed By
:
{{ proof.signing_name }}
{% endif %}
{% if proof.ip_address %}
IP Address
:
{{ proof.ip_address }}
{% endif %}
{% if proof.authorization_literal %}
Auth Reference
:
{{ proof.authorization_literal }}
{% endif %}
{% elif proof.authorization_type in ("SIGN", "sign") %}
{% if proof.signing_name %}
Signed By
:
{{ proof.signing_name }}
{% endif %}
{% if proof.ip_address %}
IP Address
:
{{ proof.ip_address }}
{% endif %}
{% if proof.signature_url %}
Signature:
{% endif %}
{% elif proof.authorization_type in ("SMS", "sms") %}
{% if proof.verified_phone_last4 %}
Verified Phone
:
••• ••• ••••{{ proof.verified_phone_last4 }}
Verified
{% endif %}
{% if proof.authorization_value %}
OTP Code
:
{{ proof.authorization_value }}
{% endif %}
{% if proof.ip_address %}
IP Address
:
{{ proof.ip_address }}
{% endif %}
{% else %}
No proof data available.
{% endif %}
{% else %}
No proof data available.
{% endif %}
{% if history %}
{% if invoices and invoices|length > 0 %}
| Invoice # |
Amount |
Status |
Date |
Due Date |
{% for inv in invoices %}
| {{ inv.invoice_literal or inv.invoice_id or "—" }} |
${{ "%.2f"|format(inv.amount or 0) }} |
{{ inv.status_text or inv.status or "—" }} |
{{ inv.created_at or "—" }} |
{{ inv.due_date or "—" }} |
{% endfor %}
{% else %}
No invoices associated with this authorization.
{% endif %}
{% if transactions and transactions|length > 0 %}
| Transaction # |
Amount |
Status |
Type |
Date |
{% for txn in transactions %}
| {{ txn.txn_literal or txn.txn_id or "—" }} |
${{ "%.2f"|format(txn.txn_amount or 0) }} |
{{ txn.status_text or txn.txn_status or "—" }} |
{{ (txn.payment_type or "—")|replace("_"," ")|title }} |
{{ txn.ocurred_at or "—" }} |
{% endfor %}
{% else %}
No transactions associated with this authorization.
{% endif %}
{% endif %}