Builder
Get draft
Gets the draft for the specified plugin.
GET
Authorizations
Builder API requests require a Bearer header with an editor token. Obtain an editor token from the Adminstrative API.
Path Parameters
The root compute environment (i.e. the vendor)
The vendor's user
The plugin namespace (vendor-defined groups of plugins)
The plugin name (user-defined)
Response
200 - application/json
OK
The language of a plugin
Example:
"rust"
The source code of a plugin
Example:
" ```rust\n import { logInfo } from \"@suborbital/suborbital\"\n\n export function run(input: ArrayBuffer): ArrayBuffer {\n let inStr = String.UTF8.decode(input)\n\n let out = \"Hello there, \" + inStr\n\n return String.UTF8.encode(out)\n }\n ```\n"
An array of tests