Skip to content

evaluateArcade

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

Query parameters

NameTypeRequired
tokenstring¦null

Body parameters

Supported content types: application/json

Type: ArcadeExpression

An arcade expression evaluator object defining the context type and the jobId to be evaluated.

NameTypeRequiredDefault value
contextJobArcadeExpressionContext
expressionstring
parseModestring
contextTypestringJobContext

parseMode

Enumerated values

Standard
Click to copy
URL
Click to copy
Query
Click to copy

contextType

Default
JobContext

Enumerated values

BaseContext
Click to copy
JobContext
Click to copy

Path parameters

NameTypeRequired
orgIdstring
itemIdstring

Response status

StatusMeaningDescriptionSchema
200OK

Dynamic value based on the expression during execution.

ArcadeExpressionResult
500Internal Server Error

error

WorkflowJsonExceptionDTO

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 'Authorization: Bearer <YOUR_TOKEN>' \
  --data '{"context":{"jobId":"string"},"expression":"string","parseMode":"Standard","contextType":"BaseContext"}'

Response

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

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