POST impuestosAPI/consultarPersonaRO
Request Information
URI Parameters
None.
Body Parameters
P_Persona_Con| Name | Description | Type | Additional information |
|---|---|---|---|
| rfc | string |
None. |
|
| nombre | string |
None. |
|
| curp | string |
None. |
|
| accion | integer |
None. |
|
| origen | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"rfc": "sample string 1",
"nombre": "sample string 2",
"curp": "sample string 3",
"accion": 4,
"origen": 5
}
application/xml, text/xml
Sample:
<P_Persona_Con xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/impuestosAPI.Models"> <accion>4</accion> <curp>sample string 3</curp> <nombre>sample string 2</nombre> <origen>5</origen> <rfc>sample string 1</rfc> </P_Persona_Con>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ConsultaPersonaRO| Name | Description | Type | Additional information |
|---|---|---|---|
| llave | integer |
None. |
|
| rfc | string |
None. |
|
| nombre | string |
None. |
|
| tipoPersona | integer |
None. |
|
| fuente | integer |
None. |
|
| estatusEjecucion | integer |
None. |
|
| mensajeCiudadano | string |
None. |
|
| mensajeTecnico | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"llave": 1,
"rfc": "sample string 2",
"nombre": "sample string 3",
"tipoPersona": 4,
"fuente": 5,
"estatusEjecucion": 6,
"mensajeCiudadano": "sample string 7",
"mensajeTecnico": "sample string 8"
},
{
"llave": 1,
"rfc": "sample string 2",
"nombre": "sample string 3",
"tipoPersona": 4,
"fuente": 5,
"estatusEjecucion": 6,
"mensajeCiudadano": "sample string 7",
"mensajeTecnico": "sample string 8"
}
]
application/xml, text/xml
Sample:
<ArrayOfConsultaPersonaRO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/impuestosAPI.Models">
<ConsultaPersonaRO>
<estatusEjecucion>6</estatusEjecucion>
<mensajeCiudadano>sample string 7</mensajeCiudadano>
<mensajeTecnico>sample string 8</mensajeTecnico>
<fuente>5</fuente>
<llave>1</llave>
<nombre>sample string 3</nombre>
<rfc>sample string 2</rfc>
<tipoPersona>4</tipoPersona>
</ConsultaPersonaRO>
<ConsultaPersonaRO>
<estatusEjecucion>6</estatusEjecucion>
<mensajeCiudadano>sample string 7</mensajeCiudadano>
<mensajeTecnico>sample string 8</mensajeTecnico>
<fuente>5</fuente>
<llave>1</llave>
<nombre>sample string 3</nombre>
<rfc>sample string 2</rfc>
<tipoPersona>4</tipoPersona>
</ConsultaPersonaRO>
</ArrayOfConsultaPersonaRO>