Get operation details
curl --request GET \
--url https://raas-widgets-backend-sandbox.up.railway.app/partner/operations/{operationId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://raas-widgets-backend-sandbox.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://raas-widgets-backend-sandbox.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://raas-widgets-backend-sandbox.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://raas-widgets-backend-sandbox.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://raas-widgets-backend-sandbox.up.railway.app/partner/operations/{operationId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://raas-widgets-backend-sandbox.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"
}
},
"stateHistory": [
{
"state": "executing",
"timestamp": "2026-02-10T12:01:00.000Z",
"metadata": {
"event": "EXECUTION_REJECTED",
"phase": "execution",
"corridor": "CRB_INTERMEX",
"error": "[PAYMENT_METHOD_INVALID] ...",
"httpStatus": 422
}
}
],
"createdAt": "2026-02-10T12:00:00.000Z",
"updatedAt": "2026-02-10T12:05:00.000Z",
"referenceId": "user-12345",
"raasOperationId": "raas_op_xyz789",
"funding": {},
"payout": {},
"flowState": "executed",
"corridor": "CRB_INTERMEX",
"fundingStatus": "awaiting_funding",
"executionRefs": {
"corridor": "CRB_INTERMEX",
"nativeOperationId": "<string>",
"status": "<string>"
},
"raasCommit": {
"request": {},
"success": false,
"response": {},
"error": {
"message": "<string>",
"httpStatus": 422,
"code": "PAYHUB_ERROR",
"details": {},
"validations": [
"sender.phoneNumber should not be empty",
"recipient.city should not be empty"
]
},
"committedAt": "<string>"
},
"cancellationReason": "<string>",
"completedAt": "2026-02-10T12:05:00.000Z",
"failedAt": "<string>",
"failureReason": "<string>",
"externalId": "ORD-2026-001"
}
}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://raas-widgets-backend-sandbox.up.railway.app/partner/operations/{operationId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://raas-widgets-backend-sandbox.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://raas-widgets-backend-sandbox.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://raas-widgets-backend-sandbox.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://raas-widgets-backend-sandbox.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://raas-widgets-backend-sandbox.up.railway.app/partner/operations/{operationId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://raas-widgets-backend-sandbox.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"
}
},
"stateHistory": [
{
"state": "executing",
"timestamp": "2026-02-10T12:01:00.000Z",
"metadata": {
"event": "EXECUTION_REJECTED",
"phase": "execution",
"corridor": "CRB_INTERMEX",
"error": "[PAYMENT_METHOD_INVALID] ...",
"httpStatus": 422
}
}
],
"createdAt": "2026-02-10T12:00:00.000Z",
"updatedAt": "2026-02-10T12:05:00.000Z",
"referenceId": "user-12345",
"raasOperationId": "raas_op_xyz789",
"funding": {},
"payout": {},
"flowState": "executed",
"corridor": "CRB_INTERMEX",
"fundingStatus": "awaiting_funding",
"executionRefs": {
"corridor": "CRB_INTERMEX",
"nativeOperationId": "<string>",
"status": "<string>"
},
"raasCommit": {
"request": {},
"success": false,
"response": {},
"error": {
"message": "<string>",
"httpStatus": 422,
"code": "PAYHUB_ERROR",
"details": {},
"validations": [
"sender.phoneNumber should not be empty",
"recipient.city should not be empty"
]
},
"committedAt": "<string>"
},
"cancellationReason": "<string>",
"completedAt": "2026-02-10T12:05:00.000Z",
"failedAt": "<string>",
"failureReason": "<string>",
"externalId": "ORD-2026-001"
}
}Authorizations
Your partner API key. Use raas_sandbox_* keys for the sandbox environment and raas_live_* keys for production.
Path Parameters
Unique operation identifier
Example:
"op_acme_abc123"
⌘I