I'm trying to create an update frequency SLA and it is dependent on comments to the customer (not by the customer, or internal comments). Does anyone know what smart condition values I could use here?
Hello @Brady Buttrey
Please see below thread by @Walter Buggenhout
There is a smart value {{comment.internal}} which returns false if a comment if a cmment is visible to customers.
You can use it as a condition in an automation rules with the smart values condition like this:
That seems to update the SLA when customers comment on it through the portal. I only what it to be agent comments to the customer, not vise versa.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Apologies, I dont think this value is exposed by smart values, you need to make REST call to get this info. If you are interested, its the jsdPublic field within comment section.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes. You can do it within automation. But if you have not done this before, the hardest part is to gather your token info. If you have that, the rest is easy.
To gather your token, I am going to list the steps below, also reference Jira doc here.
$Text = ‘user@example.com:api_token_string’ $Bytes = [System.Text.Encoding]::UTF8.GetBytes($Text) $EncodedText = [Convert]::ToBase64String($Bytes) $EncodedText
If you can get this far. Rest is easy.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.