API Reference
Clients can use the Product Lookup API to confirm their product configuration and attributes.
Product Lookup API
The Product Lookup API will only return products/SKUs configured for the specific client initiating the request. This will be a subset of all the products available on the Transact platform. Clients should contact their account manager to find out more about the other products/SKUs available on the Transact platform.
The Product Lookup API can be used by clients to confirm their product configuration and attributes
The Product Lookup API will only return products/SKUs configured for the specific client initiating the request. This will be a subset of all the products available on the Transact platform. A client should contact their account manager if they would like to know more about the other products/SKUs available on Transact platform
Client receives token by calling Clickatell's token generation service
API Key provided by Clickatell to client
This is your unique client ID assigned by Clickatell during the integration process
909Unique identifier for the product. A list will be provided by Clickatell
719Unique reference ID for the product type (classification, group or line) to be purchased, e.g pre-purchased airtime or data.
17Include inactive products in the returned list
trueThe channel is the user interface, platform or service that the buyer used to initiate a purchase from. The following IDs are reserved 1 Point of Sale 2 Internet 3 Mobile 4 ATM 6 SMS 7 USSD 8 WhatsApp
7Clickatell's unique identifier for a vendor
100successful operation
No products found
Product ID not found
Product type not found
GET /apiman-gateway/PaydServices/productLookup/2.0?clientId=1 HTTP/1.1
Host: api-uat.payd.co
Authorization: Bearer YOUR_SECRET_TOKEN
X-API-Key: YOUR_API_KEY
Accept: */*
[
{
"publicProduct": {
"id": 100,
"productTypeId": 17,
"productTypeName": "ElecBillpayment",
"description": "Enugu Electricity Prepaid",
"shortDescription": "Electricity Prepaid",
"active": true,
"pricing": {
"type": "range",
"minimumAmount": 15000,
"maximumAmount": 500000000,
"increment": 100
},
"supportToken": true
},
"attributes": [
{
"attributeId": 4,
"name": "billerName",
"value": "Enugu Electricity Distribution Company Prepaid",
"type": "String"
}
],
"publicVendorDetails": [
{
"vendorId": 20,
"vendorName": "Clickatell Biller",
"currencyCode": "NGN",
"countryName": "Nigeria",
"fees": {
"description": "Convenience Fee",
"amount": 100000
}
}
],
"channelIds": "1,2"
}
]Last updated