Etisalat Integration Guide (Infomedia-Hosted)

MSISDN Entry Page

Please check the Compliance Guide↗ for the relevant design rules for this integration.

On this page the user will enter their MSISDN and click a button to request a PIN. You will need to call the PinGenerateWithParams API, passing the relevant details. Infomedia will send a PIN SMS to the customer via Etisalat.

The example below shows the minimum fields required for Etisalat PIN Generation. If you're experiencing errors, first validate that all required headers and parameters are present and in the correct format. Please refer to the documentation page for more detailed information about each parameter.

PINGenerateWithParams Documentation

Example Request
POST https://api.infomedia.co.uk/dcb/PINGenerateWithParams
Content-Type: application/json
X-Infomedia-Api-Key: {Your API Key}

{
"mx": "971500000000",
"mcc": "424",
"mnc": "02",
"productId": 8000000,
"u": "username",
"p": "password",
"params": [
{
"key": "amount",
"value": "0.10"
},
{
"key": "frequency",
"value": "day"
},
{
"key": "language",
"value": "en"
},
{
"key": "description",
"value": "Service Name"
}
]
}
Example Response
{
"status": "Success",
"description": "00 - Everything was OK",
"pinId": ""
}