mtls_mastercard_notifications_card_post
curl --request POST \
--url https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/card \
--header 'Content-Type: application/json' \
--data '
{
"encryptedDigitalCardUpdateNotifications": "<string>",
"digitalCardUpdateNotifications": [
"<unknown>"
]
}
'import requests
url = "https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/card"
payload = {
"encryptedDigitalCardUpdateNotifications": "<string>",
"digitalCardUpdateNotifications": ["<unknown>"]
}
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({
encryptedDigitalCardUpdateNotifications: '<string>',
digitalCardUpdateNotifications: ['<unknown>']
})
};
fetch('https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/card', 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/mtls/v1/checkout/mastercard/notifications/card"
payload := strings.NewReader("{\n \"encryptedDigitalCardUpdateNotifications\": \"<string>\",\n \"digitalCardUpdateNotifications\": [\n \"<unknown>\"\n ]\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/mtls/v1/checkout/mastercard/notifications/card")
.header("Content-Type", "application/json")
.body("{\n \"encryptedDigitalCardUpdateNotifications\": \"<string>\",\n \"digitalCardUpdateNotifications\": [\n \"<unknown>\"\n ]\n}")
.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": [
{}
]
}
}mtls-mastercard
Mastercard card notifications
Endpoint used by Mastercard for token notifications, via ALB mTLS passthrough.
The request is forwarded to Dintero PSP service after verifying mTLS client certificate.
POST
https://checkout.dintero.com/v1
/
mtls
/
v1
/
checkout
/
mastercard
/
notifications
/
card
mtls_mastercard_notifications_card_post
curl --request POST \
--url https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/card \
--header 'Content-Type: application/json' \
--data '
{
"encryptedDigitalCardUpdateNotifications": "<string>",
"digitalCardUpdateNotifications": [
"<unknown>"
]
}
'import requests
url = "https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/card"
payload = {
"encryptedDigitalCardUpdateNotifications": "<string>",
"digitalCardUpdateNotifications": ["<unknown>"]
}
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({
encryptedDigitalCardUpdateNotifications: '<string>',
digitalCardUpdateNotifications: ['<unknown>']
})
};
fetch('https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/card', 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/mtls/v1/checkout/mastercard/notifications/card"
payload := strings.NewReader("{\n \"encryptedDigitalCardUpdateNotifications\": \"<string>\",\n \"digitalCardUpdateNotifications\": [\n \"<unknown>\"\n ]\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/mtls/v1/checkout/mastercard/notifications/card")
.header("Content-Type", "application/json")
.body("{\n \"encryptedDigitalCardUpdateNotifications\": \"<string>\",\n \"digitalCardUpdateNotifications\": [\n \"<unknown>\"\n ]\n}")
.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
Body
application/json
Response
No content, the service completed successfully and there is no content to be returned.
Last modified on July 14, 2026
⌘I