visa_notifications_token_post
curl --request POST \
--url https://checkout.dintero.com/v1/checkout/visa/notifications/token/{api_name} \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://checkout.dintero.com/v1/checkout/visa/notifications/token/{api_name}"
payload = {}
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({})
};
fetch('https://checkout.dintero.com/v1/checkout/visa/notifications/token/{api_name}', 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/checkout/visa/notifications/token/{api_name}"
payload := strings.NewReader("{}")
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/checkout/visa/notifications/token/{api_name}")
.header("Content-Type", "application/json")
.body("{}")
.asString();{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}visa-notifications
Visa token notifications
Endpoint used by Visa for token notifications. The request is forwarded to Dintero PSP service.
POST
https://checkout.dintero.com/v1
/
checkout
/
visa
/
notifications
/
token
/
{api_name}
visa_notifications_token_post
curl --request POST \
--url https://checkout.dintero.com/v1/checkout/visa/notifications/token/{api_name} \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://checkout.dintero.com/v1/checkout/visa/notifications/token/{api_name}"
payload = {}
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({})
};
fetch('https://checkout.dintero.com/v1/checkout/visa/notifications/token/{api_name}', 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/checkout/visa/notifications/token/{api_name}"
payload := strings.NewReader("{}")
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/checkout/visa/notifications/token/{api_name}")
.header("Content-Type", "application/json")
.body("{}")
.asString();{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}Headers
Path Parameters
Body
application/json
Object with notification payload. Contents of payload depends on the notification type.
The body is of type object.
Response
No content, the service completed successfully and there is no content to be returned.
Last modified on August 19, 2026
⌘I