Retrieves the AI generation result for a specific presentation by presentation's ID.
GET
/presentations/{presentationId}/ai-result
curl \
--request GET 'https://api.huy-devops.site/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"
}