Payout
Resolve bank account
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
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
Payout
Resolve bank account
Verifies the bank account and returns the bank account details
POST
/
bank
/
resolve
curl --request POST \
--url https://staging-biz.coinprofile.co/v2/bank/resolve \
--header 'Content-Type: application/json' \
--data '{
"accountNumber": "<string>",
"bankCode": "<string>"
}'
{
"data": {
"responsemessage": "<string>",
"responsecode": "<string>",
"uniquereference": "<string>",
"internalreference": "<string>",
"accountname": "<string>",
"accountnumber": "<string>",
"phonenumber": "<string>",
"currency": "<string>",
"country": "<string>",
"code": "<string>",
"name": "<string>",
"is_visible": "<string>",
"is_trashed": "<string>",
"deleted_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
}
Body
application/json
The account number.
The bank code.
Response
200 - application/json
successful operation
curl --request POST \
--url https://staging-biz.coinprofile.co/v2/bank/resolve \
--header 'Content-Type: application/json' \
--data '{
"accountNumber": "<string>",
"bankCode": "<string>"
}'
{
"data": {
"responsemessage": "<string>",
"responsecode": "<string>",
"uniquereference": "<string>",
"internalreference": "<string>",
"accountname": "<string>",
"accountnumber": "<string>",
"phonenumber": "<string>",
"currency": "<string>",
"country": "<string>",
"code": "<string>",
"name": "<string>",
"is_visible": "<string>",
"is_trashed": "<string>",
"deleted_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
}