POST api/v1/user/info
Request Information
URI Parameters
None.
Body Parameters
UserInfoRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| nombre | string |
None. |
|
| telefono | string |
None. |
|
| direccion | string |
None. |
|
| codigoPostal | string |
None. |
|
| genero | string |
None. |
|
| fechaNacimiento | date |
None. |
|
| estadoId | integer |
None. |
|
| municipioId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"nombre": "sample string 1",
"telefono": "sample string 2",
"direccion": "sample string 3",
"codigoPostal": "sample string 4",
"genero": "sample string 5",
"fechaNacimiento": "2026-08-10T14:10:22.0039761-04:00",
"estadoId": 7,
"municipioId": 8
}
application/xml, text/xml
Sample:
<Request.UserInfoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/qPonesApi.DTO"> <codigoPostal>sample string 4</codigoPostal> <direccion>sample string 3</direccion> <estadoId>7</estadoId> <fechaNacimiento>2026-08-10T14:10:22.0039761-04:00</fechaNacimiento> <genero>sample string 5</genero> <municipioId>8</municipioId> <nombre>sample string 1</nombre> <telefono>sample string 2</telefono> </Request.UserInfoRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>