This resource address returns the configuration properties of the named alert trigger.
URL Parameters | |
---|---|
format | The format of the posted data. Can be either
json or xml (default). This value overrides the Accept header if
both are present. |
Upon success, MarkLogic Server returns status code 200 (OK). The response body contains the requested data. If the trigger does not exist, 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-user
role, or the following
privilege: http://marklogic.com/xdmp/privileges/manage
The structure of the output returned from this REST API is as follows:
id
name
description
event
This is a complex structure with the following children:
data-event
This is a complex structure with the following children:
document-scope
This is a complex structure with the following children:
uri
collection-scope
This is a complex structure with the following children:
uri
directory-scope
This is a complex structure with the following children:
uri
depth
document-content
This is a complex structure with the following children:
update-kind
any-property-content
any-custom-property-content
property-content
This is a complex structure with the following children:
property-name
This is a complex structure with the following children:
namespace-uri
localname
when
database-online-event
This is a complex structure with the following children:
user
user-id
user-name
module
module-db
module-root
enabled
recursive
task-priority
permissions
This is a complex structure with the following children:
permission
This is a complex structure with the following children:
role-name
capability
curl -X GET --anyauth -u admin:admin --header "Content-Type:application/json" \ http://localhost:8002/manage/v2/databases/myTriggers/triggers/my-trigger/properties ==> Returns the properties of the "my-trigger" trigger for the myTriggers database.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.