@@ -14,6 +14,7 @@ If the package doesn't fit your needs, you might take a look at the alternative
1414
1515## Table of Contents
1616
17+ * [ Table of Contents] ( #table-of-contents )
1718 * [ Install using Composer] ( #install-using-composer )
1819 * [ Initializing a client] ( #initializing-a-client )
1920 * [ Quick intro] ( #quick-intro )
@@ -26,8 +27,11 @@ If the package doesn't fit your needs, you might take a look at the alternative
2627 * [ Editing records] ( #editing-records )
2728 * [ Holdings and items] ( #holdings-and-items )
2829 * [ Items] ( #items )
29- * [ Users and loans] ( #users-and-loans )
30+ * [ Users, loans, fees and requests] ( #users-loans-fees-and-requests )
31+ * [ Search] ( #search )
3032 * [ Loans] ( #loans )
33+ * [ Fees] ( #fees )
34+ * [ Requests] ( #requests )
3135 * [ Analytics reports] ( #analytics-reports )
3236 * [ Column names] ( #column-names )
3337 * [ Filters] ( #filters )
@@ -281,7 +285,7 @@ There is a special entrypoint to retrieve an item by barcode:
281285$item = $alma->items->fromBarcode('92nf02526');
282286```
283287
284- ## Users, loans and fees
288+ ## Users, loans, fees and requests
285289
286290** Note** : Editing is not yet implemented.
287291
@@ -321,6 +325,18 @@ foreach ($user->fees as $fee) {
321325}
322326```
323327
328+ ### Requests
329+
330+ Example:
331+
332+ ``` php
333+ foreach ($user->requests as $request) {
334+ echo json_encode($request, JSON_PRETTY_PRINT);
335+ }
336+ ```
337+
338+ Requests can also be retrieved from a ` Bib ` object or an ` Item ` object.
339+
324340## Analytics reports
325341
326342To retrieve the results from a single report:
0 commit comments