feat: add kyc service http handler and docs

This commit is contained in:
2025-09-15 16:52:05 +03:30
parent b2d5659aec
commit c27e3945d5
7 changed files with 254 additions and 0 deletions
+10
View File
@@ -41,3 +41,13 @@ type OTPVerifyRequest struct {
type OTPVerifyResponse struct {
Message string `json:"message"`
}
type KYCVerifyRequest struct {
UserID string `json:"userId" validate:"required,uuid"`
NationalID string `json:"nationalId" validate:"required"`
BirthDate string `json:"birthDate" validate:"required"`
}
type KYCVerifyResponse struct {
Message string `json:"message"`
}