Skip to content

Latest commit

 

History

History
72 lines (62 loc) · 2.07 KB

plugins.rst

File metadata and controls

72 lines (62 loc) · 2.07 KB

plugins

.. seealso:: :ref:`to_go_plugins`

GET

Retrieves the list of configured enabled Traffic Ops plugins.

Auth. Required:Yes
Roles Required:None
Permissions Required:PLUGIN:READ
Response Type:Array

Request Structure

GET /api/4.0/plugins HTTP/1.1
Host: trafficops.infra.ciab.test
User-Agent: curl/7.47.0
Accept: */*
Cookie: mojolicious=...

Response Structure

description:A short description of the plugin.
name:The name of the plugin.
version:A (hopefully) semantic version number describing the version of the plugin.
HTTP/1.1 200 OK
Access-Control-Allow-Credentials: true
Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept
Access-Control-Allow-Methods: POST,GET,OPTIONS,PUT,DELETE
Access-Control-Allow-Origin: *
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Content-Type: application/json
Date: Tue, 11 Dec 2018 20:51:48 GMT
X-Server-Name: traffic_ops_golang/
Set-Cookie: mojolicious=...; Path=/; Expires=Mon, 18 Nov 2019 17:40:54 GMT; Max-Age=3600; HttpOnly
Vary: Accept-Encoding
Whole-Content-Sha512: n73jg9XR4V5Cwqq56Rf3wuIi99k3mM5u2NAjcZ/gQBu8jvAFymDlnZqKeJ+wTll1vjIsHpXCOVXV7+5UGakLgA==
Transfer-Encoding: chunked

{ "response": [
        {
                "name": "helloworld",
                "version": "1.0.0",
                "description": "configuration plugin to run at startup"
        }
]}