Plugin Updates
Manage plugin updates. Ability to create, edit, view, and delete plugin updates.
Available Endpoints
| Method |
Path |
Description |
| GET |
/api/plugin-updates |
List updates |
| GET |
/api/plugin-updates/{product} |
View update details |
| POST |
/api/plugin-updates |
Register new update |
| PUT |
/api/plugin-updates/{product} |
Full update of an update |
| PATCH |
/api/plugin-updates/{product} |
Partial update of an update |
| DELETE |
/api/plugin-updates/{product} |
Delete an update |
Example Request
curl -X GET "https://example.com/api/plugin-updates" \
-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 |