Overview
public. Get list of available extensions
Query Parameters
| Name | Type | Description |
| format | {html, body}? | output format (default: html) |
Return Codes
| Name | Value | Description |
| BadRequest | 400 | Invalid input parameter or request body |
| Forbidden | 403 | User must be logged in |
| Ok | 200 | The request completed successfully |
Message Format
Output:
Content-type=text/plain if format=body is specfied
Content-type=text/html if format=html is specfied
Code Samples
The following code example retrieves an html document with all registered extensions on the site:
Plug p = Plug.New("http://deki-hayes/@api/deki");
p.At("users", "authenticate").WithCredentials("admin", "password").Get();
p.At("site", "functions").Get();