Hi,
I am trying to use the graphic API to upload images (it is a large number so it is easier to use the API rather than upload them via the browser).
I managed to upload them but I want to divide them into folders, which does not seem to work. Here is my code:
headers = {"x-api-token": apiToken }
files = {'file' : (path, open(path, 'rb'), 'image/jpeg'),"folder": graphic_folder}
baseUrl = "https://{0}.qualtrics.com/API/v3/libraries/{1}/graphics/".format(dataCenter,graphic_library_id)
response = requests.post(baseUrl, files=files,headers=headers)
the images get uploaded but they are in the "uncategorized" folder, not the graphic_folder I specified.
Could someone please help me with that? Thanks a lot.
Graphic API upload to a certain library folder
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.