This resource address creates a new protected collection 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 protected collection 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/collection-get-permissions
The structure of the data in the request body is shown here. The collection
and permissions
properties are required.
Note: The properties described here are for XML payloads. In general they are the same for
JSON, with the exception that, in JSON, permissions
is expressed in singular
form. For example, in JSON, permissions
is instead permission
and
the format is: "permission":[{"role-name":"name", "capability":"cap"}]
.
collection
permissions
This is a complex structure with the following children:
permission
This is a complex structure with the following children:
role-name
capability
cat collection.json ==> { "collection": "http://example.org", "permission": [ { "role-name": "view-admin", "capability": "read" } ] } curl -X POST --anyauth -u admin:admin --header "Content-Type:application/json" \ -d @collection.json http://localhost:8002/manage/v2/protected-collections ==> Creates a collection with the URI "http://example.org" in the Security database.