FixedDenom_Enquiry 

This method will return the list of supported fixed denomination of a specific 

Request Parameters 

No. Parameter Name Mandatory/
Optional 
Parameter 
Data Type 
Sample Parameter 
Data
Description 
Credentials.UID String partner_api The API user ID that assigned to
partner.  
Credentials.PWD String m8tA24bW The API password that assigned to partner.
Credentials.Signature String e0ea4fc301155
2e6f799a447e
72f9341  
The digital signature that hashed with MD5 algorithm. Please refer section “Appendix: Digital
Signature Hashing Algorithm” to
hashing reference.
DealerTransactionId String 12345678 The unique transaction ID from partner system.
OperatorCode String AK The code of the operator that you want to query the denomination
list.

Sample Request 

1  <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
2  xmlns:tem="http://tempuri.org/" 
3  xmlns:tran="http://schemas.datacontract.org/2004/07/Tranglo20.Business.Processor" 
4  xmlns:tran1="http://schemas.datacontract.org/2004/07/Tranglo20.Common.Entity"> 
5    <soapenv:Header/> 
6    <soapenv:Body> 
7     <tem:FixedDenom_Enquiry> 
8      <tem:req> 
9       <tran:Credentials> 
10       <tran1:UID>partner_api</tran1:UID> 
11       <tran1:PWD> m8tA24bW </tran1:PWD> 
12       <tran1:Signature>93945d5a8650f66d43b71d894fc2d70d</tran1:Signature> 
13      </tran:Credentials> 
14      <tran:DealerTransactionId>101010</tran:DealerTransactionId> 
15      <tran:OperatorCode>AK</tran:OperatorCode> 
16     </tem:req> 
17    </tem:FixedDenom_Enquiry> 
18   </soapenv:Body> 
19  </soapenv:Envelope>  

Response Parameters 

No. Parameter Name Parameter
Data Type 
Sample Parameter
Data
Description 
Status.Code String 000 The status code of the request. 
Status.Description String Transaction is 
Successful
The description of the status code. 
Status.Type String Approved The category of the status code. There is 3 different Type – Approved, Error, and Pending.
Country String Bangladesh The country of the operator or product.
Operator String Bangladesh
Robi Axiata 
The full name of the operator or product.
OperatorCode String AK The code of the operator. 
DenomCurrency String BDT|BDT|BDT The currency of the list of denomination. The list is delimited with “|”
Denominations String 50|100|200 The list of supported denomination. 
The list is delimited with “|”.
DenomAfterTax String 50|100|200 This list of the denomination’s net received amount after local tax deduction. It tells the amount the
recipient will received. The list is delimited with “|”.
10 PriceCurrency String USD|USD|USD The currency of the price for the denomination. The list is delimited with “|”.
11 Price String 1.00|2.00|3.00 The price for each denomination that system will charge to partner e-wallet. The list is delimited with “|”.

Response Parameters 

1  <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Body> 
2   <GetFixedDenomResponse xmlns="http://tempuri.org/"> 
3    <GetFixedDenomResult 
4    xmlns:a="http://schemas.datacontract.org/2004/07/Tranglo20.Business.Processor" 
5    xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
6     <a:Status 
      xmlns:b="http://schemas.datacontract.org/2004/07/Tranglo20.Common.Entity">      
7      <b:Code>000</b:Code> 
8      <b:Description>Transaction is Successful</b:Description> 
9      <b:Type>Approved</b:Type> 
10     </a:Status> 
11     <a:Country>Bangladesh</a:Country> 
12     <a:Operator>Bangladesh Robi Axiata</a:Operator> 
13     <a:OperatorCode>AK</a:OperatorCode> 
14     <a:DenomCurrency>
       BDT|BDT|BDT|BDT|BDT|BDT|BDT|BDT|BDT|BDT|BDT|BDT|BDT|BDT 
15     </a:DenomCurrency> 
16     <a:Denominations>50|100|200|300|400|500</a:Denominations> 
17     <a:DenomAfterTax>50|100|200|300|400|500</a:DenomAfterTax> 
18     <a:PriceCurrency>
       USD|USD|USD|USD|USD|USD|USD|USD|USD|USD|USD|USD|USD|USD 
19     </a:PriceCurrency> 
20     <a:Price>1.00|2.00|3.00|4.00|5.00|6.00</a:Price> 
21     </GetFixedDenomResult> 
22    </GetFixedDenomResponse> 
23   </s:Body> 
24  </s:Envelope>