This method returns customer information based on the provided email address.
Access to this endpoint requires setup changes on your account. Contact the technical team for this configuration to be completed.
where 123 is the email address of the customer
{
"customer_id":"string",
"customer_name":"string",
"customer_email":"string",
"service_id":"string",
"package":{
"name":"string",
"price":"20.00",
"currency":"USD",
}
}This method initiates a purchase request for internet units to the provided customer.
Access to this endpoint requires setup changes on your account. Contact the technical team for this configuration to be completed.
The table below provides information about the properties expected in the payload to be sent to this request:
| Property | DataType (maxSize) | Required | Description |
|---|---|---|---|
| Order | Object | Yes | Information about the operation to be performed |
| Order.customerFullName | String(180) | No | Full Name for customer |
| Order.customerPhoneNumber | String(180) | No | Phone Number of the customer |
| Order.transactionReference | String(20) | Yes | Reference transaction ID from source request to be used in reconciliations |
| Order.customerEmailAddress | String(180) | No | Email address of the customer |
| Order.currency | String(3) | Yes | Char 3 ISO currency code |
| Order.amount | Decimal(8,2) | Yes | Amount involved in the transaction |
| Destination | Object | Yes | Information about the beneficiary |
| Destination.customerid | String | Yes | The customer id |
| Destination.serviceid | String | Yes | The service id |
{
"order": {
"customerFullName": "string",
"customerPhoneNumber": "string",
"customerEmailAddress": "string",
"transactionReference": "string",
"amount": 10,
"currency": "USD”
},
"destination": {
"customerid": "string",
"serviceid": "string"
}
}{
"transactionId": "string",
"originatingTransactionId": "string”,
“statusCode”:”200”,
“statusDescription”:”SUCCESS”,
}