curl --request GET \
--url https://api-sandbox.ledgersyncappv2.com/v3/connections/mx-wrapperimport requests
url = "https://api-sandbox.ledgersyncappv2.com/v3/connections/mx-wrapper"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-sandbox.ledgersyncappv2.com/v3/connections/mx-wrapper', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-sandbox.ledgersyncappv2.com/v3/connections/mx-wrapper",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-sandbox.ledgersyncappv2.com/v3/connections/mx-wrapper"
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://api-sandbox.ledgersyncappv2.com/v3/connections/mx-wrapper")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.ledgersyncappv2.com/v3/connections/mx-wrapper")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body"<string>""<string>"LedgerSync-hosted MX Connect wrapper page (browser-facing)
Browser-facing HTML page — not an integrator API call. When a
connection routes to MX, the widget_url action returned by
POST /clients/{client_id}/connections points here (MX Connect
has no native post-Connect redirect of its own). Open it in the
user’s browser or iframe it, exactly like Finicity Connect.
The page verifies the short-lived wrapper token, embeds the MX
Connect widget, and when the user finishes linking either
redirects its own window to your registered redirect_url with
an ls_token query parameter — the same contract as the
Finicity flow, verified at
POST /connections/redirect-token/verify — or shows a
“Connected” end state when no redirect_url was supplied at
initiate time.
No API key is required: the HS256 wrapper token in the query
string is the capability. Tampered, expired, or missing tokens
render a static error page (text/html, not the JSON error
envelope).
curl --request GET \
--url https://api-sandbox.ledgersyncappv2.com/v3/connections/mx-wrapperimport requests
url = "https://api-sandbox.ledgersyncappv2.com/v3/connections/mx-wrapper"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-sandbox.ledgersyncappv2.com/v3/connections/mx-wrapper', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-sandbox.ledgersyncappv2.com/v3/connections/mx-wrapper",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-sandbox.ledgersyncappv2.com/v3/connections/mx-wrapper"
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://api-sandbox.ledgersyncappv2.com/v3/connections/mx-wrapper")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.ledgersyncappv2.com/v3/connections/mx-wrapper")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body"<string>""<string>"Query Parameters
HS256 wrapper token minted when the MX connection was
initiated. Re-renderable within its 30-minute TTL (browser
refresh mid-flow is safe); the embedded ls_token stays
strictly single-use at verify time.
Response
The wrapper page.
The response is of type string.
