Get operation details
curl --request GET \
--url https://m2m-backend-qa.up.railway.app/partner/operations/{operationId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://m2m-backend-qa.up.railway.app/partner/operations/{operationId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://m2m-backend-qa.up.railway.app/partner/operations/{operationId}', 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://m2m-backend-qa.up.railway.app/partner/operations/{operationId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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://m2m-backend-qa.up.railway.app/partner/operations/{operationId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://m2m-backend-qa.up.railway.app/partner/operations/{operationId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://m2m-backend-qa.up.railway.app/partner/operations/{operationId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"operationId": "op_acme_abc123",
"userId": "user_acme_x1y2z3",
"linkId": "link_acme_a1b2c3d4e5f6",
"status": "completed",
"amount": {
"send": 100,
"receive": 1725,
"rate": 17.25,
"fee": 3.99,
"currency": {
"source": "USD",
"destination": "MXN"
}
},
"createdAt": "2026-02-10T12:00:00.000Z",
"updatedAt": "2026-02-10T12:05:00.000Z",
"referenceId": "user-12345",
"raasOperationId": "raas_op_xyz789",
"funding": {},
"payout": {},
"completedAt": "2026-02-10T12:05:00.000Z",
"failedAt": "<string>",
"failureReason": "<string>"
}
}Partner - Operations
Get operation details
Returns full details of a specific money transfer operation including amount breakdown, funding and payout method details, status timeline, and failure reason if applicable.
GET
/
partner
/
operations
/
{operationId}
Get operation details
curl --request GET \
--url https://m2m-backend-qa.up.railway.app/partner/operations/{operationId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://m2m-backend-qa.up.railway.app/partner/operations/{operationId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://m2m-backend-qa.up.railway.app/partner/operations/{operationId}', 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://m2m-backend-qa.up.railway.app/partner/operations/{operationId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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://m2m-backend-qa.up.railway.app/partner/operations/{operationId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://m2m-backend-qa.up.railway.app/partner/operations/{operationId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://m2m-backend-qa.up.railway.app/partner/operations/{operationId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"operationId": "op_acme_abc123",
"userId": "user_acme_x1y2z3",
"linkId": "link_acme_a1b2c3d4e5f6",
"status": "completed",
"amount": {
"send": 100,
"receive": 1725,
"rate": 17.25,
"fee": 3.99,
"currency": {
"source": "USD",
"destination": "MXN"
}
},
"createdAt": "2026-02-10T12:00:00.000Z",
"updatedAt": "2026-02-10T12:05:00.000Z",
"referenceId": "user-12345",
"raasOperationId": "raas_op_xyz789",
"funding": {},
"payout": {},
"completedAt": "2026-02-10T12:05:00.000Z",
"failedAt": "<string>",
"failureReason": "<string>"
}
}Authorizations
Your partner API key. Use m2m_test_* keys for the sandbox environment.
Path Parameters
Unique operation identifier
Example:
"op_acme_abc123"
⌘I