Skip to content

Commit

Permalink
Merge pull request #70 from Bandwidth/SWI-5499
Browse files Browse the repository at this point in the history
SWI-5499 `post` -> `put`
  • Loading branch information
ajrice6713 authored Jun 24, 2024
2 parents 708bb4a + 893f5b8 commit 754a7ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Voice/Controllers/APIController.php
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ public function modifyCallBxml(
Request::timeout($this->config->getTimeout());

// and invoke the API call request to fetch the response
$response = Request::post($_queryUrl, $_headers, $body);
$response = Request::put($_queryUrl, $_headers, $body);

$_httpResponse = new HttpResponse($response->code, $response->headers, $response->raw_body);
$_httpContext = new HttpContext($_httpRequest, $_httpResponse);
Expand Down

0 comments on commit 754a7ee

Please sign in to comment.