Python
import requests url = "https://platform.reducto.ai/configure_webhook" headers = {"Authorization": "Bearer <token>"} response = requests.request("POST", url, headers=headers) print(response.text)
"<string>"
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
The response is of type string.
string
Was this page helpful?