Account
Bank
Transfer
Discount
KYC
Supported
KYC
Initiate BVN KYC
Initiate account KYC with BVN.
POST
/
kyc
Copy
curl --request POST \
--url https://staging-api.getpartna.com/v4/kyc \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-api-user: <api-key>' \
--data '{
"accountName": ""
}'
Copy
{
"data": {
"methods": [
{
"hint": "An email with a verification code will be sent to abc***def@gmail.com",
"method": "email"
},
{
"hint": "Sms with a verification code will be sent to phone 0818***1234",
"method": "phone"
},
{
"hint": "Sms with a verification code will be sent to phone 0818***5678",
"method": "phone_1"
},
{
"hint": "Sms with a verification code will be sent to your alternate phone number",
"method": "alternate_phone"
}
]
},
"message": "success"
}
Body
application/json
Response
200 - application/json
post kyc ok
The response is of type object
.
Copy
curl --request POST \
--url https://staging-api.getpartna.com/v4/kyc \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-api-user: <api-key>' \
--data '{
"accountName": ""
}'
Copy
{
"data": {
"methods": [
{
"hint": "An email with a verification code will be sent to abc***def@gmail.com",
"method": "email"
},
{
"hint": "Sms with a verification code will be sent to phone 0818***1234",
"method": "phone"
},
{
"hint": "Sms with a verification code will be sent to phone 0818***5678",
"method": "phone_1"
},
{
"hint": "Sms with a verification code will be sent to your alternate phone number",
"method": "alternate_phone"
}
]
},
"message": "success"
}
Assistant
Responses are generated using AI and may contain mistakes.