You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Use this to access the input data passed while manually invoking a timer trigger
const requestData = context.bindingData[context.executionContext?.functionName]
// Add the following as a pre-request script in postman while making the request
pm.request.body.update({
mode: "raw",
raw: JSON.stringify({
input: JSON.stringify(JSON.parse(pm.request.body.raw).input)
}),
options: {
raw: {
language: "json"
}
}
})
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: