GET Retrieve a Transaction
GET /status/v1/transactions/{transactionsId}GET /status/v1/transactions/?referenceNumber={referenceNumber}
Development Guide
The 'Retrieve a Transaction' endpoints looks-up a transaction by referenceNumber or transactionId and return the current status of a transaction.
1. Prepare headers, authentication and parameters:
The application must call the 'Retrieve a Transaction' endpoint with a GET HTTP method, providing the OAuth access_token, required headers and parameter values. There are two endpoints that can be used to retrieve a transaction status:
- Retrieve a transaction by transactionId ** | **
GET /status/v1/transactions/{transactionId}
OR - Retrieve a transaction by referenceNumber ** | **
GET /status/v1/transactions/?referenceNumber={referenceNumber}
Note: MoneyGram uses the OAuth 2.0 framework. The application must use their OAuth client credentials to generate an
access_tokenby calling the Get Access Token endpoint. The token is valid for 1 hour and must be passed as a header value in all subsequent API HTTP calls. Learn More
Launch Code ExampleStatus - Retrieve by transactionId - Headers and ParametersOpen Recipe.
Status - Retrieve by referenceNumber - Headers and ParametersOpen Recipe
2. Make a request and handle the response:
The application must call the 'Retrieve a Transaction' endpoint with a GET HTTP method. The application must build to handle the following response scenarios:
- Success | Parse the Response | 200 OK HTTP Status
When the 'Retrieve a transaction' bytransactionIdorreferenceNumberendpoint responds with a 200 HTTP Status will typically respond with thetransactionStatus,transactionSubStatus,sender,receiver,transactionInformation.
- Failed | Handle the Error | 400 Bad Request HTTP Status
When the 'Retrieve a Transaction' endpoint responds with 400 HTTP Status, specific error codes will be returned with an array of offending fields. The application will need to resolve these errors and resubmit the request.
Note: If the transaction is in a
"transactionStatus": "RECEIVED", theexpectedPayoutDatefield will not be returned in the response.
Launch Code ExampleStatus API - 200 OKOpen Recipe.
Status API - 400 Bad RequestOpen Recipe
3. You're Done! Communicate the transaction status to the consumer:
The information returned can be used to display a Transaction Summary feature on the application UI. The transactionStatus is a top level transaction status. There is also a transactionSubStatus which provides more detail about the transaction status and any action needed by the consumer Learn More
Video Tutorial
Code Examples
Retrieve by transactionId
transactionIdconst axios = require('axios');
const { v4: uuidv4 } = require('uuid');
const status = async () => {
// Step 1: Read configuration values with upmost security
const token = "your_access_token_from_oauth_response"
// For production - api.moneygram.com & For test - sandboxapi.moneygram.com
const host = "sandboxapi.moneygram.com";
const url = 'https://' + host + '/status/v1/transactions';
// Step 2: Create the GET request headers & params
const headers = {
'Content-Type': 'application/json',
'X-MG-ClientRequestId': uuidv4(), // New UUID for each request tracing
'Authorization': 'Bearer ' + token,
};
const transactionId = "current_transaction_id";
const params = {
agentPartnerId: "your_partner_id",
userLanguage: "en-US",
targetAudience: "AGENT_FACING"
}
try {
// Step 3: Send the request and obtain the response
axios.get(url + '/' + transactionId, { params, headers })
.then(function (response) {
// Step 4: Parse the success response and process further
console.log(JSON.stringify(response.data, null, 2))
})
.catch(function (error) {
// Step 5: Parse the error response and handle the errors
if (error.response) {
console.log('Response status:', error.response.status);
console.log('Response body:', error.response.data);
} else {
// TODO: handle generic errors
console.error('Error:', error.message);
}
});
} catch (error) {
// TODO: handle exception
console.error('Error:', error.message);
}
};
status();import requests
import uuid
import json
def status():
# Step 1: Read configuration values with upmost security
token = "your_access_token_from_oauth_response"
# For production - api.moneygram.com & For test - sandboxapi.moneygram.com
host = "sandboxapi.moneygram.com";
url = 'https://' + host + '/status/v1/transactions';
# Step 2: Create the GET request headers & params
headers = {
'Content-Type': 'application/json',
'X-MG-ClientRequestId': str(uuid.uuid4()), # New UUID for each request tracing
'Authorization': 'Bearer ' + token,
}
transactionId = "current_transaction_id";
params = {
'agentPartnerId': 'your_partner_id',
'userLanguage': 'en-US',
'targetAudience': 'AGENT_FACING',
}
try:
# Step 3: Send the request and obtain the response
response = requests.get(url + '/' + transactionId, params=params, headers=headers)
# Step 4: Parse the success response and process further
if response.status_code == 200:
parsed_response = json.dumps(json.loads(response.text), indent=2)
print(parsed_response)
else:
# Print the error message if request fails
# TODO: handle exception
print("Request failed with status code:", response.status_code)
print(json.loads(json.dumps(response.text, indent=4)))
except requests.exceptions.RequestException as e:
# Print any error that occurred during the request
# TODO: handle exception
print("An error occurred:", e)
status()
package status;
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.util.UUID;
public class StatusByTransactionID {
public static void main(String[] args) {
// Step 1: Read configuration values with upmost security
String token = "your_access_token_from_oauth_response";
// For production - api.moneygram.com & For test - sandboxapi.moneygram.com
String host = "sandboxapi.moneygram.com";
// Step 2: Create the GET request headers & params
// Mandatory Query params
String agentPartnerId = "your_partner_id";
String userLanguage = "en-US";
// Optional Query params
String targetAudience = "AGENT_FACING";
// Mandatory Path params
String transactionId = "current_transaction_id";
String uri = "https://" + host + "/status/v1/transactions/" + transactionId + "?"
+ "agentPartnerId=" + agentPartnerId
+ "&userLanguage=" + userLanguage
+ (targetAudience.isBlank() ? "" : "&targetAudience=" + targetAudience);
HttpClient httpClient = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create(uri))
.GET()
.setHeader("Authorization", "Bearer " + token)
.setHeader("X-MG-ClientRequestId", String.valueOf(UUID.randomUUID()))
.build();
try {
// Step 3: Send the request and obtain the response
HttpResponse<String> response = httpClient.send(request, HttpResponse.BodyHandlers.ofString());
// Retrieve the status code and body from the response
int statusCode = response.statusCode();
// Step 4: Parse the success response and process further
if (statusCode == 200) {
String responseBody = response.body();
System.out.println(responseBody);
} else {
// Step 5: Parse the error response and handle the errors
String responseBody = response.body();
System.out.println(responseBody);
}
} catch (Exception e) {
e.printStackTrace();
// TODO: handle exception
}
}
}Retrieve by referenceNumber
referenceNumberconst axios = require('axios');
const { v4: uuidv4 } = require('uuid');
const status = async () => {
// Step 1: Read configuration values with upmost security
const token = "your_access_token_from_oauth_response"
// For production - api.moneygram.com & For test - sandboxapi.moneygram.com
const host = "sandboxapi.moneygram.com";
const url = 'https://' + host + '/status/v1/transactions';
// Step 2: Create the GET request headers & params
const headers = {
'Content-Type': 'application/json',
'X-MG-ClientRequestId': uuidv4(), // New UUID for each request tracing
'Authorization': 'Bearer ' + token,
};
const params = {
agentPartnerId: "your_partner_id",
referenceNumber: "your_reference_number",
userLanguage: "en-US",
targetAudience: "AGENT_FACING"
}
try {
// Step 3: Send the request and obtain the response
axios.get(url, { params, headers })
.then(function (response) {
// Step 4: Parse the success response and process further
console.log(JSON.stringify(response.data, null, 2))
})
.catch(function (error) {
// Step 5: Parse the error response and handle the errors
if (error.response) {
console.log('Response status:', error.response.status);
console.log('Response body:', error.response.data);
} else {
// TODO: handle generic errors
console.error('Error:', error.message);
}
});
} catch (error) {
// TODO: handle exception
console.error('Error:', error.message);
}
};
status();
import requests
import uuid
import json
def status():
# Step 1: Read configuration values with upmost security
token = "your_access_token_from_oauth_response"
# For production - api.moneygram.com & For test - sandboxapi.moneygram.com
host = "sandboxapi.moneygram.com";
url = 'https://' + host + '/status/v1/transactions';
# Step 2: Create the GET request headers & params
headers = {
'Content-Type': 'application/json',
'X-MG-ClientRequestId': str(uuid.uuid4()), # New UUID for each request tracing
'Authorization': 'Bearer ' + token,
}
params = {
'agentPartnerId': 'your_partner_id',
'referenceNumber': 'your_reference_number',
'userLanguage': 'en-US',
'targetAudience': 'AGENT_FACING',
}
try:
# Step 3: Send the request and obtain the response
response = requests.get(url, params=params, headers=headers)
# Step 4: Parse the success response and process further
if response.status_code == 200:
parsed_response = json.dumps(json.loads(response.text), indent=2)
print(parsed_response)
else:
# Print the error message if request fails
# TODO: handle exception
print("Request failed with status code:", response.status_code)
print(json.loads(json.dumps(response.text, indent=4)))
except requests.exceptions.RequestException as e:
# Print any error that occurred during the request
# TODO: handle exception
print("An error occurred:", e)
status()
package status;
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.util.UUID;
public class StatusByReferenceNumber {
public static void main(String[] args) {
// Step 1: Read configuration values with upmost security
String token = "your_access_token_from_oauth_response";
// For production - api.moneygram.com & For test - sandboxapi.moneygram.com
String host = "sandboxapi.moneygram.com";
// Step 2: Create the GET request headers & params
// Mandatory Query params
String agentPartnerId = "your_partner_id";
String referenceNumber = "your_reference_number";
String userLanguage = "en-US";
// Optional Query params
String targetAudience = "AGENT_FACING";
String uri = "https://" + host + "/status/v1/transactions?"
+ "agentPartnerId=" + agentPartnerId
+ "&referenceNumber=" + referenceNumber
+ "&userLanguage=" + userLanguage
+ (targetAudience.isBlank() ? "" : "&targetAudience=" + targetAudience);
HttpClient httpClient = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create(uri))
.GET()
.setHeader("Authorization", "Bearer " + token)
.setHeader("X-MG-ClientRequestId", String.valueOf(UUID.randomUUID()))
.build();
try {
// Step 3: Send the request and obtain the response
HttpResponse<String> response = httpClient.send(request, HttpResponse.BodyHandlers.ofString());
// Retrieve the status code and body from the response
int statusCode = response.statusCode();
// Step 4: Parse the success response and process further
if (statusCode == 200) {
String responseBody = response.body();
System.out.println(responseBody);
} else {
// Step 5: Parse the error response and handle the errors
String responseBody = response.body();
System.out.println(responseBody);
}
} catch (Exception e) {
e.printStackTrace();
// TODO: handle exception
}
}
}API Structure
Header Parameters
Field | Type | Required | Description |
|---|---|---|---|
| String | Optional | Client Request ID that can be passed by the client application. Client request Id must be unique within a single session for unique requests. This attribute can be used for ensuring idempotent request processing for some APIs. MoneyGram recommends using a UUID for the value of this field. |
Query Parameters
Field | Type | Required | Description |
|---|---|---|---|
| String | Optional | Tailors MoneyGram's error messages and field metadata to an in-store, digital or crypto consumer. (Enumerated value) |
| String | Required | Language used by the user/operator |
| String | Required | Unique agent or partner identifier |
| String | Required | MoneyGram's reference number for the transaction |
Path Parameters
Field | Type | Required | Description |
|---|---|---|---|
| String | Required | MoneyGram's unique identifier for the transaction resource |
Response Fields
Field | Type | Required/ | Description |
|---|---|---|---|
| String | Required | Unique identifier for the transaction resource |
| String | Required | MoneyGram's reference number for the transaction |
| String ($date-time) | Required | Transaction send date and time |
| String | Required | Expected payout date (Example value - YYYY-MM-DD) |
| String | Required | MoneyGram's transaction status |
| String | Optional | MoneyGram's transaction sub-status |
| String | Required | Transaction country of Origin (ISO alpha-3 code) |
| String | Required | Transaction Destination Country (ISO alpha-3 code) |
| String | Required | Unique category code to identify the transaction method |
| String | Required | Unique name to identify the transaction method |
| String | Optional | Unique identifier of the individual banking, wallet, or card provider for the service option. |
| String | Optional | Unique name of the individual banking, wallet, or card provider for the service option. |
| Number | Required | Transaction amount and currency excluding fees and exchange rate. Transaction Currency (ISO alpha-3 code) |
| String | Required | The |
| Number | Required | Fee Amount and Fee Currency applied to transaction (Fee Currency uses ISO alpha-3 code) |
| String | Required | The |
| Number | Optional | Tax Amount and Tax Currency applied to the Transaction by the origin country (Tax Currency uses ISO alpha-3 code) |
| String | Optional | The |
| Number | Optional | Transaction discount amount applied and currency type excluding fees and exchange rate. Transaction Currency (ISO alpha-3 code) |
| String | Optional | Additional Details about the applied promotion to the transaction |
| Number
Min length: 0 | Required | Transaction Total Amount and Transaction Total Currency including fees, taxes and discount. (Transaction Total Amount uses ISO alpha-3 code) |
| String | Required | The |
| Number | Required | Transaction Received Amount and Transaction Receive currency (Transaction Total Amount uses ISO alpha-3 code) |
| String | Required | The |
| Number | Optional | Received Fee and Receive Currency applied to the transaction by the destination country (Transaction Total Amount uses ISO alpha-3 code) |
| String | Optional | The |
| Number | Optional | Tax Amount and Tax Currency applied to the Transaction by the origin country (Tax Currency uses ISO alpha-3 code) |
| String | Optional | The |
| Number | Required | Receive Amount Total and Receive Transaction Currency to be picked-up/deposited in destination country including fees, taxes and discount (Transaction Total Amount uses ISO alpha-3 code) |
| String | Required | The |
| Number | Required | Fx Rate applied to transaction |
| Boolean | Optional | Indicates whether the Fx is “estimated” and amount, taxes and total cannot be guaranteed. The word “estimated” must appear before receiveAmount.amount, receiveAmount.taxes and receiveAmount.total only when true. |
| String | Required | Senders First Name |
| String | Optional | Senders Middle Name (if applicable) |
| String | Required | Senders Last Name |
| String | Optional | Senders Second Last Name (if applicable) |
| String | Optional | Unique Identifier of the consumer. |
| Dynamic | Optional | Dynamic field key/values |
| String | Required | First Name |
| String | Optional | Middle Name (if applicable) |
| String | Required | Last Name |
| String | Optional | Second last name (if applicable) |
| Dynamic | Optional | Dynamic field key/values |
Updated 29 days ago

Download code examples