Rotate the signing secret
curl --request POST \
--url https://api.vambe.me/api/ecommerce-app/{id}/rotate-secretconst options = {method: 'POST'};
fetch('https://api.vambe.me/api/ecommerce-app/{id}/rotate-secret', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/ecommerce-app/{id}/rotate-secret"
response = requests.post(url)
print(response.text)App management API
Rotate the signing secret
Generates a new signing secret for webhook HMAC signatures. The previous secret stops being valid immediately.
POST
/
api
/
ecommerce-app
/
{id}
/
rotate-secret
Rotate the signing secret
curl --request POST \
--url https://api.vambe.me/api/ecommerce-app/{id}/rotate-secretconst options = {method: 'POST'};
fetch('https://api.vambe.me/api/ecommerce-app/{id}/rotate-secret', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/ecommerce-app/{id}/rotate-secret"
response = requests.post(url)
print(response.text)Generates a new
signing_secret for webhook HMAC signatures and returns it. The
previous secret stops being valid immediately, so update your signing code
before sending the next webhook.Path Parameters
Response
201 - undefined
Was this page helpful?
