Saltar al contenido
MultiFactu · Blume POC
Español
Esc
navigateopen⌘Jpreview

Export NO VERIFACTU event XMLs for a date range

POST/no-verifactu/events/export
Request body
requiredapplication/json
fromstringrequired
Start datetime (ISO 8601)
limitnumber
Maximum number of records to export (1-2000)
min 1 · max 2000
untilstringrequired
End datetime (ISO 8601)
Responses
200Event XMLs exported for date range (NO VERI*FACTU)
correlationIdstring
Correlation ID for tracking the request
dataExportEventXmlItemDto[]required
Array of events with their signed XML
Show properties
Array of ExportEventXmlItemDto
fechaHoraHusoGenEventostringrequired
FechaHoraHusoGenEvento (ISO 8601 con zona)
signedXmlstring<xml>required
Signed XML of the event (XAdES-EPES)
tipoEventostringrequired
TipoEvento according to EventosSIF
uuidstringrequired
Internal UUID of the event
400
correlationIdstringrequired
messagestringrequired
pathstringrequired
statusCodenumberrequired
successbooleanrequired
timestampstringrequired
422
correlationIdstringrequired
errorDetailsobject
Present only when the error comes from VeriFactu submission
Show properties
verifactuErrorVerifactuErrorrequired
Show properties
causastring
Root cause of the error
codigoErrorRegistrostring
descripcionErrorRegistrostring
errorTypestringrequired
Allowed:ADMISSIBLEINADMISSIBLE
messagestring
Brief error message describing the issue
registroDuplicadoobject
Información del registro ya existente cuando AEAT rechaza por duplicidad
Show properties
codigoErrorRegistrostring
Código de error del registro duplicado almacenado en AEAT, si aplica
descripcionErrorRegistrostring
Descripción del error del registro duplicado almacenado en AEAT, si aplica
estadoRegistroDuplicadostring
Estado del registro duplicado almacenado en AEAT (Correcta, AceptadaConErrores, Anulada)
idPeticionRegistroDuplicadostring
IdPeticion asociado a la factura registrada previamente en AEAT (solo se informa si el rechazo es por duplicidad)
solucionstring
Detailed solution or recommended action to resolve the error
subsanableboolean
Indicates whether the error is correctable/recoverable through subsanation (correction) process
messagestringrequired
pathstringrequired
statusCodenumberrequired
successbooleanrequired
timestampstringrequired
500
correlationIdstringrequired
messagestringrequired
pathstringrequired
statusCodenumberrequired
successbooleanrequired
timestampstringrequired
Request
curl -X POST "https://api.multifactu.com/no-verifactu/events/export" \
  -H "Content-Type: application/json" \
  -d '{
  "from": "2025-01-01T00:00:00+01:00",
  "limit": 500,
  "until": "2025-01-31T23:59:59+01:00"
}'
Response
{
  "correlationId": "123e4567-e89b-12d3-a456-426614174000",
  "data": [
    {
      "fechaHoraHusoGenEvento": "2025-02-03T14:30:00+01:00",
      "signedXml": "<xml>",
      "tipoEvento": "01",
      "uuid": "bcda84ec-a5a7-4af3-a8fa-3c754b32711a"
    }
  ]
}