Skip to content

getWorkflowItem

GET
Use dark colors for code blocksCopy
1
/{orgId}/{itemId}
Get workflow item information

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

NameTypeRequired
tokenstring¦null

Path parameters

NameTypeRequired
orgIdstring
itemIdstring

Response status

StatusMeaningDescriptionSchema
200OK

success

ItemDetails
400Bad Request

error

WorkflowJsonExceptionDTO

Examples

Request

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

Response

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "itemVersion": "string",
  "upgradeAvailable": true,
  "isOldestAllowedVersion": true,
  "allowUnsecureWebhooks": true,
  "customSMTP": true,
  "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.