To make a web service ( post ) I have to send the data that you enter in a form that will show you send it by post but I do not know how to do it. I had an idea but it did not work for me. Thanks in advance.
This is what I have to send by post
POST (here's a URL)
BODY
{"client_data":{"id_doc":"",
"first_name":"",
"last_name":"",
"email":"",
"phone":""},
"title":"PROSPECTO DE ALIADO",
"type":"REQUEST",
"weight":1,
"channel":"WEB",
"description_markdown":"",
"time_estimate":1728000,}
this is the form
<input type="text" id="nombres" required>
<label for="apellidos">Apellidos </label>
<input type="text" id="apellidos">
<label for="cedula">Cedula / RIF*</label>
<input type="text" id="cedula" required >
<label for="telefono">Telefono / Celular</label>
<input type="text" id="telefono">
<label for="email">Correo electronico </label>
<input type="text" id="email">
<label for="descripcion">Asunto </label>
<textarea id="descripcion"></textarea>