Last updated 17 days ago
Was this helpful?
List all plugins created by the user
/engine
Results per page
The number of items to skip before starting to collect the result set
curl -L \ --url 'https://api.bytenite.com/v1/dev/engine' \ --header 'Authorization: YOUR_API_KEY'
{ "plugins": [ { "id": "text", "owner": "text", "createdAt": "2025-02-22T04:01:27.124Z", "updatedAt": "2025-02-22T04:01:27.124Z", "name": "text", "version": { "major": 1, "minor": 0, "tag": 0 }, "description": "text", "type": "text" } ] }
Upload a plugin to the server
The plugin binary
curl -L \ --request POST \ --url 'https://api.bytenite.com/v1/dev/engine' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json'
{ "plugin": { "id": "text", "owner": "text", "createdAt": "2025-02-22T04:01:27.124Z", "updatedAt": "2025-02-22T04:01:27.124Z", "name": "text", "version": { "major": 1, "minor": 0, "tag": 0 }, "description": "text", "type": "text" } }
Get a plugin by id
/engine/{id}
curl -L \ --request POST \ --url 'https://api.bytenite.com/v1/dev/engine/{id}' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json'