feat: add kyc service http handler and docs
This commit is contained in:
@@ -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"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user