Skip to content

getSettings

GET
Use dark colors for code blocksCopy
1
/{orgId}/{itemId}/settings
Get 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

NameTypeRequired
tokenstring¦null

Path parameters

NameTypeRequired
orgIdstring
itemIdstring

Response status

StatusMeaningDescriptionSchema
200OK

success

DataStoreSettings
400Bad Request

invalid object

WorkflowJsonExceptionDTO

Examples

Request

Use dark colors for code blocksCopy
1
2
3
# You can also use wget
curl -X GET /{orgId}/{itemId}/settings \
  -H 'Authorization: Bearer <YOUR_TOKEN>'

Response

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
{
  "settings": [
    {
      "propName": "string",
      "value": "string",
      "encrypted": true
    }
  ]
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.