Arcu
11/29/2024, 12:03 PMVapi
11/29/2024, 12:06 PMAuthorization
header to Bearer <your_token>
.
For example, if you're making an HTTP request, it would look something like this:
http
GET /your-endpoint
Host: your-api-host.com
Authorization: Bearer your_actual_bearer_token
Make sure to replace your_actual_bearer_token
with the token you retrieved from the Dashboard. If you're using a tool or library to make the API call, refer to its documentation on how to set headers for requests.
If you need to perform this action through a specific function or tool within the VAPI, please provide more details or the name of the function you're trying to use, and I can guide you further!Vapi
11/29/2024, 12:06 PMArcu
11/29/2024, 12:07 PMVapi
11/29/2024, 12:08 PMjson
{
"headers": {
"Authorization": "Bearer your_actual_bearer_token"
}
}
Replace your_actual_bearer_token
with the actual token you intend to use.
If you need to set this up for a specific tool within VAPI and require assistance with the configuration, please provide the name of the tool or the relevant details, and I'll be happy to help you with the specific steps.