UPS-DOMS-WMS
  1. RMA
UPS-DOMS-WMS
  • UPS-DOMS
    • DOMS to WMS
      • Order
        • Create Sales Order
      • PO
        • Create PO
      • ASN
        • Create ASN
      • Product
        • Product Information
      • RMA
        • RMA
          POST
    • WMS to DOMS
      • Inventory Movement
        • Inventory Movement Information
      • Ship Confirm
        • Order Ship Confirmation
      • Order Status Update
        • Order Status Updates
      • Receipt Confirmation
        • Receipt Confirmation
    • CLIENT-SYS to DOMS
      • ASN Inquiry
      • Inventory Inquiry
  1. RMA

RMA

POST
/ups/order/rma

Request

Header Params
Token
string 
required
Bearer Token
Example:
Bearer eyJ0eXBlIjoiU0lHTkVELUpXVCIsIndoc2VfaWQiOiJVUFMiLCJibGRnX2lkIjoiQ0FGQU4iLCJjb21wYW55X25vIjoiRFlTT04iLCJhbGxvd2VkX3BhdGgiOiIiLCJhbGciOiJSUzUxMiJ9.eyJpc3MiOiJzb2Z0ZW9uLmNvbSIsInN1YiI6InNvZnRlb24vYXV0aC9qd3QiLCJleHAiOjE3MTUwNjU0MzMsIm5hbWUiOiJzb2Z0ZW9uIiwic2NvcGUiOiJBUEkifQ.bDyEdwNFuqrT05v7A2_uwRqQ9-S2wJF-1IwWYZYDed5M5ee5VScLD8i2WXjF9cfzNjyARfdVzD-ZZRmH8eycPCzKZowWJ-D-RuTxmxBH2ubizZ5V2uexpNR2nzfAt4L43wGEV-S4-eAlf3LTQdoTgjMYgdRWApm0m_8GpKvG88_idUCpSPui5mD5yjxsWOoSo6rDXqfuGl21K1G5WoV90ULm7sOXj2gKI7feJk7jbQi-whRkIwfNaEm-2iM1x-oQc8u23jyfYp-qidMb5k4ae3jwlA36a7s3d-SKZ56tNsBgQLzJ6rxx5lVC5FwJS5aE1eQSMdoHWLnuMvJIiYB_GQ
WhseId
string 
required
Warehouse Id of Client DOMS
Example:
UPS
BusinessUnit
string 
required
Business Unit Code of the Client in DOMS
Example:
POCSPORTS
BldgId
string 
required
Building Id of the Client in DOMS
Example:
NVRN1
Body Params application/json
data
array [object {24}] 
required
whseId
string 
optional
businessUnit
string 
optional
buildingId
string 
optional
rmaNo
string 
optional
actionCd
string 
optional
createDate
string 
optional
customerId
string 
optional
customerName
string 
optional
rmaType
string 
optional
carrierCd
string 
optional
expDate
string 
optional
notes
string 
optional
trackingNumber
string 
optional
refField1
string 
optional
refField2
string 
optional
refField3
string 
optional
refField4
string 
optional
refField5
string 
optional
refField6
string 
optional
refField7
string 
optional
refField8
string 
optional
refField9
string 
optional
refField10
string 
optional
lines
array [object {28}] 
optional
Example
{
    "data": [
        {
            "whseId": "string",
            "businessUnit": "string",
            "buildingId": "string",
            "rmaNo": "string",
            "actionCd": "string",
            "createDate": "string",
            "customerId": "string",
            "customerName": "string",
            "rmaType": "string",
            "carrierCd": "string",
            "expDate": "string",
            "notes": "string",
            "trackingNumber": "string",
            "refField1": "string",
            "refField2": "string",
            "refField3": "string",
            "refField4": "string",
            "refField5": "string",
            "refField6": "string",
            "refField7": "string",
            "refField8": "string",
            "refField9": "string",
            "refField10": "string",
            "lines": [
                {
                    "rmaLineNo": "string",
                    "createDate": "string",
                    "skuId": "string",
                    "shippedQty": "string",
                    "orderNo": "string",
                    "returnReasonCd": "string",
                    "upcCd": "string",
                    "unitPrice": "string",
                    "notes": "string",
                    "trackingNumber": "string",
                    "prodStatus": "string",
                    "skuAttributes": "string",
                    "mfgDate": "string",
                    "expDate": "string",
                    "customerLineNo": "string",
                    "holdReceiptFlag": "string",
                    "dispositionCd": "string",
                    "lotNumber": "string",
                    "refField1": "string",
                    "refField2": "string",
                    "refField3": "string",
                    "refField4": "string",
                    "refField5": "string",
                    "refField6": "string",
                    "refField7": "string",
                    "refField8": "string",
                    "refField9": "string",
                    "refField10": "string"
                }
            ]
        }
    ]
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/ups/order/rma' \
--header 'Token: Bearer eyJ0eXBlIjoiU0lHTkVELUpXVCIsIndoc2VfaWQiOiJVUFMiLCJibGRnX2lkIjoiQ0FGQU4iLCJjb21wYW55X25vIjoiRFlTT04iLCJhbGxvd2VkX3BhdGgiOiIiLCJhbGciOiJSUzUxMiJ9.eyJpc3MiOiJzb2Z0ZW9uLmNvbSIsInN1YiI6InNvZnRlb24vYXV0aC9qd3QiLCJleHAiOjE3MTUwNjU0MzMsIm5hbWUiOiJzb2Z0ZW9uIiwic2NvcGUiOiJBUEkifQ.bDyEdwNFuqrT05v7A2_uwRqQ9-S2wJF-1IwWYZYDed5M5ee5VScLD8i2WXjF9cfzNjyARfdVzD-ZZRmH8eycPCzKZowWJ-D-RuTxmxBH2ubizZ5V2uexpNR2nzfAt4L43wGEV-S4-eAlf3LTQdoTgjMYgdRWApm0m_8GpKvG88_idUCpSPui5mD5yjxsWOoSo6rDXqfuGl21K1G5WoV90ULm7sOXj2gKI7feJk7jbQi-whRkIwfNaEm-2iM1x-oQc8u23jyfYp-qidMb5k4ae3jwlA36a7s3d-SKZ56tNsBgQLzJ6rxx5lVC5FwJS5aE1eQSMdoHWLnuMvJIiYB_GQ' \
--header 'WhseId: UPS' \
--header 'BusinessUnit: POCSPORTS' \
--header 'BldgId: NVRN1' \
--header 'Content-Type: application/json' \
--data-raw '{
    "data": [
        {
            "whseId": "string",
            "businessUnit": "string",
            "buildingId": "string",
            "rmaNo": "string",
            "actionCd": "string",
            "createDate": "string",
            "customerId": "string",
            "customerName": "string",
            "rmaType": "string",
            "carrierCd": "string",
            "expDate": "string",
            "notes": "string",
            "trackingNumber": "string",
            "refField1": "string",
            "refField2": "string",
            "refField3": "string",
            "refField4": "string",
            "refField5": "string",
            "refField6": "string",
            "refField7": "string",
            "refField8": "string",
            "refField9": "string",
            "refField10": "string",
            "lines": [
                {
                    "rmaLineNo": "string",
                    "createDate": "string",
                    "skuId": "string",
                    "shippedQty": "string",
                    "orderNo": "string",
                    "returnReasonCd": "string",
                    "upcCd": "string",
                    "unitPrice": "string",
                    "notes": "string",
                    "trackingNumber": "string",
                    "prodStatus": "string",
                    "skuAttributes": "string",
                    "mfgDate": "string",
                    "expDate": "string",
                    "customerLineNo": "string",
                    "holdReceiptFlag": "string",
                    "dispositionCd": "string",
                    "lotNumber": "string",
                    "refField1": "string",
                    "refField2": "string",
                    "refField3": "string",
                    "refField4": "string",
                    "refField5": "string",
                    "refField6": "string",
                    "refField7": "string",
                    "refField8": "string",
                    "refField9": "string",
                    "refField10": "string"
                }
            ]
        }
    ]
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{}
🟠400Bad Request
🟠401Unauthorized
🔴500Server Error
Modified at 2024-06-10 06:18:17
Previous
Product Information
Next
Inventory Movement Information
Built with