GET
/
api
/
v1
/
ppt
/
presentation
/
{id}
Get Presentation And Slides By Id
curl --request GET \
  --url https://api.presenton.ai/api/v1/ppt/presentation/{id} \
  --header 'Authorization: <authorization>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "user": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "content": "<string>",
  "n_slides": 123,
  "language": "<string>",
  "title": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "tone": "<string>",
  "verbosity": "<string>",
  "theme": {},
  "slides": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "presentation": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "layout_group": "<string>",
      "layout": "<string>",
      "index": 123,
      "content": {},
      "html_content": "<string>",
      "speaker_note": "<string>",
      "properties": {}
    }
  ]
}

Headers

Authorization
string
required

The bearer token to authenticate with

Path Parameters

id
string<uuid>
required

Response

200
application/json

Successful Response

The response is of type object.