Plugins
Manage system plugins. Ability to create, edit, view, and delete plugins.
Available Endpoints
| Method |
Path |
Description |
| GET |
/api/plugins |
List plugins |
| GET |
/api/plugins/{plugin} |
View plugin details |
| POST |
/api/plugins |
Install new plugin |
| PUT |
/api/plugins/{plugin} |
Full update of a plugin |
| PATCH |
/api/plugins/{plugin} |
Partial update of a plugin |
| DELETE |
/api/plugins/{plugin} |
Delete a plugin |
Example Request
curl -X GET "https://example.com/api/plugins" \
-H "Authorization: Bearer {token}"
Success Response (200)
{
"records": [],
"meta": {
"total": 0,
"current_page": 1,
"per_page": 20
}
}
Errors
| Code |
Description |
| 401 |
Invalid token |
| 403 |
Access denied |
| 404 |
Record not found |
| 422 |
Validation error |