Monarch White-Label API Overview
  • ⚙️Monarch API Calls
    • Creating an Invoice
      • POST
      • RETURNS
    • Generating Payment Data
      • POST
      • RETURNS
    • Check Allowance
      • POST
      • RETURNS
    • Generate Approve Transaction
  • 💸WalletConnect
  • 🦊MetaMask
  • 📮POSTing a Payment
Powered by GitBook
On this page
  1. Monarch API Calls
  2. Creating an Invoice

POST

{
  title: string;
  description: string | undefined;
  price: number; - Value in USD 1.00 minimum
  fields: string[]; - USERNAME, PHONE, ADDRESS, EMAIL
  crypto: string[] - USDC, USDT, DAI
  network: string - POLYGON (currently only EVM compatible chains)
  frequency: string (optional - defaults monthly) - DAILY, WEEKLY, MONTHLY, YEARLY
  payments: number (0 = unlimited = default), - 1-99999999999999999999999999999
  users: number(0 = unlimited = default), - 1-9999999999999999999999999999
}

PreviousCreating an InvoiceNextRETURNS

Last updated 1 year ago

⚙️