Skip to main content
POST
/
api
/
v3
/
kyc
/
address
Create Kyc Address
curl --request POST \
  --url https://sandbox-api.kotanipay.com/api/v3/kyc/address \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "kycId": "<string>",
  "street": "<string>",
  "town": "<string>",
  "country": "<string>"
}
'
{
  "success": true,
  "message": "Kyc Address created successfully",
  "data": {
    "status": "<string>",
    "kycId": "<string>",
    "kycStatus": true
  }
}
This API will create a new KYC address record for customer verification.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
kycId
string
required
street
string
required
town
string
required
country
string
required

example GH,KE,NG

Response

200 - application/json
success
boolean
Example:

true

message
string
Example:

"Kyc Address created successfully"

data
object