Skip to main content
Para documentar bonificaciones, entregas promocionales y productos otorgados sin cargo. Comparte la estructura de Compra-Venta; solo cambia el sector.

Datos del sector

CampoValor
documentSectorType35
Servicio SIATFacturación Electrónica / Computarizada (genérico por modalidad)

Campos específicos

No requiere campos adicionales más allá de los campos estándar. Solo se envía documentSectorType: 35.
curl -X POST https://sandbox.cucu.bo/api/v1/invoices \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{
    "pointOfSaleId": "660e8400-e29b-41d4-a716-446655440004",
    "documentSectorType": 35,
    "clientDocumentType": 5,
    "clientDocumentNumber": "1023456789",
    "clientBusinessName": "EMPRESA DEMO S.R.L.",
    "paymentMethodCode": 1,
    "details": [
      {
        "activityEconomic": "620100",
        "codeProductSin": "83141",
        "description": "Bonificacion por volumen - producto promocional",
        "quantity": 1,
        "unitMeasure": 58,
        "priceUnit": 100.00
      }
    ]
  }'
const response = await fetch('https://sandbox.cucu.bo/api/v1/invoices', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'X-API-Key': 'YOUR_API_KEY'
  },
  body: JSON.stringify({
    pointOfSaleId: '660e8400-e29b-41d4-a716-446655440004',
    documentSectorType: 35,
    clientDocumentType: 5,
    clientDocumentNumber: '1023456789',
    clientBusinessName: 'EMPRESA DEMO S.R.L.',
    paymentMethodCode: 1,
    details: [{
      activityEconomic: '620100',
      codeProductSin: '83141',
      description: 'Bonificacion por volumen - producto promocional',
      quantity: 1,
      unitMeasure: 58,
      priceUnit: 100.00
    }]
  })
});
import requests

response = requests.post(
    'https://sandbox.cucu.bo/api/v1/invoices',
    headers={
        'Content-Type': 'application/json',
        'X-API-Key': 'YOUR_API_KEY'
    },
    json={
        'pointOfSaleId': '660e8400-e29b-41d4-a716-446655440004',
        'documentSectorType': 35,
        'clientDocumentType': 5,
        'clientDocumentNumber': '1023456789',
        'clientBusinessName': 'EMPRESA DEMO S.R.L.',
        'paymentMethodCode': 1,
        'details': [{
            'activityEconomic': '620100',
            'codeProductSin': '83141',
            'description': 'Bonificacion por volumen - producto promocional',
            'quantity': 1,
            'unitMeasure': 58,
            'priceUnit': 100.00
        }]
    }
)
Ver Crear Factura para la referencia completa de campos estándar, response y códigos de error.