Create Invoice

Create and send invoice to customer's emails

/create

POST https://seerbitapi.com/invoice/create

This endpoint allows you to create and send an invoice to a customers email

Headers

NameTypeDescription

Authorization*

String

Bearer Token

Request Body

NameTypeDescription

publickey*

String

merchant public key

orderNo*

String

dueDate*

String

expiration date for invoice payment

currency*

String

currency for invoice

receiversName*

String

customer name

customerEmail*

String

customer email

itemName*

String

item invoiced

Quantity*

String

no of items

Rate*

String

unit price of item

tax*

String

tax

{
    "message": "Invoice created successfully ",
    "payload": {
        "InvoiceID": 92,
        "InvoiceNo": "SBT-INV-000092"
    },
    "code": "00"
}

Last updated