GET
/{orgId}/{itemId}/settings
Get all the settings configured for the workflow system. If the setting property is encrypted, the value is hidden when returned. The adminAdvanced privilege is required.
Query parameters
Name | Type | Required |
---|---|---|
token | string¦null |
Path parameters
Name | Type | Required |
---|---|---|
org | string | |
item | string |
Response status
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | success | DataStoreSettings |
400 | Bad Request | invalid object | WorkflowJsonExceptionDTO |
Examples
Request
# You can also use wget
curl -X GET /{orgId}/{itemId}/settings \
-H 'Authorization: Bearer <YOUR_TOKEN>'
Response
{
"settings": [
{
"propName": "string",
"value": "string",
"encrypted": true
}
]
}