what system is providing the timezone? is it able to also provide the timezone offset? my Workday team was able to give me the timezone offset as a calc field, and i’m able to use that with this lookup transform (this table contains all timezone offsets currently listed in the tz database):
"offset": {
"attributes": {
"table": {
"0": "-0000",
"1": "+0100",
"2": "+0200",
"3": "+0300",
"4": "+0400",
"5": "+0500",
"6": "+0600",
"7": "+0700",
"8": "+0800",
"9": "+0900",
"10": "+1000",
"11": "+1100",
"12": "+1200",
"13": "+1300",
"14": "+1400",
"-12": "-1200",
"-11": "-1100",
"-10": "-1000",
"-9.5": "-0930",
"-9": "-0900",
"-8": "-0800",
"-7": "-0700",
"-6": "-0600",
"-5": "-0500",
"-4": "-0400",
"-3.5": "-0330",
"-3": "-0300",
"-2": "-0200",
"-1": "-0100",
"3.5": "+0330",
"4.5": "+0430",
"5.5": "+0530",
"5.75": "+0545",
"6.5": "+0630",
"8.75": "+0845",
"9.5": "+0930",
"10.5": "+1030",
"12.75": "+1245",
"default": "-0000"
},
"input": {
"attributes": {
"sourceName": "Workday",
"attributeName": "Workday_Timezone__c"
},
"type": "accountAttribute"
}
},
"type": "lookup"
},
you can then append that to a string in a static transform:
"value": "${termDate}T23:59:59$offset"