evaluateArcade

Click to copy

Arcade expression evaluator

Provides results for dynamic properties based on expression that can be evaluated during run time without having to build them into the job template or search. If any of the properties are not defined on the context, the arcade expression evaluator will return an empty result. The job context should be used to evaluate job specific properties, and the base context should be used to evaluate user level properties. The adminBasic or adminAdvanced privilege is required.

Arcade expression evaluator parameters:

ParameterDescriptionData Type
expressionRequired. Define the arcade expression you want to evaluateString
contextTypeRequired. Define the context of the expression. BaseContext is used for the user context. JobContext can also be specified for job specific properties.String
contextOptional depending on contextType. Required for JobContext. Input the jobId in the context object for which you want to find the dynamic property value defined on the job during run time.Object
parseModeOptional. Can be set to Standard, URL, or Query. If URL, the returned result will be url encoded. If Query, the returned result will have each value in quotes.String

Body parameter

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
{
  "context": {
    "jobId": "string"
  },
  "expression": "string",
  "parseMode": "Standard",
  "contextType": "BaseContext"
}

Query parameters

NameTypeRequired

token

string

Path parameters

NameTypeRequired

orgId

string

itemId

string

Examples

Request

Use dark colors for code blocksCopy
1
2
3
4
5
# You can also use wget
curl -X POST /{orgId}/{itemId}/evaluateArcade \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

Response

200 Response

Use dark colors for code blocksCopy
1
2
3
{
  "result": "string"
}
StatusMeaningDescriptionSchema

200

OK

Dynamic value based on the expression during execution.

ArcadeExpressionResult

500

Internal Server Error

error

WorkflowJsonExceptionDTO

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