# Download attached files This endpoint allows, through a valid token, downloading image files attached to the messages associated with the claim. **GET** `/post-purchase/v1/claims/{claim_id}/attachments/{fileName}/download` ## Request parameters ### Path - `claim_id` (number, required) Claim ID. Unique identifier used to reference a specific claim in the system, essential for tracking and managing these claims. - `attach_id` (string, required) Identifier of the attached file. ## Response parameters This endpoint has no response body. ## Request example ### cURL ```bash curl -X GET \ 'https://api.mercadopago.com/post-purchase/v1/claims/{claim_id}/attachments/{fileName}/download' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer ' ```