Skip to content

Commit

Permalink
fix: removed extra ")" from the file (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pankaj-SinghR authored Jan 11, 2022
1 parent a4bd355 commit d2e2b51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions async-api/overview/audio/put-audio-url.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ responses = {
500: 'Something went wrong! Please contact [email protected]'
}

response = requests.request("PUT", url, headers=headers, data=json.dumps(payload), params=json.dumps(params)))
response = requests.request("PUT", url, headers=headers, data=json.dumps(payload), params=json.dumps(params))

if response.status_code == 201:
# Successful API execution
Expand Down Expand Up @@ -442,4 +442,4 @@ Here value of `X` can be found in [FAQ](/docs/faq).

:::caution
You must wait for the job to complete processing before you proceed with getting the Conversation Intelligence. If you immediately make a GET request to Conversation API, it is possible that you'll receive incomplete insights. Therefore, ensure that you wait for the job to complete.
:::
:::

0 comments on commit d2e2b51

Please sign in to comment.