Skip to main content

Callback Management

Retrieve your current callback URLs. For updating callback URLs, see Callback Security.

Get Callback URLs

Retrieve your current callback URLs.

Endpoint

GET /api/getCallbackUrls

Headers

HeaderTypeRequiredDescription
mvpayApiTokenstringAPI authentication token

Example Request

const fetch = require("node-fetch");

const response = await fetch("https://app.mvpay.xyz/api/getCallbackUrls", {
method: "GET",
headers: {
mvpayApiToken: "TgXxgoml47Na0No",
},
});

const data = await response.json();
console.log(data);