This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import toBase64 from dw::core::Binaries | |
output application/java | |
var concat = "ACCOUNT-SID" ++ ":" ++ "AUTH TOKEN" | |
var base64 = toBase64(concat) | |
--- | |
{ | |
"Authorization" : "Basic " ++ base64 | |
} |