GET
/{orgId}/{itemId}
Checks for an available item upgrade, whether unsecure webhooks are allowed, and whether a custom SMTP server has been configured for the workflow item.
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 | ItemDetails |
400 | Bad Request | error | WorkflowJsonExceptionDTO |
Examples
Request
# You can also use wget
curl -X GET /{orgId}/{itemId} \
-H 'Authorization: Bearer <YOUR_TOKEN>'
Response
{
"itemVersion": "string",
"upgradeAvailable": true,
"isOldestAllowedVersion": true,
"allowUnsecureWebhooks": true,
"customSMTP": true,
"settings": [
{
"propName": "string",
"value": "string",
"encrypted": true
}
]
}