I want to use Alamofire to send parameter and body both. I have seen tutorials and read QA where people use parameters to use as body too as in this one:
let parameters: Parameters = [
"fullName": fullName,
"mobileNumber": mobileNumber,
"password": password
]
Alamofire.request(requestAddress , method: .post, parameters: parameters, encoding: JSONEncoding.default, headers: header).responseJSON { response in
// utility
}
I am not sure how I should send body not using parameters as I need to send both parameters and body both.