Account
Bank
Transfer
Discount
KYC
Supported
Account
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"
}
Body
application/json
Response
200
application/json
put account ok
The response is of type object
.
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.