mtls_mastercard_notifications_dpa_post
curl --request POST \
--url https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/dpa \
--header 'Content-Type: application/json' \
--data '
{
"batchId": "<string>",
"batchStatus": "<string>",
"items": [
{
"action": "<string>",
"serviceId": "<string>",
"trid": "<string>",
"status": "<string>",
"programName": "<string>",
"error": {
"status": 123,
"reason": "<string>",
"message": "<string>",
"errordetail": [
{
"message": "<string>",
"reason": "<string>",
"source": "<string>",
"sourceType": "<string>"
}
]
},
"dpaResults": [
{
"dpaName": "<string>",
"srcDpaId": "<string>",
"status": "<string>",
"error": {
"status": 123,
"reason": "<string>",
"message": "<string>",
"errordetail": [
{
"message": "<string>",
"reason": "<string>",
"source": "<string>",
"sourceType": "<string>"
}
]
}
}
]
}
]
}
'import requests
url = "https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/dpa"
payload = {
"batchId": "<string>",
"batchStatus": "<string>",
"items": [
{
"action": "<string>",
"serviceId": "<string>",
"trid": "<string>",
"status": "<string>",
"programName": "<string>",
"error": {
"status": 123,
"reason": "<string>",
"message": "<string>",
"errordetail": [
{
"message": "<string>",
"reason": "<string>",
"source": "<string>",
"sourceType": "<string>"
}
]
},
"dpaResults": [
{
"dpaName": "<string>",
"srcDpaId": "<string>",
"status": "<string>",
"error": {
"status": 123,
"reason": "<string>",
"message": "<string>",
"errordetail": [
{
"message": "<string>",
"reason": "<string>",
"source": "<string>",
"sourceType": "<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({
batchId: '<string>',
batchStatus: '<string>',
items: [
{
action: '<string>',
serviceId: '<string>',
trid: '<string>',
status: '<string>',
programName: '<string>',
error: {
status: 123,
reason: '<string>',
message: '<string>',
errordetail: [
{
message: '<string>',
reason: '<string>',
source: '<string>',
sourceType: '<string>'
}
]
},
dpaResults: [
{
dpaName: '<string>',
srcDpaId: '<string>',
status: '<string>',
error: {
status: 123,
reason: '<string>',
message: '<string>',
errordetail: [
{
message: '<string>',
reason: '<string>',
source: '<string>',
sourceType: '<string>'
}
]
}
}
]
}
]
})
};
fetch('https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/dpa', 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/dpa"
payload := strings.NewReader("{\n \"batchId\": \"<string>\",\n \"batchStatus\": \"<string>\",\n \"items\": [\n {\n \"action\": \"<string>\",\n \"serviceId\": \"<string>\",\n \"trid\": \"<string>\",\n \"status\": \"<string>\",\n \"programName\": \"<string>\",\n \"error\": {\n \"status\": 123,\n \"reason\": \"<string>\",\n \"message\": \"<string>\",\n \"errordetail\": [\n {\n \"message\": \"<string>\",\n \"reason\": \"<string>\",\n \"source\": \"<string>\",\n \"sourceType\": \"<string>\"\n }\n ]\n },\n \"dpaResults\": [\n {\n \"dpaName\": \"<string>\",\n \"srcDpaId\": \"<string>\",\n \"status\": \"<string>\",\n \"error\": {\n \"status\": 123,\n \"reason\": \"<string>\",\n \"message\": \"<string>\",\n \"errordetail\": [\n {\n \"message\": \"<string>\",\n \"reason\": \"<string>\",\n \"source\": \"<string>\",\n \"sourceType\": \"<string>\"\n }\n ]\n }\n }\n ]\n }\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/dpa")
.header("Content-Type", "application/json")
.body("{\n \"batchId\": \"<string>\",\n \"batchStatus\": \"<string>\",\n \"items\": [\n {\n \"action\": \"<string>\",\n \"serviceId\": \"<string>\",\n \"trid\": \"<string>\",\n \"status\": \"<string>\",\n \"programName\": \"<string>\",\n \"error\": {\n \"status\": 123,\n \"reason\": \"<string>\",\n \"message\": \"<string>\",\n \"errordetail\": [\n {\n \"message\": \"<string>\",\n \"reason\": \"<string>\",\n \"source\": \"<string>\",\n \"sourceType\": \"<string>\"\n }\n ]\n },\n \"dpaResults\": [\n {\n \"dpaName\": \"<string>\",\n \"srcDpaId\": \"<string>\",\n \"status\": \"<string>\",\n \"error\": {\n \"status\": 123,\n \"reason\": \"<string>\",\n \"message\": \"<string>\",\n \"errordetail\": [\n {\n \"message\": \"<string>\",\n \"reason\": \"<string>\",\n \"source\": \"<string>\",\n \"sourceType\": \"<string>\"\n }\n ]\n }\n }\n ]\n }\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 DPA notifications
Endpoint used by Mastercard for merchant DPA notifications, via ALB mTLS passthrough.
Publishes the notification to auth service after verifying mTLS client certificate.
POST
https://checkout.dintero.com/v1
/
mtls
/
v1
/
checkout
/
mastercard
/
notifications
/
dpa
mtls_mastercard_notifications_dpa_post
curl --request POST \
--url https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/dpa \
--header 'Content-Type: application/json' \
--data '
{
"batchId": "<string>",
"batchStatus": "<string>",
"items": [
{
"action": "<string>",
"serviceId": "<string>",
"trid": "<string>",
"status": "<string>",
"programName": "<string>",
"error": {
"status": 123,
"reason": "<string>",
"message": "<string>",
"errordetail": [
{
"message": "<string>",
"reason": "<string>",
"source": "<string>",
"sourceType": "<string>"
}
]
},
"dpaResults": [
{
"dpaName": "<string>",
"srcDpaId": "<string>",
"status": "<string>",
"error": {
"status": 123,
"reason": "<string>",
"message": "<string>",
"errordetail": [
{
"message": "<string>",
"reason": "<string>",
"source": "<string>",
"sourceType": "<string>"
}
]
}
}
]
}
]
}
'import requests
url = "https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/dpa"
payload = {
"batchId": "<string>",
"batchStatus": "<string>",
"items": [
{
"action": "<string>",
"serviceId": "<string>",
"trid": "<string>",
"status": "<string>",
"programName": "<string>",
"error": {
"status": 123,
"reason": "<string>",
"message": "<string>",
"errordetail": [
{
"message": "<string>",
"reason": "<string>",
"source": "<string>",
"sourceType": "<string>"
}
]
},
"dpaResults": [
{
"dpaName": "<string>",
"srcDpaId": "<string>",
"status": "<string>",
"error": {
"status": 123,
"reason": "<string>",
"message": "<string>",
"errordetail": [
{
"message": "<string>",
"reason": "<string>",
"source": "<string>",
"sourceType": "<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({
batchId: '<string>',
batchStatus: '<string>',
items: [
{
action: '<string>',
serviceId: '<string>',
trid: '<string>',
status: '<string>',
programName: '<string>',
error: {
status: 123,
reason: '<string>',
message: '<string>',
errordetail: [
{
message: '<string>',
reason: '<string>',
source: '<string>',
sourceType: '<string>'
}
]
},
dpaResults: [
{
dpaName: '<string>',
srcDpaId: '<string>',
status: '<string>',
error: {
status: 123,
reason: '<string>',
message: '<string>',
errordetail: [
{
message: '<string>',
reason: '<string>',
source: '<string>',
sourceType: '<string>'
}
]
}
}
]
}
]
})
};
fetch('https://checkout.dintero.com/v1/mtls/v1/checkout/mastercard/notifications/dpa', 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/dpa"
payload := strings.NewReader("{\n \"batchId\": \"<string>\",\n \"batchStatus\": \"<string>\",\n \"items\": [\n {\n \"action\": \"<string>\",\n \"serviceId\": \"<string>\",\n \"trid\": \"<string>\",\n \"status\": \"<string>\",\n \"programName\": \"<string>\",\n \"error\": {\n \"status\": 123,\n \"reason\": \"<string>\",\n \"message\": \"<string>\",\n \"errordetail\": [\n {\n \"message\": \"<string>\",\n \"reason\": \"<string>\",\n \"source\": \"<string>\",\n \"sourceType\": \"<string>\"\n }\n ]\n },\n \"dpaResults\": [\n {\n \"dpaName\": \"<string>\",\n \"srcDpaId\": \"<string>\",\n \"status\": \"<string>\",\n \"error\": {\n \"status\": 123,\n \"reason\": \"<string>\",\n \"message\": \"<string>\",\n \"errordetail\": [\n {\n \"message\": \"<string>\",\n \"reason\": \"<string>\",\n \"source\": \"<string>\",\n \"sourceType\": \"<string>\"\n }\n ]\n }\n }\n ]\n }\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/dpa")
.header("Content-Type", "application/json")
.body("{\n \"batchId\": \"<string>\",\n \"batchStatus\": \"<string>\",\n \"items\": [\n {\n \"action\": \"<string>\",\n \"serviceId\": \"<string>\",\n \"trid\": \"<string>\",\n \"status\": \"<string>\",\n \"programName\": \"<string>\",\n \"error\": {\n \"status\": 123,\n \"reason\": \"<string>\",\n \"message\": \"<string>\",\n \"errordetail\": [\n {\n \"message\": \"<string>\",\n \"reason\": \"<string>\",\n \"source\": \"<string>\",\n \"sourceType\": \"<string>\"\n }\n ]\n },\n \"dpaResults\": [\n {\n \"dpaName\": \"<string>\",\n \"srcDpaId\": \"<string>\",\n \"status\": \"<string>\",\n \"error\": {\n \"status\": 123,\n \"reason\": \"<string>\",\n \"message\": \"<string>\",\n \"errordetail\": [\n {\n \"message\": \"<string>\",\n \"reason\": \"<string>\",\n \"source\": \"<string>\",\n \"sourceType\": \"<string>\"\n }\n ]\n }\n }\n ]\n }\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