Please find complete documentation from https://docs.transaction-monitor.io/.
- Check deposit status
Blu Penguin Merchant API v1 (v1)
Signature of the request according to RFC-9421.
Signature-Input according to RFC-9421.
Expected signature algorithm of the response according to RFC-9421.
Expected digest algorithm of the response according to RFC-9421.
A UUIDv4 based ID specified by you, that uniquely identifies the deposit.
The amount to be collected (deposit) or disbursed (payout or refund).
Amount must follow below requirements or the request will be rejected:
- Between zero and two decimal places can be supplied, depending on what the specific MMO supports. Learn about all MMO supported decimal places.
- The minimum and maximum amount depends on the limits of the specific MMO. You can find them from the Active Configuration endpoint.
- Leading zeroes are not permitted except where the value is less than 1. For any value less than one, one and only one leading zero must be supplied.
- Trailing zeroes are permitted.
Valid examples: 5, 5.0, 5.00, 5.5, 5.55, 5555555, 0.5
Not valid examples: 5., 5.555, 5555555555555555555, .5, -5.5, 00.5, 00.00, 00001.32
The currency in which the amount is specified.
Format must be the ISO 4217 three character currency code in upper case. Read more from Wikipedia.
You can find all the supported currencies that the specific correspondent supports from here.
The active configuration endpoint provides the list of correspondents configured for your account together with the currencies.
The country in which the MMO operates.
Format is ISO 3166-1 alpha-3, three character country code in upper case. Read more from Wikipedia.
The correspondent code refers to the specific MMO that the specified phone number (MSISDN) has an active mobile money wallet with.
You can find all the supported correspondents listed here.
The active configuration endpoint provides the list of correspondents configured for your account.
You can use the predict correspondent enpoint to predict the correct correspondent to use based on the phone number (MSISDN).
The phone number (MSISDN) of the recipient or payer must be specified as the value of the address.
The type of financial address. At the moment, only MSISDN is supported as the financial address.
The phone number (MSISDN) of the payer or recipient. The format is described in Wikipedia.
MSISDN validation has following rules:
- Only digits without whitespaces or any other separators or prefixes like '+'.
- Should not start with zero.
- Country code is mandatory.
- Should not exceed or be less than the valid length of specified country.
Valid examples for Zambia: 260763456789
Not valid examples for Zambia: +260763456789, 260 763 456789, 260-7634-56789, 0260763456789, 2607634567, 260763456789543, 999558708954, 37255870895
The timestamp of when the deposit was created in the Blu Penguin platform. Format defined by 'date-time' in RFC3339 section 5.6 from IETF
Short description for the transaction. Depending on the specific MMO performing the transaction this message may be visible to the customer in the SMS receipt or within their transaction history.
Must be between 4 and 22 alphanumeric characters.
For MMOs (correspondents) that use a preauthorisation code instead of a PIN prompt for authorising the deposit.
A list of metadata that you can attach to the payment for providing additional context about the payment. For example, adding orderId to indicate for which order this payment was for or customerId to know which customer this payment pertains to.
Metadata will not be visible to the customer that is party to this payment. It will be visible in the Blu Penguin Dashboard on the payment details page and in your financial statements as a JSON object to support automated reconciliation. It is also possible to search for recent payments in the Blu Penguin Dashboard using global search based on the values of metadata.
Up to 10 metadata fields can be attached to a payment.
- Mock serverhttps://docs.transaction-monitor.io/_mock/blupenguin_openapi_v1/deposits
- Blu Penguin Merchant API sandboxhttps://api.sandbox.transaction-monitor.io/deposits
- Blu Penguin Merchant API productionhttps://api.transaction-monitor.io/deposits
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.transaction-monitor.io/_mock/blupenguin_openapi_v1/deposits \
-H 'Accept-Digest: string' \
-H 'Accept-Signature: string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Digest: string' \
-H 'Content-Type: application/json' \
-H 'Signature: string' \
-H 'Signature-Input: string' \
-d '{
"depositId": "<INSERT_UUID_FOR_DEPOSIT>",
"amount": "15",
"currency": "ZMW",
"country": "ZMB",
"correspondent": "MTN_MOMO_ZMB",
"payer": {
"type": "MSISDN",
"address": {
"value": "260763456789"
}
},
"customerTimestamp": "2020-02-21T17:32:28Z",
"statementDescription": "Note of 4 to 22 chars",
"preAuthorisationCode": "string",
"metadata": [
{
"fieldName": "orderId",
"fieldValue": "ORD-123456789"
},
{
"fieldName": "customerId",
"fieldValue": "customer@email.com",
"isPII": true
}
]
}'Request has been accepted for processing by Blu Penguin
The depositId of the deposit transaction.
The initiation status of the Deposit:
ACCEPTED- The deposit request has been accepted by Blu Penguin for processing.REJECTED- The deposit request has been rejected. SeerejectionReasonfor detailsDUPLICATE_IGNORED- This deposit request is a duplicate and will be ignored.
The timestamp of when the deposit was created in the Blu Penguin platform. Format defined by 'date-time' in RFC3339 section 5.6 from IETF
{ "depositId": "f4401bd2-1568-4140-bf2d-eb77d2b2b639", "status": "ACCEPTED", "created": "2020-10-19T11:17:01Z" }
- Mock serverhttps://docs.transaction-monitor.io/_mock/blupenguin_openapi_v1/deposits/{depositId}
- Blu Penguin Merchant API sandboxhttps://api.sandbox.transaction-monitor.io/deposits/{depositId}
- Blu Penguin Merchant API productionhttps://api.transaction-monitor.io/deposits/{depositId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.transaction-monitor.io/_mock/blupenguin_openapi_v1/deposits/{depositId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Request has been processed by Blu Penguin
A UUIDv4 based ID specified by you, that uniquely identifies the deposit.
Possible deposit statuses:
ACCEPTED- The deposit request has been accepted by Blu Penguin for processing.SUBMITTED- The deposit request has been submitted to the MMO and is being processed.COMPLETED- The deposit request has been successfully processed. This is a final state.FAILED- The deposit request has been processed, but failed. This is a final state.
The amount to be collected (deposit) or disbursed (payout or refund).
Amount must follow below requirements or the request will be rejected:
- Between zero and two decimal places can be supplied, depending on what the specific MMO supports. Learn about all MMO supported decimal places.
- The minimum and maximum amount depends on the limits of the specific MMO. You can find them from the Active Configuration endpoint.
- Leading zeroes are not permitted except where the value is less than 1. For any value less than one, one and only one leading zero must be supplied.
- Trailing zeroes are permitted.
Valid examples: 5, 5.0, 5.00, 5.5, 5.55, 5555555, 0.5
Not valid examples: 5., 5.555, 5555555555555555555, .5, -5.5, 00.5, 00.00, 00001.32
The currency in which the amount is specified.
Format must be the ISO 4217 three character currency code in upper case. Read more from Wikipedia.
You can find all the supported currencies that the specific correspondent supports from here.
The active configuration endpoint provides the list of correspondents configured for your account together with the currencies.
The country in which the MMO operates.
Format is ISO 3166-1 alpha-3, three character country code in upper case. Read more from Wikipedia.
The correspondent code refers to the specific MMO that the specified phone number (MSISDN) has an active mobile money wallet with.
You can find all the supported correspondents listed here.
The active configuration endpoint provides the list of correspondents configured for your account.
You can use the predict correspondent enpoint to predict the correct correspondent to use based on the phone number (MSISDN).
The phone number (MSISDN) of the recipient or payer must be specified as the value of the address.
The type of financial address. At the moment, only MSISDN is supported as the financial address.
The phone number (MSISDN) of the payer or recipient. The format is described in Wikipedia.
MSISDN validation has following rules:
- Only digits without whitespaces or any other separators or prefixes like '+'.
- Should not start with zero.
- Country code is mandatory.
- Should not exceed or be less than the valid length of specified country.
Valid examples for Zambia: 260763456789
Not valid examples for Zambia: +260763456789, 260 763 456789, 260-7634-56789, 0260763456789, 2607634567, 260763456789543, 999558708954, 37255870895
The timestamp for when you initiated the deposit process. Format defined by 'date-time' in RFC3339 section 5.6 from IETF
Short description for the transaction. Depending on the specific MMO performing the transaction this message may be visible to the customer in the SMS receipt or within their transaction history.
Must be between 4 and 22 alphanumeric characters.
The timestamp of when the deposit was created in the Blu Penguin platform. Format defined by 'date-time' in RFC3339 section 5.6 from IETF
The amount to be collected (deposit) or disbursed (payout or refund).
Amount must follow below requirements or the request will be rejected:
- Between zero and two decimal places can be supplied, depending on what the specific MMO supports. Learn about all MMO supported decimal places.
- The minimum and maximum amount depends on the limits of the specific MMO. You can find them from the Active Configuration endpoint.
- Leading zeroes are not permitted except where the value is less than 1. For any value less than one, one and only one leading zero must be supplied.
- Trailing zeroes are permitted.
Valid examples: 5, 5.0, 5.00, 5.5, 5.55, 5555555, 0.5
Not valid examples: 5., 5.555, 5555555555555555555, .5, -5.5, 00.5, 00.00, 00001.32
When the MMO responded to this deposit request. Format defined by 'date-time' in RFC3339 section 5.6 from IETF
The unique ID for this financial transaction assigned by the MMO.
The metadata that was provided in the original initation request in a JSON object format.
[ { "depositId": "8917c345-4791-4285-a416-62f24b6982db", "status": "COMPLETED", "requestedAmount": "123.00", "depositedAmount": "123.00", "currency": "ZMW", "country": "ZMB", "payer": { … }, "correspondent": "MTN_MOMO_ZMB", "statementDescription": "To ACME company", "customerTimestamp": "2020-10-19T08:17:00Z", "created": "2020-10-19T08:17:01Z", "respondedByPayer": "2020-10-19T08:17:02Z", "correspondentIds": { … }, "metadata": { … } } ]
- Mock serverhttps://docs.transaction-monitor.io/_mock/blupenguin_openapi_v1/deposits/resend-callback
- Blu Penguin Merchant API sandboxhttps://api.sandbox.transaction-monitor.io/deposits/resend-callback
- Blu Penguin Merchant API productionhttps://api.transaction-monitor.io/deposits/resend-callback
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.transaction-monitor.io/_mock/blupenguin_openapi_v1/deposits/resend-callback \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"depositId": "f4401bd2-1568-4140-bf2d-eb77d2b2b639"
}'Request has been accepted for processing by Blu Penguin
A UUIDv4 based ID specified by you, that uniquely identifies the deposit.
Possible initiation statuses:
ACCEPTED- The manual action request has been accepted by Blu Penguin for processing.REJECTED- The manual action request has been rejected by Blu Penguin. See rejectionReason for details.FAILED- The manual action request has failed during submitting for processing due to internal reasons.
{ "depositId": "f4401bd2-1568-4140-bf2d-eb77d2b2b639", "status": "ACCEPTED" }