Get RMAs
curl --request POST \
--url https://api2.rhombussystems.com/api/logistics/getRMAs \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '{}'import requests
url = "https://api2.rhombussystems.com/api/logistics/getRMAs"
payload = {}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({})
};
fetch('https://api2.rhombussystems.com/api/logistics/getRMAs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/logistics/getRMAs")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{}")
.asString();{
"error": true,
"errorMsg": "<string>",
"rmaList": [
{
"address": "<string>",
"advancedRMAs": {
"falseReport": true,
"invoiceNeeded": true,
"knownIssue": true,
"managerialApproved": true,
"rctpPartnerRequested": true,
"rctpPartnerUuid": "<string>",
"rectified": true
},
"briefDescription": "<string>",
"city": "<string>",
"costInDollars": 123,
"country": "<string>",
"customerUnresponsive": true,
"deleted": true,
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"errorCode": "BADGE_READER_UNKNOWN",
"failureDiagnostics": [
"<string>"
],
"fedExReturnLabelSent": true,
"finalNotes": "<string>",
"hardwareUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"initialFirmwareVersion": "<string>",
"initiatedBy": "<string>",
"inventoryNeeded": "<string>",
"inventoryNeededMap": {},
"isRefurbished": true,
"knownIssue": true,
"lastRecordedFirmwareVersion": "<string>",
"lastUpdatedAtSec": 123,
"lastUpdatedBy": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"postalCode": "<string>",
"prevShippingInfoUsedBy": "<string>",
"prevShippingInfoUsedByAtSec": 123,
"proactiveReplacement": true,
"rctpPartnerOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"recipientName": "<string>",
"recipientPhoneNumber": "<string>",
"replacementCourier": "<string>",
"replacementHardwareUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"replacementTrackingNumber": "<string>",
"requesterEmailAddress": "<string>",
"returnLabelRequestedUpdatedAtSec": 123,
"returnLabelSent": true,
"returnLabelSentUpdatedAtSec": 123,
"returnTrackingNumber": "<string>",
"rmaRequest": {
"formSubmitted": true,
"requestUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"rmaOpportunityId": "<string>",
"salesforceAccountId": "<string>",
"salesforcePartnerContactId": "<string>",
"salesforcePartnerId": "<string>"
},
"rmaRequestUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"sdCardReplaced": true,
"shipmentMethod": "GROUND",
"shipmentRequested": true,
"shipmentRequestedBy": "<string>",
"shipmentRequestedUpdatedAtSec": 123,
"shipmentSent": true,
"shipmentSentUpdatedAtSec": 123,
"skipAutoRegistration": true,
"state": "<string>",
"status": "INITIATED",
"storageCid": "<string>",
"street": "<string>",
"timestampSec": 123,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"warehouseInventoryNeeded": true,
"zenDeskTicketAssigneeEmail": "<string>",
"zenDeskTicketSubject": "<string>",
"zendeskTicket": 123
}
],
"warningMsg": "<string>"
}Logistics Webservice
Get RMAs
Get RMAs
POST
/
api
/
logistics
/
getRMAs
Get RMAs
curl --request POST \
--url https://api2.rhombussystems.com/api/logistics/getRMAs \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '{}'import requests
url = "https://api2.rhombussystems.com/api/logistics/getRMAs"
payload = {}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({})
};
fetch('https://api2.rhombussystems.com/api/logistics/getRMAs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/logistics/getRMAs")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{}")
.asString();{
"error": true,
"errorMsg": "<string>",
"rmaList": [
{
"address": "<string>",
"advancedRMAs": {
"falseReport": true,
"invoiceNeeded": true,
"knownIssue": true,
"managerialApproved": true,
"rctpPartnerRequested": true,
"rctpPartnerUuid": "<string>",
"rectified": true
},
"briefDescription": "<string>",
"city": "<string>",
"costInDollars": 123,
"country": "<string>",
"customerUnresponsive": true,
"deleted": true,
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"errorCode": "BADGE_READER_UNKNOWN",
"failureDiagnostics": [
"<string>"
],
"fedExReturnLabelSent": true,
"finalNotes": "<string>",
"hardwareUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"initialFirmwareVersion": "<string>",
"initiatedBy": "<string>",
"inventoryNeeded": "<string>",
"inventoryNeededMap": {},
"isRefurbished": true,
"knownIssue": true,
"lastRecordedFirmwareVersion": "<string>",
"lastUpdatedAtSec": 123,
"lastUpdatedBy": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"postalCode": "<string>",
"prevShippingInfoUsedBy": "<string>",
"prevShippingInfoUsedByAtSec": 123,
"proactiveReplacement": true,
"rctpPartnerOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"recipientName": "<string>",
"recipientPhoneNumber": "<string>",
"replacementCourier": "<string>",
"replacementHardwareUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"replacementTrackingNumber": "<string>",
"requesterEmailAddress": "<string>",
"returnLabelRequestedUpdatedAtSec": 123,
"returnLabelSent": true,
"returnLabelSentUpdatedAtSec": 123,
"returnTrackingNumber": "<string>",
"rmaRequest": {
"formSubmitted": true,
"requestUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"rmaOpportunityId": "<string>",
"salesforceAccountId": "<string>",
"salesforcePartnerContactId": "<string>",
"salesforcePartnerId": "<string>"
},
"rmaRequestUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"sdCardReplaced": true,
"shipmentMethod": "GROUND",
"shipmentRequested": true,
"shipmentRequestedBy": "<string>",
"shipmentRequestedUpdatedAtSec": 123,
"shipmentSent": true,
"shipmentSentUpdatedAtSec": 123,
"skipAutoRegistration": true,
"state": "<string>",
"status": "INITIATED",
"storageCid": "<string>",
"street": "<string>",
"timestampSec": 123,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"warehouseInventoryNeeded": true,
"zenDeskTicketAssigneeEmail": "<string>",
"zenDeskTicketSubject": "<string>",
"zendeskTicket": 123
}
],
"warningMsg": "<string>"
}Authorizations
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
Headers
Authentication scheme identifier. Use api-token for standard API key authentication, partner-api-token for partner API key authentication. Must be paired with the x-auth-apikey header containing your API key.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
Request object for getting RMAs (Return Merchandise Authorizations).
Last modified on August 22, 2026
⌘I