GET /presentations/{presentationId}/ai-result

Retrieves the AI generation result for a specific presentation by presentation's ID.

Path parameters

  • presentationId string Required

Responses

  • 200 application/json

    success

    Hide response attributes Show response attributes object
    • success boolean
    • code integer(int32)
    • message string
    • data object
      Hide data attributes Show data attributes object
      • id integer
      • createdAt string(date-time)
      • presentationId string
      • result string
  • 404 application/json

    Not Found

    Hide response attributes Show response attributes object
    • success boolean
    • code integer
    • errorCode string
    • message string
    • timestamp string(date-time)
GET /presentations/{presentationId}/ai-result
curl \
 --request GET 'http://localhost:8080/api/presentations/{presentationId}/ai-result' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "success": true,
  "code": 200,
  "message": "string",
  "data": {
    "id": 42,
    "createdAt": "2025-05-04T09:42:00Z",
    "presentationId": "string",
    "result": "string"
  }
}
Response examples (404)
{
  "success": false,
  "code": 42,
  "errorCode": "string",
  "message": "string",
  "timestamp": "2025-05-04T09:42:00Z"
}