List Smart Designs
curl --request GET \
--url https://api.presenton.ai/api/v3/smart-design/all \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.presenton.ai/api/v3/smart-design/all"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.presenton.ai/api/v3/smart-design/all', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"total_pages": 123,
"page": 123,
"page_size": 123,
"results": [
"<unknown>"
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Design (Smart Mode)
List Smart Designs
List Smart Designs available for Cloud presentation generation.
GET
/
api
/
v3
/
smart-design
/
all
List Smart Designs
curl --request GET \
--url https://api.presenton.ai/api/v3/smart-design/all \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.presenton.ai/api/v3/smart-design/all"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.presenton.ai/api/v3/smart-design/all', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"total_pages": 123,
"page": 123,
"page_size": 123,
"results": [
"<unknown>"
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Only include default designs when true, user designs when false.
Was this page helpful?