ManualEntries
Introduction
ManualEntries are the content of a ManualChapter.
Model Definition
Alias
ManualEntry
Relations
currentReaction
Morph one
reactions.reactable_type, reactions.reactable_id, reactions.user_id
Computed properties
hash- The hashedidof theManualEntry.seen- Whether theManualEntryis seen by the current authenticated User.
Traits
SortableTriggersNotifications
List
Get a list of all ManualEntries the current authenticated User is allowed to view.
Definition
GET /api/manual/entries
Example Request
Example Response Body
List by chapter
Get a list of all ManualEntries the current authenticated User is allowed to view by ManualChapter.
Definition
GET /api/manual/chapters/{chapterId}/entries
Example Request
Example Response Body
Count
Get the count of all ManualEntries the current authenticated User is allowed to view.
Definition
GET /manual/chapters/entries/count
Example Request
Example Response Body
Count by chapter
Get the count of all ManualEntries the current authenticated User is allowed to view by ManualChapter.
Definition
GET /api/manual/chapters/{chapterId}/entries/count
Example Request
Example Response Body
Show
Show a single ManualEntry by id or hash.
Definition
GET /api/manual/chapters/entries/{idOrHash}
Example Request
Example Response Body
Create
Create a new ManualEntry by ManualChapter.
Definition
GET /api/manual/chapters/{chapterId}/entries
Request Keys
title*
string
-
The title of the ManualEntry.
text*
string
-
The text of the ManualEntry.
Keys with * are required.
Keys with ** are normalized to the information given by the route.
Example Request
Example Response Body
Update
Update an existing ManualEntry by id.
Definition
PUT /api/manual/chapters/entries/{id}
Request Keys
title
string
The title of the ManualEntry.
text
string
The text of the ManualEntry.
Example Request
Example Response Body
Delete
Delete an existing ManualEntry by id.
Definition
GET /api/manual/chapters/entries/{id}
Example Request
Example Response Body
Last updated