API SuiteUtility Bills
Gas Bill Details
Fetch piped gas bill metadata for a consumer and provider. Server-side GET with Bearer auth; consumer and provider are path segments.
API reference
Try itLoading playground…
Loading…
AuthorizationBearer <token>
JWT Bearer token authentication. Obtain a token from the KwikID dashboard.
In: header
Path Parameters
consumer_number_inunknown
The consumer number.
Default
""Format
stringprovider_inunknown
The name of the provider
Default
""Format
stringResponse Body
curl -X GET "https://__mock__/verification/v2/gas/getbill//"{
"message": "string"
}{
"detail": {
"<location>": {
"<field_name>": [
"string"
]
}
},
"message": "string"
}{
"detail": {},
"message": "string"
}Overview
Call GET /verification/v2/gas/getbill/{consumer_number_in}/{provider_in} from your backend with Authorization: Bearer <token>. Replace path segments with the gas consumer number and provider slug configured for your project.
Key features
- Same pattern as electricity: Reuse your integration patterns from Electricity Bill Details.
Implementation
Step 1: Call from your backend
GET /verification/v2/gas/getbill/<consumer_number>/<provider_slug> HTTP/1.1
Host: <verification-api-base-url>
Authorization: Bearer <token>Error handling
| HTTP status | When |
|---|---|
| 400 | Validation or provider mapping error. |
| 401 | Invalid token. |
Benefits
- Extends utility verification to piped gas users.