curl --request POST \
--url https://preview.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
curl --request POST \
--url https://preview.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
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.