Receive Stripe events
curl --request POST \
--url https://useorgx.com/api/v1/studio/callback \
--header 'Content-Type: application/json' \
--header 'stripe-signature: <api-key>' \
--data '{}'const options = {
method: 'POST',
headers: {'stripe-signature': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://useorgx.com/api/v1/studio/callback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://useorgx.com/api/v1/studio/callback"
payload = {}
headers = {
"stripe-signature": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"received": true
}Content Studio
Receive Stripe events
Receive signed payment events from Stripe and update the matching order.
POST
/
studio
/
callback
Receive Stripe events
curl --request POST \
--url https://useorgx.com/api/v1/studio/callback \
--header 'Content-Type: application/json' \
--header 'stripe-signature: <api-key>' \
--data '{}'const options = {
method: 'POST',
headers: {'stripe-signature': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://useorgx.com/api/v1/studio/callback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://useorgx.com/api/v1/studio/callback"
payload = {}
headers = {
"stripe-signature": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"received": true
}