This page describes the REST endpoints that are added by the @PLUGIN@ plugin.
Please also take note of the general information on the REST API.
POST /config/server/@PLUGIN@~serviceusers/{username}
Creates a service user.
The public SSH key for creating the service user must be specified in the request body as a ServiceUserInput entity.
Caller must be a member of a group that is granted the ‘Create Service User’ capability (provided by this plugin) or the ‘Administrate Server’ capability.
PUT /config/server/@PLUGIN@~serviceusers/JenkinsVoter HTTP/1.0 Content-Type: application/json;charset=UTF-8 { "ssh_key": "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA0T...YImydZAw==" }
As response a detailed AccountInfo entity is returned that describes the created account.
HTTP/1.1 201 Created Content-Disposition: attachment Content-Type: application/json;charset=UTF-8 )]}' { "_account_id": 1000195, "name": "JenkinsVoter", "avatars": [] }
GET /config/server/@PLUGIN@~messages
Gets help messages to be displayed for the service user creation in the Web UI.
GET /config/server/@PLUGIN@~messages HTTP/1.0
As response a MessagesInfo entity is returned that contains the messages.
HTTP/1.1 200 OK Content-Disposition: attachment Content-Type: application/json;charset=UTF-8 )]}' { "on_success": "Don\u0027t forget to assign \u003ca href\u003d\"Documentation/access-control.html\"\u003eaccess rights\u003c/a\u003e to the service user." }
PUT /config/server/@PLUGIN@~messages
Sets the help messages that are displayed for the service user creation in the Web UI.
The new messages must be specified as a MessagesInfo entity in the request body. Not setting a message leaves the message unchanged.
PUT /config/server/@PLUGIN@~messages HTTP/1.0 Content-Type: application/json;charset=UTF-8 { "info": "Please find more information about service users in the <a href\"wiki.html\">wiki</a>." }
The MessagesInfo
entity contains help messages that should be displayed for the service user creation in the Web UI.
The ServiceUserInput
entity contains options for creating a service user.
Part of Gerrit Code Review