Plugin API
Get a plugin by id
| Path | Method | Protected |
|---|---|---|
/v1/plugins/{plugin_id} | GET | Yes |
Example Response JSON
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"accountId": "3d07c219-0a88-45be-9cfc-91e9d095a1e9",
"name": "string",
"version": "string",
"description": "string",
"icon": "string",
"homepage": "string",
"spec": {
"type": "ComponentTransformer",
"providedWitPackage": "string",
"jsonSchema": null,
"validateUrl": "string",
"transformUrl": "string"
}
}Delete a plugin
| Path | Method | Protected |
|---|---|---|
/v1/plugins/{plugin_id} | DELETE | Yes |
Example Response JSON
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"accountId": "3d07c219-0a88-45be-9cfc-91e9d095a1e9",
"name": "string",
"version": "string",
"description": "string",
"icon": "string",
"homepage": "string",
"spec": {
"type": "ComponentTransformer",
"providedWitPackage": "string",
"jsonSchema": null,
"validateUrl": "string",
"transformUrl": "string"
}
}Plugin API Errors
| Status Code | Description | Body |
|---|---|---|
| 400 | Invalid request, returning with a list of issues detected in the request | {"errors":["string"]} |
| 401 | Unauthorized request | {"error":"string"} |
| 403 | Forbidden Request | {"error":"string"} |
| 404 | Entity not found | {"error":"string"} |
| 409 | {"error":"string"} | |
| 422 | Limits of the plan exceeded | {"error":"string"} |
| 500 | Internal server error | {"error":"string"} |