Hi, I am trying to create ticket and fill fields according to this data. i want to use "hire date" and "last name" . i tried few smart values but not working
{{webhookData.employees.LastName}}
{{webhookData.Last.Name}}
{{webhookData.Body.LastName}}
{{webhookData.Body.Last.Name}}
Your incoming variables has spaces in them so try this to get the last name and hire date:
{{webhookData.Body."Last Name"}}
{{webhookData.Body."Hire Date"}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How about {{webhookData.fields."Last Name"}} and {{webhookData.fields."Hire Date"}}?
Basically you have to figure out the data coming in, {{webhookData.fields}} should give you both values you are looking for based on your log.
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.
What data do you get if you use {{webhookData.employees}} in a log action? Basically just go down the levels in the JSON file that is coming into the webhook to figure out what gives you the data.
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.