apple_pay_notifications_token_get
curl --request GET \
--url https://checkout.dintero.com/v1/checkout/applepay/merchant/{merchant_id}/notification/merchantToken/{event_id}import requests
url = "https://checkout.dintero.com/v1/checkout/applepay/merchant/{merchant_id}/notification/merchantToken/{event_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://checkout.dintero.com/v1/checkout/applepay/merchant/{merchant_id}/notification/merchantToken/{event_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://checkout.dintero.com/v1/checkout/applepay/merchant/{merchant_id}/notification/merchantToken/{event_id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://checkout.dintero.com/v1/checkout/applepay/merchant/{merchant_id}/notification/merchantToken/{event_id}")
.asString();{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}apple pay notifications
Apple Pay token notifications
Endpoint used by Apple Pay for token notifications. The request is forwarded to Dintero PSP service.
GET
https://checkout.dintero.com/v1
/
checkout
/
applepay
/
merchant
/
{merchant_id}
/
notification
/
merchantToken
/
{event_id}
apple_pay_notifications_token_get
curl --request GET \
--url https://checkout.dintero.com/v1/checkout/applepay/merchant/{merchant_id}/notification/merchantToken/{event_id}import requests
url = "https://checkout.dintero.com/v1/checkout/applepay/merchant/{merchant_id}/notification/merchantToken/{event_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://checkout.dintero.com/v1/checkout/applepay/merchant/{merchant_id}/notification/merchantToken/{event_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://checkout.dintero.com/v1/checkout/applepay/merchant/{merchant_id}/notification/merchantToken/{event_id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://checkout.dintero.com/v1/checkout/applepay/merchant/{merchant_id}/notification/merchantToken/{event_id}")
.asString();{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}Last modified on July 14, 2026
⌘I