# FAQs

<details>

<summary>How to get TemplateId, ProjectId, and Access Token?</summary>

1. Open the Import description and go to the Snippet portion of the Import.
2. Open the last item of the accordion, where you will find the necessary keys.

<img src="https://3446432046-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FdcNtx1PbzBQcufHhuySW%2Fuploads%2Fu8Ge8NutS24MSSKWKbsG%2Fimage.png?alt=media&#x26;token=bde075af-3ca3-4626-872d-0747811d04c4" alt="Steps to get ProjectId, TemplateId and AccessToken for the Import" data-size="original">

</details>

<details>

<summary>While making call to my API, do I need to provide our own authorization header value?</summary>

Yes, you need to provide your authorization header value, which you can provide from the front end.

</details>

<details>

<summary>If I use Axios in my custom validator, will it pass the cookies from my logged-in user to my server, or is the validator call being made from Impler's servers?</summary>

No, logged-in user cookies won't be passed to your server. Validator calls are being made from Impler's servers.

</details>

<details>

<summary>Is there any way to access user uploaded file?</summary>

Yes, Impler provides a REST API endpoint to fetch a user-uploaded file. Here is CURL,

```
curl --location --request GET 'https://api.impler.io/v1/upload/:uploadId/files/original' \
--header 'accesskey: <ACCESS_TOKEN>'
```

You can get `:uploadId` using `Upload Complete` event and `ACCESS_TOKEN` will be available from the Settings panel.

API will send a file with headers `Content-Type` and `Content-Disposition` as values for file type and filename respectively.

</details>

***

If you have any questions, suggestions, or comments. Feel free to reach out to us over [**Discord**](https://discord.impler.io). We’re constantly improving to deliver the best Data Importer for your product, and we value your input.
