Creating links
Learn How to Create a Link to gain access to user permissioned data from your customers
Not a Developer? No problem, you can create and customize the appearance of links directly from your dashboard — Click here to try it out.

Send your customer a link to connect to any of their bank accounts in a single tap! Truly speed up onboarding with no more reasons to collect BVN's or addresses etc.
Want to debit your customer?
Add more nodes and enable a debit authorization with your customer. Checkout Setup Payment for Later
Okra Links is an extremely simple way to connect your customers bank account to your application. Instantly generate a link, then send it via SMS or email to your customer. They click the link and connect online via the Okra widget.
Generate a widget link
Checkout a full list of Widget Properties
curl -X POST https://api.okra.ng/v2/links/new
-H 'Content-Type: application/json'
-H 'Authorization: Bearer <secretKey>'
{
"name": STRING,
"logo": STRING,
"countries": ["NG"],
"billable_products": ["auth","identity", "balance", "transactions"],
"color": STRING, //hex
"support_email": STRING, //required
"success_url": STRING,
"callback_url": STRING,
"continue_cta": STRING //what the button says at the end
}
{
"status": "success",
"message": "Link suceccefully created!",
"data": {
"status": true,
"link": {
"url": "https://app.okra.ng/SHORT_URL",
... additional link details
}
}
}
Updated 10 months ago