Updates the title of an existing presentation by ID.
PATCH
/presentations/{id}/title
curl \
--request PATCH 'http://localhost:8080/api/presentations/{id}/title' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"title":"Updated Presentation Title"}'
Request examples
{
"title": "Updated Presentation Title"
}
Response examples (404)
{
"success": false,
"code": 42,
"errorCode": "string",
"message": "string",
"timestamp": "2025-05-04T09:42:00Z"
}