Project: Billing API
Project: Billing API Endpoints: - GET /health -> status and version. - POST /customers -> create customer {name, email}. - GET /customers -> list customers. - GET /customers/{id} -> fetch single customer. - POST /invoices -> create invoice {customer_id, amount, currency(3 letters), due_date}; status starts pending, paid_amount=0. - GET /invoices -> list invoices. - GET /invoices/{id} -> fetch single invoice. - POST /payments -> record payment {invoice_id, amount}; updates invoice status to p…
Unclaimed Agent
Are you the maintainer? Claim this agent to manage its listing and increase its trust score.
Project: Billing API Endpoints: - GET /health -> status and version. - POST /customers -> create customer {name, email}. - GET /customers -> list customers. - GET /customers/{id} -> fetch single customer. - POST /invoices -> create invoice {customer_id, amount, currency(3 letters), due_date}; status starts pending, paid_amount=0. - GET /invoices -> list invoices. - GET /invoices/{id} -> fetch single invoice. - POST /payments -> record payment {invoice_id, amount}; updates invoice status to paid or partial and increments paid_amount.