Browpay API Documentation
  • Home
  • Escrow QuickStart Guide
  • Authentication
  • Webhooks
    • Signature Validation
    • Encryption and Decryption
  • Payments
    • Collect Payments
      • Initialize Transaction
      • Verify Payments
      • List Payments
    • Transaction Codes
      • Verify Token
      • List Codes
  • Payouts
    • Account Resolution
    • Transfers
      • Create Transfer
      • Fetch Transfer
      • List Transfers
  • Customers
    • Fetch Customers
    • Load Customer
  • Products
    • Fetch Products
  • Miscellaneous
    • Balances
    • Banks
    • Countries
  • Plugins
    • Plugins and Libraries
Powered by GitBook
On this page

Was this helpful?

  1. Products

Fetch Products

A list of your products

We are in the process of enabling you to add a product via the API.

GET {{base_url}}/products

Headers

Name
Type
Description

Authorization*

String

Bearer {{your_secret_key}}

{
    "success": true,
    "message": "Data retrieved successfully",
    "data": [
        {
            "id": "2acac77f-b7c5-408b-9b53-6984b17a8475",
            "name": "Chilli Fries",
            "description": null,
            "price": 60000,
            "createAt": "2023-09-26T21:57:24.000000Z",
            "updatedAt": "2023-09-26T21:57:24.000000Z"
        },
        {
            "id": "6ad5fe1a-1633-4eb9-9c72-d9ee2e0d9dfe",
            "name": "Burger",
            "description": "Burger without peanuts",
            "price": 30000,
            "createAt": "2023-05-26T19:04:17.000000Z",
            "updatedAt": "2023-05-26T19:04:17.000000Z"
        }
    ]
}
PreviousLoad CustomerNextBalances

Last updated 4 months ago

Was this helpful?