This resource address creates a new amp in the Security database.
URL Parameters | |
---|---|
format | The format of the posted data. Can be either
html , json , or xml (default). This value overrides
the Accept header if both are present. |
Upon success, MarkLogic Server returns status code 201 (Created). If the privilege already exists or if the payload is malformed, a status code of 400 (Bad Request) is returned. A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.
manage-admin
and security
rolehttp://marklogic.com/xdmp/privileges/manage
http://marklogic.com/xdmp/privileges/manage-admin
http://marklogic.com/xdmp/privileges/create-amp
http://marklogic.com/xdmp/privileges/admin/database
manage
role, http://marklogic.com/xdmp/privileges/admin/create-amp
plus one of the following granular privileges:
http://marklogic.com/xdmp/privileges/admin/database
http://marklogic.com/xdmp/privileges/admin/database/database-ID
http://marklogic.com/xdmp/privileges/admin/database/amp/database-ID
The structure of the data in the request body is as follows. All of the properties are required. If the module is on the filesystem, use the empty string for the modules database.
local-name
namespace
document-uri
modules-database
roles
This is a complex structure with the following children:
role
newamp.json { "namespace": "http://example.com/uri", "local-name": "local", "document-uri": "/module/path/name", "modules-database": "", "role": [ "a", "b", "c" ] } curl -X POST --anyauth -u admin:admin -H "Content-Type:application/json" \ -d @newamp.json http://localhost:8002/manage/v2/amps ==> Creates a new amp, named "local," in the Security database.