Create a plugin Run in API Explorer

POST /plugins/create

Query parameters

  • name string Required

    The name of the plugin. The :latest tag is optional, and is the default if omitted.

application/x-tar

Body

Path to tar containing plugin rootfs and manifest

string(binary) string(binary)

Responses

  • 204

    no error

  • 500 application/json

    server error

    Hide response attribute Show response attribute object
    • message string Required

      The error message.

POST /plugins/create
curl \
 --request POST 'http://api.example.com/v1.49/plugins/create?name=string' \
 --header "Content-Type: application/x-tar" \
 --data-binary '@file'
Response examples (500)
{
  "message": "Something went wrong."
}
Response examples (500)
{
  "message": "Something went wrong."
}