#1 Payment Collection tool 🎉

Developers

Overview

Boompay  provides you access to your resources through RESTful endpoints. so you can test the API. You would also be able to access your test API credential and keys from here

HTTP Request Sample

We would provide cURL request sample, just so you can quickly test each endpoint on your terminal or command line. Need a quick how-to for making cURL requests? just use an HTTP client such as Postman, like the rest of us!

Requests and Responses

Both request body data and response data are formatted as JSON. Content type for responses are always of the type application/json. You can use the Tryba API in test mode, which does not affect your live data or interact with the banking networks. The API key you use to authenticate the request determines whether the request is live mode or test mode

Errors

Errors are returned when one or more validation rules fail or unauthorized access to API. Examples include not passing required parameters e.g. not passing the transaction/provider ref during a re-query call will result in a validation error. Here's a sample below:

                                    
                                    {
                                        "status": "failed",
                                        "message": "tx_ref is required",
                                        "data": "null"
                                    }
                                    
                                    

Initiate Transaction

This is your IPN url, it is important for receiving payment notification. Successful transactions redirects to this url after payment. {tx_ref} is returned, so you don't need to pass it with your url

URL to redirect to when a transaction is completed. This is useful so we can redirect your customer back to a custom page you want to show them.

Your transaction reference. This MUST be unique for every transaction.

This is the first_name of your customer.

This is the last_name of your customer.

This is the email address of your customer. Transaction notification will be sent to this email address

Currency to charge in. [ 'KES', 'NGN', 'GBP', 'USD' ]

Amount to charge the customer.

{
"title":"Title of payment",
"description":"Description of payment",
"logo":"https://assets.piedpiper.com/logo.png"
}

You can pass extra information here.

                                    
                                    curl -X POST "http://namevitech.live/demo1/api/payment" 
                                    -H "Accept: application/json" 
                                    -H "Authorization: Bearer {secret_key}"
                                    -d "{
                                        "amount": "1000",
                                        "currency": "USD",
                                        "email": "[email protected]",
                                        "first_name":"John",
                                        "last_name":"Doe",
                                        "callback_url": "https://webhook.site/9d0b00ba-9a69-44fa-a43d-a82c33c36fdc",
                                        "return_url": "https://webhook.site",
                                        "tx_ref": "2346vrcd",
                                        "customization": {
                                            "title": "Test Payment",
                                            "description": "Payment Description",
                                            "logo": "https://assets.piedpiper.com/logo.png"
                                        },
                                        "meta": {
                                            "uuid": "uuid",
                                            "response": "Response"
                                        }
                                    }"
                                    
                                

Response

                                    
                                    {
                                        "message": "Payment link created",
                                        "status": "success",
                                        "data": {
                                            "checkout_url": "http://namevitech.live/demo1/payment/09229936784"
                                        }
                                    }
                                    
                                

Validate a Transaction

This shows you how to validate a transaction

                                    
                                    curl -X GET "http://namevitech.live/demo1/api/transaction/{tx_ref}"
                                    -H "Accept: application/json" 
                                    -H "Authorization: Bearer {secret_key}"
                                    
                                

Response

                                    
                                    {
                                        "message": "Payment details",
                                        "status": "success",
                                        "data": {
                                            "first_name": "John",
                                            "last_name": "Doe",
                                            "email": "[email protected]",
                                            "currency": "NGN",
                                            "amount": "10,000.00",
                                            "charge": "400.00",
                                            "mode": "test",
                                            "type": "API",
                                            "status": "success",
                                            "reference": "20193542126",
                                            "tx_ref": "2346vrcdssdadffx",
                                            "customization": {
                                                "title": "Test Payment",
                                                "description": "Payment Description",
                                                "logo": "https://logo.png"
                                            },
                                            "meta": {
                                                "uuid": "uuid",
                                                "response": "Response"
                                            },
                                            "created_at": "2022-01-12T10:43:09.000000Z",
                                            "updated_at": "2022-01-12T10:43:09.000000Z"
                                        }
                                    }
                                    
                                

Integrating Website Payment

Receiving money on your website is now easy. All you need to do is copy the html form code below to your website page

                                    
                                    <form method="POST" action="http://namevitech.live/demo1/ext_transfer" >
                                        <input type="hidden" name="secret_key" value="{secret_key}" />
                                        <input type="hidden" name="callback_url" value="https://example.com/callbackurl" />
                                        <input type="hidden" name="return_url" value="https://example.com/returnurl" />
                                        <input type="hidden" name="tx_ref" value="2346vrcd" />
                                        <input type="hidden" name="amount" value="100" />
                                        <input type="hidden" name="currency" value="USD" />
                                        <input type="hidden" name="email" value="[email protected]" />
                                        <input type="hidden" name="first_name" value="John" />
                                        <input type="hidden" name="last_name" value="Doe" />
                                        <input type="hidden" name="title" value="Test Payment" />
                                        <input type="hidden" name="description" value="Payment Description" />
                                        <input type="hidden" name="logo" value="https://example.com/logo.png" />
                                        <input type="hidden" name="meta" value="" />
                                        <input type="submit" value="submit" />
                                    </form>
                                    
                                

Initiate Transaction

This is important for creating payment links

This is your IPN url, it is important for receiving payment notification.

URL to redirect to when a transaction is completed. This is useful so we can redirect your customer back to a custom page you want to show them. Successful transactions redirects to this url after payment. {tx_ref} is returned

Your transaction reference. This MUST be unique for every transaction.

This is the first_name of your customer.

This is the last_name of your customer.

This is the email address of your customer. Transaction notification will be sent to this email address

Currency to charge in. [ 'KES', 'NGN', 'GBP', 'USD' ]

Amount to charge the customer.

{
"title":"Title of payment",
"description":"Description of payment",
"logo":"https://assets.piedpiper.com/logo.png"
}

You can pass extra information here.