> For the complete documentation index, see [llms.txt](https://apidocs.cloudinvoice.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apidocs.cloudinvoice.net/documentacao-api/recibos/acoes/print.md).

# Print

## Imprimir Recibo

<mark style="color:green;">`POST`</mark> `https://api.cloudinvoice.net/receipts/:id/print/`

#### Path Parameters

| Name                                 | Type    | Description  |
| ------------------------------------ | ------- | ------------ |
| id<mark style="color:red;">\*</mark> | integer | ID do Recibo |

#### Request Body

| Name  | Type    | Description                                                                                                                                                                                                                                                                             |
| ----- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| print | boolean | <p>Imprimir Recibo</p><p></p><p><span data-gb-custom-inline data-tag="emoji" data-code="26a0">⚠️</span> O Recibo deverá estar finalizado.</p><p></p><p>Consulte os parâmetros disponíveis para impressão no <a href="/pages/QmFSqJDMk8S4I0R0KzXp#impressao-do-recibo">Apêndice</a>.</p> |

{% tabs %}
{% tab title="Exemplo de Pedido" %}

```shell
curl -X POST https://api.cloudinvoice.net/receipts/1/print/
    -d '{
        "print": true,
        "print_copy": 3
    }'
```

{% endtab %}

{% tab title="Exemplo de Resposta" %}

```json
{
    "id": 1,
    "doc_key": "REC A01/1",
    "print": {
        "filename": "RG__REC_A01_1__2026_03_17_1773830259.pdf",
        "url": "https://app.cloudinvoice/downloads/xxxxxxxxxx-xxxx-xxx-xxxx-xxxxxxxxx/"
    }
}
```

{% endtab %}
{% endtabs %}

Para ver exemplos de pedidos nas várias linguagens, consulte a página[ Exemplos de Pedidos.](/introducao/exemplos-de-pedidos.md)
