Collect & Onramp
- GETRetrieve merchant account balance
- GETRetrieve merchant record
- PATCHUpdate merchant record
- POSTMake a mock payment
- GETRetrieves conversion rates
- GETRetrieve merchant transaction summary
- POSTCreate a new voucher payment
- GETRetrieve voucher record
- GETGet multiple records
- PATCHRedeem existing unused voucher
- PATCHRedeem and withdraw
- GETRetrieves conversion rates
- GETRetrieves minimum and maximum voucher amounts
- POSTCreate a new bank account
- GETRetrieve static accounts for a user
Offramp
- POSTCreate api key
- POSTCreate payment
- GETGet a single payment
- GETGet a transaction
- GETGet current rates
- GETGet minimum amount allowed
- GETGet supported currencies
- GETGet supported cryptocurrencies and network
- GETResolve overpaid Transaction
- GETRetrieve subscribed webhook url
- GETRetrieve user's transaction records
- GETRetrieve user's transaction summary
- GETRetrieves a user's crypto wallet addresses
- PUTSubscribe to webhook
Payout
- GETGet current rates
- POSTWithdraw balance
- GETGet a transaction
- POSTResolve bank account
- GETGet minimum amount allowed
- GETRetrieve a list of supported banks
- GETRetrieve subscribed webhook url
- GETRetrieve user's account balance
- GETRetrieve user's transaction records
- GETRetrieve user's transaction summary
- PUTSubscribe to webhook
- POSTTransfer funds
- POSTWallet transfer
Create Bank Account
Create bank account. You need to complete KYC before creating a bank account.
PUT
/
account
Copy
curl --request PUT \
--url https://staging-api.getpartna.com/v4/account \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-api-user: <api-key>' \
--data '{
"accountName": "",
"currency": "",
"preferredAccountName": ""
}'
Copy
{
"data": [
{
"account_name": "KAROKART / RHODA CHURCH",
"account_number": "9930000737",
"bank_code": "100039",
"bank_name": "Paystack-Titan",
"currency": "NGN",
"status": "ACTIVE"
}
],
"message": "bank account successful"
}
Copy
curl --request PUT \
--url https://staging-api.getpartna.com/v4/account \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-api-user: <api-key>' \
--data '{
"accountName": "",
"currency": "",
"preferredAccountName": ""
}'
Copy
{
"data": [
{
"account_name": "KAROKART / RHODA CHURCH",
"account_number": "9930000737",
"bank_code": "100039",
"bank_name": "Paystack-Titan",
"currency": "NGN",
"status": "ACTIVE"
}
],
"message": "bank account successful"
}
Assistant
Responses are generated using AI and may contain mistakes.