Submit RMA List Report
Request a list of returns, replacements, and refunds from seller’s account.
Resource URL
Newegg.com: https://api.newegg.com/marketplace/reportmgmt/report/submitrequest?sellerid={sellerid}
Neweggbusiness.com: https://api.newegg.com/marketplace/b2b/reportmgmt/report/submitrequest?sellerid={sellerid}
Newegg.ca: https://api.newegg.com/marketplace/can/reportmgmt/report/submitrequest?sellerid={sellerid}
Note: Please make sure your request URL is all in lower case (except for Seller ID) and cannot contain any blank spaces or line breaks.
Parameters
| Name | Required? | Description |
| sellerid | Yes | Your seller ID on Newegg Marketplace |
Resource Information
| HTTP Method | Authentication? | Request Formats | Response Formats | Rate Limited? |
| POST | Required | XML, Json | XML, Json | 100 request per hour |
Request Body
| Attribute | Required? | Format | Description |
| IssueUser | No | String | Issuer’s registered Seller Portal email address. System will only accept Seller’s registered Seller Portal email addresses. If left blank, default value will be Seller ID. |
| OperationType | Yes | String | Fixed value: RMAListReportRequest |
| RequestType | Yes | String | Fixed value: RMA_LIST_REPORT |
| KeywordsType | No | Integer | Available values:
0: All (default) |
| KeywordsValue | No | String | The keywords value of the specified KeywordsType
If the Keywordstype is 0, system will ignore this field |
| Status | No | Integer | Available values:
0: All (Default) |
| RMADateFrom | No | String | Search by RMA Date Range (Pacific Standard Time)
Please refer to the Acceptable Date Format |
| RMADateTo | No | String | Search by RMA Date Range (Pacific Standard Time)
Please refer to the Acceptable Date Format |
| RMAType | No | Integer | Available values:
0: All (Default) |
| ProcessedBy | No | Integer | Available values:
0: All (Default) |
Schema: RMAListRequest.xsd
Example: XML, Request
POST https://api.newegg.com/marketplace/reportmgmt/report/submitrequest?sellerid={sellerid}
Authorization: 720ddc067f4d115bd544aff46bc75634
SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D
Content-Type: application/xml
Accept: application/xml
<NeweggAPIRequest>
<OperationType>RMAListReportRequest</OperationType>
<RequestBody>
<RMAListReportCriteria>
<RequestType>RMA_LIST_REPORT</RequestType>
<KeywordsType>0</KeywordsType>
<KeywordsValue />
<Status>4</Status>
<RMADateFrom>2011-12-17</RMADateFrom>
<RMADateTo>2011-12-30</RMADateTo>
<RMAType>0</RMAType>
<ProcessedBy>0</ProcessedBy>
</RMAListReportCriteria>
</RequestBody>
</NeweggAPIRequest>
Example: Json, Request
POST https://api.newegg.com/marketplace/reportmgmt/report/submitrequest?sellerid={sellerid}
Authorization: 720ddc067f4d115bd544aff46bc75634
SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D
Content-Type: application/json
Accept: application/json
{
"OperationType": "RMAListReportRequest",
"RequestBody": {
"RMAListReportCriteria": {
"RequestType": "RMA_LIST_REPORT",
"KeywordsType": "0",
"Status": "4",
"RMADateFrom": "2011-12-17",
"RMADateTo": "2011-12-30",
"RMAType": "0",
"ProcessedBy": "0"
}
}
}
Response Body
| Attribute | Format | Description |
| IsSuccess | String | Get feed status operation:
True: Successful |
| OperationType | String | Fixed value: RMAListReportResponse |
| SellerID | String | Your seller ID |
| RequestId | String | Newegg’s assigned ID for submitted request |
| RequestType | String | Fixed value: RMA_LIST_REPORT |
| RequestDate | String | The date when the feed was submitted (Pacific Standard Time) |
| RequestSatus | String | Status of the submission:
SUBMITTED (Default) |
| Memo | String | Additional information |
Schema: SubmitReportResponse.xsd
Example: XML, Response
<NeweggAPIResponse>
<IsSuccess>true</IsSuccess>
<OperationType>RMAListReportResponse</OperationType>
<SellerID>a001</SellerID>
<ResponseBody>
<ResponseList>
<ResponseInfo>
<RequestId>270Z8Y3SYIGQV</RequestId>
<RequestType>RMA_LIST_REPORT</RequestType>
<RequestDate>07/12/2014 11:02:35</RequestDate>
<RequestStatus>SUBMITTED</RequestStatus>
</ResponseInfo>
</ResponseList>
</ResponseBody>
</NeweggAPIResponse>
Example: Json, Response
{
"IsSuccess": true,
"OperationType": "RMAListReportResponse",
"SellerID": "a001",
"ResponseBody": {
"ResponseList": [
{
"RequestId": "270Z8Y3SYIGQV",
"RequestType": "RMA_LIST_REPORT",
"RequestDate": "07/12/2014 11:34:57",
"RequestStatus": "SUBMITTED"
}
]
}
}
Request Failure Errors
For common HTTP error responses, please refer to Failed Response Error Code List.
| Error Code | Description |
| RP010 | Invalid Order Number. |
| RP018 | Invalid Settlement Date. |
| RP019 | The requestID cannot be null or empty. |
| RP020 | We are unable to process your request because one of the following search criteria is required: SettlementID, SettlementDate, or SettlementDateFrom and SettlementDateTo. |
| RP021 | Maximum item lookup cannot exceed 1000 for each request. |
| RP022 | Daily Inventory Report does not support multiple warehouse locations. For multiple warehouse locations, please use International Program – Daily Inventory Report. |
Example: XML, Response
<?xml version="1.0" encoding="utf-8"?>
<Errors>
<Error>
<Code>RP018</Code>
<Message>Invalid Settlement Date</Message>
</Error>
</Errors>
Example: Json, Response
[
{
"Code": "RP018",
"Message": "Invalid Settlement Date"
}
]
Last updated: October 15, 2018