ManualChapters
Introduction
ManualChapters are a collection of ManualEntries and describe structure and permissions for Manual contents.
Model Definition
Alias
manualChapter
Relations
Traits
Sortable
List
Get a list of all ManualChapters the current authenticated User is allowed to view.
Definition
GET /api/manual/chapters
Example Request
Example Response Body
Show
Show a single ManualChapter by id.
Definition
GET /api/manual/chapters/{id}
Example Request
Example Response Body
[Adm.] List
Get a list of all ManualChapters.
Definition
GET /api/administration/manual/chapters
Example Request
Example Response Body
[Adm.] Get
Get a single ManualChapter by id.
Definition
GET /api/administration/manual/chapters/{id}
Example Request
Example Response Body
[Adm.] Create
Create a new ManualChapter.
Definition
POST /api/administration/manual/chapters
Request Keys
name*
string
-
The name of the ManualChapter (unique by all ManualChapters).
slug
string
Slugged name
The slugged name of the ManualChapter (unique by all ManualChapters).
sort_number
integer
Current highest +1
The index of the ManualChapter.
department_ids
string
-
The Departments that are allowed to see the ManualChapter (separated by commas). When empty, the ManualChapter will be public.
Keys with * are required.
Example Request
Example Response Body
[Adm.] Update
Update an existing ManualChapter by id.
Definition
PUT /api/administration/manual/chapters/{id}
Request Keys
name
string
The name of the ManualChapter (unique by all ManualChapters).
slug
string
The slugged name of the ManualChapter (unique by all ManualChapters).
sort_number
integer
The index of the ManualChapter.
department_ids
string
The Departments that are allowed to see the ManualChapter (separated by commas). When empty, the ManualChapter will be public.
Example Request
Example Response Body
[Adm.] Delete
Delete an existing ManualChapter by id.
Definition
DELETE /api/administration/manual/chapters/{id}
Example Request
Example Response Body
Last updated