@extends('root') @section('title', 'Automasi AI') @section('content')
Sambungkan sistem internal atau API pihak ketiga Anda ketika AI mendeteksi Intent tertentu (misal: Cek Resi, Cek Tagihan).
| Intent Pemicu | Data Endpoint (URL) | Method | Tipe | Aksi |
|---|---|---|---|---|
|
{{ $automation->intent->name ?? 'Unknown Intent' }}
Dipicu oleh AI
|
@if($automation->automation_type === 'webhook') {{ $automation->endpoint_url }} @else Internal Action @endif | @if($automation->automation_type === 'webhook') @php $mcolor = match(strtoupper($automation->method)) { 'GET' => 'success', 'POST' => 'primary', 'PUT' => 'warning', 'DELETE' => 'danger', default => 'secondary' }; @endphp {{ strtoupper($automation->method) }} @else - @endif | {{ ucfirst($automation->automation_type) }} | |
|
Belum ada Automasi API Buat webhook untuk mengambil data dari server Anda sendiri saat pelanggan menanyakan hal spesifik (seperti resi pengiriman). |
||||