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

# Download payment confirmations

> Download a payment confirmation in PDF format. It will include details about the remitting account, the transfer (including its status), the recipient

Download a payment confirmation in PDF format. It will include details about the remitting account, the transfer (including its status), the recipient, and the payment itself.

## Download a payment confirmation PDF

<Note>
  **GET** `/v2/payments/{paymentId}/confirmation`
</Note>

### Request

Use this request to download a payment confirmation.

<CodeGroup>
  ```bash Sample request theme={null}
  curl -i -X GET \
    'https://api.equalsmoney.com/v2/payments/dbf14241-0ea2-41c3-8931-3cf064170118/confirmation?accountId=F12345' \
    -H 'Authorization: ApiKey YOUR_API_KEY_HERE'
  ```

  ```bash Request structure theme={null}
  curl -i -X GET \
    'https://api.equalsmoney.com/v2/payments/{paymentId}/confirmation?accountId={accountId}' \
    -H 'Authorization: ApiKey YOUR_API_KEY_HERE'
  ```
</CodeGroup>

#### Path parameters

<ParamField body="accountId" type="string" required>
  The ID of the account that this payment is associated with.

  Allowable values: An existing `accountId` (≤ 36 characters)
</ParamField>

### Response

If your request is successful, you'll receive a `200` response with no body. The PDF will be downloaded to your computer.

For more detailed information about this request and its response, [see the API reference](/api-reference/payment-confirmation/download-pdf-confirmation-of-a-payment).
