]> BookStack Code Mirror - bookstack/blob - resources/views/api-docs/parts/getting-started.blade.php
Added login throttling test, updated reset-pw test method names
[bookstack] / resources / views / api-docs / parts / getting-started.blade.php
1 <h1 class="list-heading text-capitals mb-l">Getting Started</h1>
2
3 <p class="mb-none">
4     This documentation covers use of the REST API. <br>
5     Examples of API usage, in a variety of programming languages, can be found in the <a href="https://github.com/BookStackApp/api-scripts" target="_blank" rel="noopener noreferrer">BookStack api-scripts repo on GitHub</a>.
6
7     <br> <br>
8     Some alternative options for extension and customization can be found below:
9 </p>
10
11 <ul>
12     <li>
13         <a href="{{ url('/settings/webhooks') }}" target="_blank" rel="noopener noreferrer">Webhooks</a> -
14         HTTP POST calls upon events occurring in BookStack.
15     </li>
16     <li>
17         <a href="https://github.com/BookStackApp/BookStack/blob/master/dev/docs/visual-theme-system.md" target="_blank" rel="noopener noreferrer">Visual Theme System</a> -
18         Methods to override views, translations and icons within BookStack.
19     </li>
20     <li>
21         <a href="https://github.com/BookStackApp/BookStack/blob/master/dev/docs/logical-theme-system.md" target="_blank" rel="noopener noreferrer">Logical Theme System</a> -
22         Methods to extend back-end functionality within BookStack.
23     </li>
24 </ul>
25
26 <hr>
27
28 <h5 id="authentication" class="text-mono mb-m">Authentication</h5>
29 <p>
30     To access the API a user has to have the <em>"Access System API"</em> permission enabled on one of their assigned roles.
31     Permissions to content accessed via the API is limited by the roles & permissions assigned to the user that's used to access the API.
32 </p>
33 <p>Authentication to use the API is primarily done using API Tokens. Once the <em>"Access System API"</em> permission has been assigned to a user, a "API Tokens" section should be visible when editing their user profile. Choose "Create Token" and enter an appropriate name and expiry date, relevant for your API usage then press "Save". A "Token ID" and "Token Secret" will be immediately displayed. These values should be used as a header in API HTTP requests in the following format:</p>
34 <pre><code class="language-css">Authorization: Token &lt;token_id&gt;:&lt;token_secret&gt;</code></pre>
35 <p>Here's an example of an authorized cURL request to list books in the system:</p>
36 <pre><code class="language-shell">curl --request GET \
37   --url https://example.com/api/books \
38   --header 'Authorization: Token C6mdvEQTGnebsmVn3sFNeeuelGEBjyQp:NOvD3VlzuSVuBPNaf1xWHmy7nIRlaj22'</code></pre>
39 <p>If already logged into the system within the browser, via a user account with permission to access the API, the system will also accept an existing session meaning you can browse API endpoints directly in the browser or use the browser devtools to play with the API.</p>
40
41 <hr>
42
43 <h5 id="request-format" class="text-mono mb-m">Request Format</h5>
44
45 <p>
46     For endpoints in this documentation that accept data a "Body Parameters" table will be available to show the parameters that are accepted in the request.
47     Any rules for the values of such parameters, such as the data-type or if they're required, will be shown alongside the parameter name.
48 </p>
49
50 <p>
51     The API can accept request data in the following <code>Content-Type</code> formats:
52 </p>
53
54 <ul>
55     <li>application/json</li>
56     <li>application/x-www-form-urlencoded</li>
57     <li>multipart/form-data</li>
58 </ul>
59
60 <p>
61     Regardless of format chosen, ensure you set a <code>Content-Type</code> header on requests so that the system can correctly parse your request data.
62     The API is primarily designed to be interfaced using JSON, since responses are always in JSON format, hence examples in this documentation will be shown as JSON.
63     Some endpoints, such as those that receive file data, may require the use of <code>multipart/form-data</code>. This will be mentioned within the description for such endpoints.
64 </p>
65
66 <p>
67     Some data may be expected in a more complex nested structure such as a nested object or array.
68     These can be sent in non-JSON request formats using square brackets to denote index keys or property names.
69     Below is an example of a JSON request body data and it's equivalent x-www-form-urlencoded representation.
70 </p>
71
72 <p><strong>JSON</strong></p>
73
74 <pre><code class="language-json">{
75   "name": "My new item",
76   "books": [105, 263],
77   "tags": [{"name": "Tag Name", "value": "Tag Value"}],
78 }</code></pre>
79
80 <p><strong>x-www-form-urlencoded</strong></p>
81
82 <pre><code class="language-text">name=My%20new%20item&books%5B0%5D=105&books%5B1%5D=263&tags%5B0%5D%5Bname%5D=Tag%20Name&tags%5B0%5D%5Bvalue%5D=Tag%20Value</code></pre>
83
84 <p><strong>x-www-form-urlencoded (Decoded for readability)</strong></p>
85
86 <pre><code class="language-text">name=My new item
87 books[0]=105
88 books[1]=263
89 tags[0][name]=Tag Name
90 tags[0][value]=Tag Value</code></pre>
91
92 <hr>
93
94 <h5 id="listing-endpoints" class="text-mono mb-m">Listing Endpoints</h5>
95 <p>Some endpoints will return a list of data models. These endpoints will return an array of the model data under a <code>data</code> property along with a numeric <code>total</code> property to indicate the total number of records found for the query within the system. Here's an example of a listing response:</p>
96 <pre><code class="language-json">{
97   "data": [
98     {
99       "id": 1,
100       "name": "BookStack User Guide",
101       "slug": "bookstack-user-guide",
102       "description": "This is a general guide on using BookStack on a day-to-day basis.",
103       "created_at": "2019-05-05 21:48:46",
104       "updated_at": "2019-12-11 20:57:31",
105       "created_by": 1,
106       "updated_by": 1,
107       "image_id": 3
108     }
109   ],
110   "total": 16
111 }</code></pre>
112 <p>
113     There are a number of standard URL parameters that can be supplied to manipulate and page through the results returned from a listing endpoint:
114 </p>
115 <table class="table">
116     <tr>
117         <th width="110">Parameter</th>
118         <th>Details</th>
119         <th width="30%">Examples</th>
120     </tr>
121     <tr>
122         <td>count</td>
123         <td>
124             Specify how many records will be returned in the response. <br>
125             (Default: {{ config('api.default_item_count') }}, Max: {{ config('api.max_item_count') }})
126         </td>
127         <td>Limit the count to 50<br><code>?count=50</code></td>
128     </tr>
129     <tr>
130         <td>offset</td>
131         <td>
132             Specify how many records to skip over in the response. <br>
133             (Default: 0)
134         </td>
135         <td>Skip over the first 100 records<br><code>?offset=100</code></td>
136     </tr>
137     <tr>
138         <td>sort</td>
139         <td>
140             Specify what field is used to sort the data and the direction of the sort (Ascending or Descending).<br>
141             Value is the name of a field, A <code>+</code> or <code>-</code> prefix dictates ordering. <br>
142             Direction defaults to ascending. <br>
143             Can use most fields shown in the response.
144         </td>
145         <td>
146             Sort by name ascending<br><code>?sort=+name</code> <br> <br>
147             Sort by "Created At" date descending<br><code>?sort=-created_at</code>
148         </td>
149     </tr>
150     <tr>
151         <td>filter[&lt;field&gt;]</td>
152         <td>
153             Specify a filter to be applied to the query. Can use most fields shown in the response. <br>
154             By default a filter will apply a "where equals" query but the below operations are available using the format filter[&lt;field&gt;:&lt;operation&gt;] <br>
155             <table>
156                 <tr>
157                     <td>eq</td>
158                     <td>Where <code>&lt;field&gt;</code> equals the filter value.</td>
159                 </tr>
160                 <tr>
161                     <td>ne</td>
162                     <td>Where <code>&lt;field&gt;</code> does not equal the filter value.</td>
163                 </tr>
164                 <tr>
165                     <td>gt</td>
166                     <td>Where <code>&lt;field&gt;</code> is greater than the filter value.</td>
167                 </tr>
168                 <tr>
169                     <td>lt</td>
170                     <td>Where <code>&lt;field&gt;</code> is less than the filter value.</td>
171                 </tr>
172                 <tr>
173                     <td>gte</td>
174                     <td>Where <code>&lt;field&gt;</code> is greater than or equal to the filter value.</td>
175                 </tr>
176                 <tr>
177                     <td>lte</td>
178                     <td>Where <code>&lt;field&gt;</code> is less than or equal to the filter value.</td>
179                 </tr>
180                 <tr>
181                     <td>like</td>
182                     <td>
183                         Where <code>&lt;field&gt;</code> is "like" the filter value. <br>
184                         <code>%</code> symbols can be used as wildcards.
185                     </td>
186                 </tr>
187             </table>
188         </td>
189         <td>
190             Filter where id is 5: <br><code>?filter[id]=5</code><br><br>
191             Filter where id is not 5: <br><code>?filter[id:ne]=5</code><br><br>
192             Filter where name contains "cat": <br><code>?filter[name:like]=%cat%</code><br><br>
193             Filter where created after 2020-01-01: <br><code>?filter[created_at:gt]=2020-01-01</code>
194         </td>
195     </tr>
196 </table>
197
198 <hr>
199
200 <h5 id="error-handling" class="text-mono mb-m">Error Handling</h5>
201 <p>
202     Successful responses will return a 200 or 204 HTTP response code. Errors will return a 4xx or a 5xx HTTP response code depending on the type of error. Errors follow a standard format as shown below. The message provided may be translated depending on the configured language of the system in addition to the API users' language preference. The code provided in the JSON response will match the HTTP response code.
203 </p>
204
205 <pre><code class="language-json">{
206         "error": {
207                 "code": 401,
208                 "message": "No authorization token found on the request"
209         }
210 }
211 </code></pre>
212
213 <hr>
214
215 <h5 id="rate-limits" class="text-mono mb-m">Rate Limits</h5>
216 <p>
217     The API has built-in per-user rate-limiting to prevent potential abuse using the API.
218     By default, this is set to 180 requests per minute but this can be changed by an administrator
219     by setting an "API_REQUESTS_PER_MIN" .env option like so:
220 </p>
221
222 <pre><code class="language-bash"># The number of API requests that can be made per minute by a single user.
223 API_REQUESTS_PER_MIN=180</code></pre>
224
225 <p>
226     When the limit is reached you will receive a 429 "Too Many Attempts." error response.
227     It's generally good practice to limit requests made from your API client, where possible, to avoid
228     affecting normal use of the system caused by over-consuming system resources.
229     Keep in mind there may be other rate-limiting factors such as web-server & firewall controls.
230 </p>
231
232 <hr>
233
234 <h5 id="content-security" class="text-mono mb-m">Content Security</h5>
235 <p>
236     Many of the available endpoints will return content that has been provided by user input.
237     Some of this content may be provided in a certain data-format (Such as HTML or Markdown for page content).
238     Such content is not guaranteed to be safe so keep security in mind when dealing with such user-input.
239     In some cases, the system will apply some filtering to content in an attempt to prevent certain vulnerabilities, but
240     this is not assured to be a bullet-proof defence.
241 </p>
242 <p>
243     Within its own interfaces, unless disabled, the system makes use of Content Security Policy (CSP) rules to heavily negate
244     cross-site scripting vulnerabilities from user content. If displaying user content externally, it's advised you
245     also use defences such as CSP or the disabling of JavaScript completely.
246 </p>