> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cucu.bo/llms.txt
> Use this file to discover all available pages before exploring further.

# Bonificaciones

> Factura de bonificaciones y entregas promocionales. Sector 35.

Para documentar bonificaciones, entregas promocionales y productos otorgados sin cargo. Comparte la estructura de [Compra-Venta](/api/sectors/sale); solo cambia el sector.

## Datos del sector

| Campo                | Valor                                                            |
| -------------------- | ---------------------------------------------------------------- |
| `documentSectorType` | `35`                                                             |
| Servicio SIAT        | Facturación Electrónica / Computarizada (genérico por modalidad) |

## Campos específicos

No requiere campos adicionales más allá de los [campos estándar](/api/create-invoice#request-body). Solo se envía `documentSectorType: 35`.

<CodeGroup>
  ```bash cURL theme={"system"}
  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
        }
      ]
    }'
  ```

  ```javascript JavaScript theme={"system"}
  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
      }]
    })
  });
  ```

  ```python Python theme={"system"}
  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
          }]
      }
  )
  ```
</CodeGroup>

<Info>
  Ver [Crear Factura](/api/create-invoice) para la referencia completa de campos estándar, response y códigos de error.
</Info>
