mtls_mastercard_notifications_batch_enrollment_record_post
curl --request POST \
--url https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/batch/enrollmentrecord \
--header 'Content-Type: application/json' \
--data '
{
"batchId": "<string>",
"externalBatchId": "<string>",
"enrollmentRecordNotifications": [
"<unknown>"
]
}
'import requests
url = "https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/batch/enrollmentrecord"
payload = {
"batchId": "<string>",
"externalBatchId": "<string>",
"enrollmentRecordNotifications": ["<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({
batchId: '<string>',
externalBatchId: '<string>',
enrollmentRecordNotifications: ['<unknown>']
})
};
fetch('https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/batch/enrollmentrecord', 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/batch/enrollmentrecord"
payload := strings.NewReader("{\n \"batchId\": \"<string>\",\n \"externalBatchId\": \"<string>\",\n \"enrollmentRecordNotifications\": [\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/batch/enrollmentrecord")
.header("Content-Type", "application/json")
.body("{\n \"batchId\": \"<string>\",\n \"externalBatchId\": \"<string>\",\n \"enrollmentRecordNotifications\": [\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 Batch notifications
Endpoint used by Mastercard for batch notification, 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
/
batch
/
enrollmentrecord
mtls_mastercard_notifications_batch_enrollment_record_post
curl --request POST \
--url https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/batch/enrollmentrecord \
--header 'Content-Type: application/json' \
--data '
{
"batchId": "<string>",
"externalBatchId": "<string>",
"enrollmentRecordNotifications": [
"<unknown>"
]
}
'import requests
url = "https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/batch/enrollmentrecord"
payload = {
"batchId": "<string>",
"externalBatchId": "<string>",
"enrollmentRecordNotifications": ["<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({
batchId: '<string>',
externalBatchId: '<string>',
enrollmentRecordNotifications: ['<unknown>']
})
};
fetch('https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/batch/enrollmentrecord', 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/batch/enrollmentrecord"
payload := strings.NewReader("{\n \"batchId\": \"<string>\",\n \"externalBatchId\": \"<string>\",\n \"enrollmentRecordNotifications\": [\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/batch/enrollmentrecord")
.header("Content-Type", "application/json")
.body("{\n \"batchId\": \"<string>\",\n \"externalBatchId\": \"<string>\",\n \"enrollmentRecordNotifications\": [\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": [
{}
]
}
}Last modified on July 14, 2026
⌘I