0👍
✅
In the Python script, you’re making a POST request.
The error message from your other code says you’re making a GET request, which the endpoint doesn’t handle (hence the 405 status code).
If the Python code is successful, then you should make a POST request in your other client, too.
Source:stackexchange.com