I am trying to download a file using rest service using V2 API.
curl -X POST https://api.dropboxapi.com/2/file_requests/get \
--header "Authorization: Bearer <Access Token>" \
--header "Content-Type: application/json" \
--data "{\"id\": \"oaCAVmEyrqYnkZX9955Y\"}"
Where I can get the file id?
Thanks in advance.