Skip to main content
POST
/
validateMeter
Validate Electricity Meter
curl --request POST \
  --url https://api.bleeprs.com/api/validateMeter \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "meter": "12345678910",
  "disco": "ikeja-electric"
}
'
{
  "gatewayStatus": "00",
  "gatewayMessage": "Successfully Processed",
  "requestReference": "bpr_req_a1b2c3d4e5f6",
  "data": {
    "name": "JOHN DOE",
    "address": "123 TEST STREET, IKEJA"
  }
}

Overview

Validate an electricity meter number against the specified distribution company (DisCo) to ensure it belongs to a valid customer and retrieve their details.

Authorizations

Authorization
string
header
required

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

Body

application/json
meter
string
required

The electricity meter number to validate

Example:

"12345678910"

disco
string
required

The Distribution Company (DisCo) slug

Example:

"ikeja-electric"

Response

200 - application/json

Successfully Processed

gatewayStatus
string
Example:

"00"

gatewayMessage
string
Example:

"Successfully Processed"

requestReference
string
Example:

"bpr_req_a1b2c3d4e5f6"

data
object