From 5aaa5155efd0e224076349939a678e23bf1cd04a Mon Sep 17 00:00:00 2001 From: Marcelo Hossomi Date: Tue, 26 Sep 2023 16:26:14 -0300 Subject: [PATCH 1/2] Fix voice API version in URL --- site/docs/voice/modifyInProgressCallGuide.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/docs/voice/modifyInProgressCallGuide.mdx b/site/docs/voice/modifyInProgressCallGuide.mdx index 6490d249b..6cf317a55 100644 --- a/site/docs/voice/modifyInProgressCallGuide.mdx +++ b/site/docs/voice/modifyInProgressCallGuide.mdx @@ -155,7 +155,7 @@ In this example, the BXML that is in the `redirectUrl` will immediately replace ```payload //Note: remember to add auth for your application if needed! -POST https://voice.bandwidth.com/api/v60/accounts/{YOUR_ACCOUNT_ID}/calls/{THE_CALL_ID} +POST https://voice.bandwidth.com/api/v2/accounts/{YOUR_ACCOUNT_ID}/calls/{THE_CALL_ID} { "redirectUrl": "/goodbyeMessage", } @@ -178,7 +178,7 @@ POST https://voice.bandwidth.com/api/v60/accounts/{YOUR_ACCOUNT_ID}/calls/{THE_C ```cURL //Note: remember to add auth for your application if needed! -curl 'https://voice.bandwidth.com/api/v60/accounts/{YOUR_ACCOUNT_ID}/calls/{THE_CALL_ID}' \ +curl 'https://voice.bandwidth.com/api/v2/accounts/{YOUR_ACCOUNT_ID}/calls/{THE_CALL_ID}' \ -X POST \ -u {BANDWIDTH_USERNAME}:{BANDWIDTH:PASSWORD} \ -H 'Content-Type: application/json' \ From 64178269706cf817db80b738bf06e0ddb94c16ca Mon Sep 17 00:00:00 2001 From: Marcelo Hossomi Date: Tue, 26 Sep 2023 16:29:16 -0300 Subject: [PATCH 2/2] VAPI-1596