The DECODE_HTML function is used to decode HTML encoded strings for a given JSONPath.

Usable: Value Fields, Context Filter

Syntax: { DECODE_HTML((PARAM_1)) }

Parameter

Type

Examples

Description

PARAM_1

JSONPath

$.value

$.issue.fields.customfield_X

The JSONPath expression representing the value that should be decoded

Value Field Example

For example, consider the following data source JSON:

{
  "value": "100 €"
}
CODE

Use the DECODE_HTML function to decode all HTML encoded elements

{ DECODE_HTML(($.value)) }
CODE

This will result in 100 €