Skip to main content
GET
/
ElectricityList
List Electricity Providers
curl --request GET \
  --url https://api.bleeprs.com/api/ElectricityList \
  --header 'Authorization: Bearer <token>'
{
  "gatewayStatus": "00",
  "gatewayMessage": "Successfully Processed",
  "requestReference": "bpr_req_a1b2c3d4e5f6",
  "data": [
    {
      "id": 123,
      "name": "<string>",
      "productCode": "<string>",
      "description": "<string>"
    }
  ]
}

Overview

Get the catalog of all supported electricity providers. This is useful for building a dynamic dropdown of providers for your customers to select from.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successfully retrieved electricity providers

gatewayStatus
string
Example:

"00"

gatewayMessage
string
Example:

"Successfully Processed"

requestReference
string
Example:

"bpr_req_a1b2c3d4e5f6"

data
object[]