# Documents Show a list of documents available for download. Documents renders a list of [tax invoices](https://support.stripe.com/topics/tax-invoices) available for download for the connected account. For example, use this component to download 1099 tax forms that you can use for pre-filing confirmation and e-delivery to your connected accounts. Note: The following is a preview/demo component that behaves differently than live mode usage with real connected accounts. The actual component has more functionality than what might appear in this demo component. For example, for connected accounts without Stripe dashboard access (custom accounts), no user authentication is required in production. When [creating an Account Session](https://docs.stripe.com/api/account_sessions/create.md), enable documents by specifying `documents` in the `components` parameter. ```curl curl https://api.stripe.com/v1/account_sessions \ -u "<>:" \ -d "account={{CONNECTEDACCOUNT_ID}}" \ -d "components[documents][enabled]=true" ``` After creating the account session, you can [initialize ConnectJS](https://docs.stripe.com/connect/get-started-connect-embedded-components.md#account-sessions) and render the documents component in the front end: #### JavaScript ```js // Include this element in your HTML const documents = stripeConnectInstance.create('documents'); container.appendChild(documents); ```