mirror of
https://github.com/hoshikawa2/first_contas.git
synced 2026-07-09 18:24:20 +00:00
19 lines
541 B
Bash
19 lines
541 B
Bash
#!/usr/bin/env bash
|
|
curl -s http://localhost:8000/gateway/message \
|
|
-H 'Content-Type: application/json' \
|
|
-d '{
|
|
"channel":"web",
|
|
"tenant_id":"default",
|
|
"agent_id":"contas_first",
|
|
"payload":{
|
|
"text":"Quero entender por que minha fatura veio mais alta",
|
|
"session_id":"sess-contas-001",
|
|
"user_id":"11999999999",
|
|
"customer_key":"11999999999",
|
|
"contract_key":"FAT-2026-06",
|
|
"account_key":"CUST-001",
|
|
"interaction_key":"URA-001",
|
|
"channel":"web"
|
|
}
|
|
}' | python -m json.tool
|