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": "5c885000-ab85-4172-a1fd-f9a82bc06ea3",
"DoceConsecutivo": "sample string 2",
"DoceFecha": "2026-03-21T07:26:32.8301666-05:00",
"CufeCude": "sample string 4",
"Eventos": [
{
"FechaEvento": "2026-03-21T07:26:32.8301666-05:00",
"NombreEvento": "sample string 2",
"CodigoEvento": "sample string 3"
},
{
"FechaEvento": "2026-03-21T07:26:32.8301666-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-03-21T07:26:32.8301666-05:00</DoceFecha>
<DoceId>5c885000-ab85-4172-a1fd-f9a82bc06ea3</DoceId>
<Eventos>
<EventoDianDTO>
<CodigoEvento>sample string 3</CodigoEvento>
<FechaEvento>2026-03-21T07:26:32.8301666-05:00</FechaEvento>
<NombreEvento>sample string 2</NombreEvento>
</EventoDianDTO>
<EventoDianDTO>
<CodigoEvento>sample string 3</CodigoEvento>
<FechaEvento>2026-03-21T07:26:32.8301666-05:00</FechaEvento>
<NombreEvento>sample string 2</NombreEvento>
</EventoDianDTO>
</Eventos>
</EventosRecibidos>