Template
1
0
Files
2025-12-05 01:56:42 +01:00

10 lines
260 B
TypeScript

import { route } from "@platform/relay";
import z from "zod";
import { LedgerSchema } from "../../../schemas/ledger.ts";
export default route
.get("/api/v1/payment/beneficiaries/:id/ledgers")
.params({ id: z.uuid() })
.response(z.array(LedgerSchema));