API
  • Introduction
  • Authentication
  • Error Handling
  • API ENDPOINTS
    • Payment
    • Invoices
      • Create Invoice
      • Re-send Invoice
      • Get Invoice - customerEmail
      • Get Invoice - invoiceNo
      • Get Invoice - orderNo
    • Payment Link
      • Create Link
      • Get Link
      • Update Link
      • Delete Link
    • Charge Token
      • Create Token
      • Get Token
      • Charge Token
      • Bulk Charge
      • Query Bulk Charge with BacthId
    • Subscriptions
      • Create Subscription
      • Charge Subscription
      • Get Customer Subscription
      • Update Customer Subscription
      • Get Merchant Subscription
    • Virtual Account
      • Create Virtual Account
      • Get Virtual Account
      • Delete Virtual Account
      • Get Payment
    • Pay with Transfer
    • Pay with USSD
    • Mobile Money Payments
    • Bank Account Payments
    • Card Payment
      • Initializing a Card Payment
      • Scenario 1 (Verve Card Type)
      • Scenario 2 (Master Card and Visa Card Type)
      • Scenario 3
Powered by GitBook
On this page
  1. API ENDPOINTS
  2. Invoices

Get Invoice - invoiceNo

Fetch Invoice with invoiceNo

/invoiceNo

GET https://seerbitapi.com/invoice/{{publicKey}}/{{InvoiceNo}}

This endpoint allows you to fetch an invoice using invoiceNo

Path Parameters

Name
Type
Description

InvoiceNo*

String

customer email

publicKey

String

merchant public key

Headers

Name
Type
Description

Authorization*

String

Bearer token

{
    "payload": {
        "invoiceId": 54,
        "invoiceNo": "SBT-INV-000054",
        "totalAmount": 556.00,
        "subTotal": 556.00,
        "externalBusiness_id": "00000051",
        "discount": 0.00,
        "dueDate": "2022-10-12",
        "currency": "NGN",
        "invoiceItems": [
            {
                "itemName": "Ada Ada iyoo",
                "unitPrice": 556.00,
                "vat": 0.00,
                "amount": 556.00,
                "quantity": 278
            }
        ],
        "customer": {},
        "billingCycle": false,
        "payButtonOnInvoices": false,
        "enableAdvancedOptions": false,
        "partialPayment": false,
        "status": "DRAFT",
        "createdAt": "2022-10-12T10:27:45.732"
    },
    "code": "00"
}
PreviousGet Invoice - customerEmailNextGet Invoice - orderNo

Last updated 10 months ago