Access to images via URL

Hello @Syed_Muhammad_Qadeer,
sorry to hear you're unable to access your images attached to your submissions. From your post, I can attribute your hard luck to an omission in your URL. You posted

https://central.bdrp.pk/v1/projects/2/forms/CBFS_WOS_DEMO_Formation_Form_v01/submissions/uuid:10a2a193-af41-4475-b866-6f94b5a73q9c84/13_18_56.jpg

but really, what you need should look like

https://central.bdrp.pk/v1/projects/2/forms/CBFS_WOS_DEMO_Formation_Form_v01/submissions/uuid:10a2a193-af41-4475-b866-6f94b5a73q9c84/attachments/13_18_56.jpg

It will be beneficial to note that you can use the format

projectURL+"projects/"+str(projID)+"/forms/"+str(formID)+"/submissions/"+str(instanceID)+".xml"

to get the entire submission. This is beneficial to know the names of the attached multimedia and then use the format

projectURL+"projects/"+str(projID)+"/forms/"+str(formID)+"/submissions/"+str(instanceID)+"/attachments/"+mediaName

to access the individual attachments.

Hope this helps.

2 Likes