Headers not being added to dynamic handoff tool request

With the handoff tool, we are able to request a handoff based off of a dynamic server endpoint. The documentation says that we should be able to add in headers as key-value pairs, but those headers are not coming through on the request

{
type: "handoff",
destinations: [
{
type: "dynamic",
server: {
url: "<URL>",
headers: {
Authorization: "Bearer auth-token",
},
},
description: "English",
},
],
function: {
name: "handoff_to_english",
},
},
Was this page helpful?