Plugin settings

View as Markdown
GET /plugin/settings

This endpoint returns the plugin settings.

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • AccessControlHeaderEnabled boolean
    • ShouldCreateThumbnails boolean
  • 500 application/json

    Internal server error, Unknown error

    Hide response attributes Show response attributes object
    • Response string
    • Error string
    • StatusCode integer
    • Success boolean
    • Type string
GET /plugin/settings
curl \
 --request GET 'http://localhost:1888/v2/api/plugin/settings'
Response examples (200)
{
  "AccessControlHeaderEnabled": true,
  "ShouldCreateThumbnails": true
}
Response examples (500)
{
  "Response": "string",
  "Error": "Unknown error",
  "StatusCode": 500,
  "Success": false,
  "Type": "API"
}