Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have create API key and manage to try some curl command with success.
Though, when I try https://mytenant.myregion.qlikcloud.com/api/v1/data-files it gives me only data files on my personal space.
I would like to know what parameter I should add to access to all files stored on a specific space, in a specific folder.
my code :
api_key_file = 'api_key_qlick.txt'
api_key = read_api_key(api_key_file)
url = "https://mytenant.myregion.qlikcloud.com/api/v1/data-files"
headers = {
"Content-type":"application/json",
"Authorization":f"Bearer {api_key}"
}
response = requests.get(url, headers=headers)
data = response.json()
I found the parameter thanks to Postman App.
I should have update the parameter "includeAllSpaces" =True
{{baseUrl}}/api/v1/data-files?includeAllSpaces=True
I found the parameter thanks to Postman App.
I should have update the parameter "includeAllSpaces" =True
{{baseUrl}}/api/v1/data-files?includeAllSpaces=True