Patch a Bin
Under normal use this will be very rarely used. The idea behind making a PATCH request to a bin is to extend its life (see limits) without posting anything to a bin or reading anything from a bin.
PATCH the bin:
curl -X PATCH https://webhookbin.net/v1/bin/d49b8dc0-c321-47ec-bd5d-0fc8eeee9bd7
import requests
res = requests.patch("https://webhookbin.net/v1/bin/d49b8dc0-c321-47ec-bd5d-0fc8eeee9bd7")
print(res.text)
Response:
{
"patched": true,
"messcount": 28
}