List uploaded images
curl --request GET \
--url http://localhost:5001/api/v1/ppt/images/uploaded \
--header 'Authorization: Basic <encoded-value>'import requests
url = "http://localhost:5001/api/v1/ppt/images/uploaded"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('http://localhost:5001/api/v1/ppt/images/uploaded', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Files and Images
Uploaded images (self-hosted)
List images stored by this Presenton instance.
GET
/
api
/
v1
/
ppt
/
images
/
uploaded
List uploaded images
curl --request GET \
--url http://localhost:5001/api/v1/ppt/images/uploaded \
--header 'Authorization: Basic <encoded-value>'import requests
url = "http://localhost:5001/api/v1/ppt/images/uploaded"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('http://localhost:5001/api/v1/ppt/images/uploaded', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Response
Successful Response
Was this page helpful?