GET Radian/ConsultarEventosFactura/{SuscriptorId}/{CufeCude}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SuscriptorId | globally unique identifier |
Required |
|
| CufeCude | string |
Required |
Body Parameters
None.
Response Information
Resource Description
EventosRecibidos| Name | Description | Type | Additional information |
|---|---|---|---|
| DoceId | globally unique identifier |
None. |
|
| DoceConsecutivo | string |
None. |
|
| DoceFecha | date |
None. |
|
| CufeCude | string |
None. |
|
| Eventos | Collection of EventoDianDTO |
None. |
Response Formats
application/json, text/json
Sample:
{
"DoceId": "8096daf3-c787-4280-951b-dd8b95bf4254",
"DoceConsecutivo": "sample string 2",
"DoceFecha": "2026-02-04T00:10:00.8863736-05:00",
"CufeCude": "sample string 4",
"Eventos": [
{
"FechaEvento": "2026-02-04T00:10:00.8863736-05:00",
"NombreEvento": "sample string 2",
"CodigoEvento": "sample string 3"
},
{
"FechaEvento": "2026-02-04T00:10:00.8863736-05:00",
"NombreEvento": "sample string 2",
"CodigoEvento": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<EventosRecibidos xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KiaiFacturacion.Aplicacion.Dtos.Servicios">
<CufeCude>sample string 4</CufeCude>
<DoceConsecutivo>sample string 2</DoceConsecutivo>
<DoceFecha>2026-02-04T00:10:00.8863736-05:00</DoceFecha>
<DoceId>8096daf3-c787-4280-951b-dd8b95bf4254</DoceId>
<Eventos>
<EventoDianDTO>
<CodigoEvento>sample string 3</CodigoEvento>
<FechaEvento>2026-02-04T00:10:00.8863736-05:00</FechaEvento>
<NombreEvento>sample string 2</NombreEvento>
</EventoDianDTO>
<EventoDianDTO>
<CodigoEvento>sample string 3</CodigoEvento>
<FechaEvento>2026-02-04T00:10:00.8863736-05:00</FechaEvento>
<NombreEvento>sample string 2</NombreEvento>
</EventoDianDTO>
</Eventos>
</EventosRecibidos>