checkout_netaxept_webhooks_post
curl --request POST \
--url https://checkout.dintero.com/v1/events/gateways/netaxept/transaction/hooks \
--header 'Content-Type: application/json' \
--data '
{
"TransactionId": "<string>"
}
'import requests
url = "https://checkout.dintero.com/v1/events/gateways/netaxept/transaction/hooks"
payload = { "TransactionId": "<string>" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({TransactionId: '<string>'})
};
fetch('https://checkout.dintero.com/v1/events/gateways/netaxept/transaction/hooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://checkout.dintero.com/v1/events/gateways/netaxept/transaction/hooks"
payload := strings.NewReader("{\n \"TransactionId\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://checkout.dintero.com/v1/events/gateways/netaxept/transaction/hooks")
.header("Content-Type", "application/json")
.body("{\n \"TransactionId\": \"<string>\"\n}")
.asString();{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}netaxept
Handle Netaxept callback
POST
https://checkout.dintero.com/v1
/
events
/
gateways
/
netaxept
/
transaction
/
hooks
checkout_netaxept_webhooks_post
curl --request POST \
--url https://checkout.dintero.com/v1/events/gateways/netaxept/transaction/hooks \
--header 'Content-Type: application/json' \
--data '
{
"TransactionId": "<string>"
}
'import requests
url = "https://checkout.dintero.com/v1/events/gateways/netaxept/transaction/hooks"
payload = { "TransactionId": "<string>" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({TransactionId: '<string>'})
};
fetch('https://checkout.dintero.com/v1/events/gateways/netaxept/transaction/hooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://checkout.dintero.com/v1/events/gateways/netaxept/transaction/hooks"
payload := strings.NewReader("{\n \"TransactionId\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://checkout.dintero.com/v1/events/gateways/netaxept/transaction/hooks")
.header("Content-Type", "application/json")
.body("{\n \"TransactionId\": \"<string>\"\n}")
.asString();{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}Body
application/json
Content of webhook event
Response
webhook handled
Last modified on July 10, 2026
⌘I