GET /wallets/transactions/:id
curl --request GET \
--url https://consola.mouvlatam.com/api/wallets/transactions/:idimport requests
url = "https://consola.mouvlatam.com/api/wallets/transactions/:id"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://consola.mouvlatam.com/api/wallets/transactions/:id', 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://consola.mouvlatam.com/api/wallets/transactions/:id",
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://consola.mouvlatam.com/api/wallets/transactions/: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://consola.mouvlatam.com/api/wallets/transactions/:id")
.asString();require 'uri'
require 'net/http'
url = URI("https://consola.mouvlatam.com/api/wallets/transactions/:id")
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{
"bankName": {},
"bankAccountType": {},
"bankAccountNumber": {},
"description": {},
"errorMessage": {}
}Transacciones
GET /wallets/transactions/:id
Detalle de una transacción
GET
/
api
/
wallets
/
transactions
/
:id
GET /wallets/transactions/:id
curl --request GET \
--url https://consola.mouvlatam.com/api/wallets/transactions/:idimport requests
url = "https://consola.mouvlatam.com/api/wallets/transactions/:id"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://consola.mouvlatam.com/api/wallets/transactions/:id', 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://consola.mouvlatam.com/api/wallets/transactions/:id",
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://consola.mouvlatam.com/api/wallets/transactions/: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://consola.mouvlatam.com/api/wallets/transactions/:id")
.asString();require 'uri'
require 'net/http'
url = URI("https://consola.mouvlatam.com/api/wallets/transactions/:id")
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{
"bankName": {},
"bankAccountType": {},
"bankAccountNumber": {},
"description": {},
"errorMessage": {}
}Detalle completo de una transacción (outflow o inflow). Scope:
READ.
URL params
string
required
UUID de la transacción
Response 200
Mismo shape que un item deGET /wallets/transactions con campos adicionales:
string | null
Banco destino (ACH) o banco origen (BREB inbound)
string | null
Ahorros / Corriente (ACH)string | null
Cuenta destino enmascarada (últimos 4)
string | null
Memo que proveíste
string | null
Si
status=FAILED, mensaje del rail upstreamEjemplo
curl "https://consola.mouvlatam.com/api/wallets/transactions/8e39f393-..." \
-H "Authorization: Bearer mvk_..."
Response 404
{
"error": "TRANSACTION_NOT_FOUND",
"message": "La transacción no existe o no pertenece a tu empresa"
}
La response 404 es la misma cuando la transacción NO existe Y cuando existe pero pertenece a otra empresa — no leakea información sobre si el ID es válido en otra cuenta. Defense in depth.