/api/mandate/issueMint a signed buyer mandate (demo helper).
Request
curl -X POST "http://localhost:3000/api/mandate/issue" -H "Content-Type: application/json" -d '{ "agent_id": "buyer-agent-demo", "user_ref": "priya@example.com", "spend_cap_paise": 200000, "category_scope": ["handloom", "gifts"], "ttl_seconds": 3600 }'Response
{ "ok": true, "token": "<jwt>", "mandate": { "id": "mnd_…", "cap": "₹2,000", "scope": "handloom, gifts", "expires_at": "…" } }