PortalFirma

api-integration · Report

Reportes

Alta de reporte con archivos multipart. El campo cav es obligatorio.

POST{URL}/report/create

Crea reporte subiendo archivos multipart (CAV obligatorio, MNP opcional).

  • Content-Type: multipart/form-data
  • Campos archivo: `cav` (requerido), `mnp` (opcional)
Body
{
  cav: File (required),
  mnp: File (optional)
}
Headers
id
{api-key}
Content-Type
multipart/form-data
Auth
Bearer
{token}

Response

Success
{
  success: true,
  data: { /* reporte */ },
  error: null
}
Error
{
  success: false,
  data: null,
  error: <error description>
}