Retrieves a specific type of Detailed Seller Rating (DSR) report which will help a seller to determine what is contributing to lower or higher DSR scores.
A seller can request a report filtered by Transaction, Period, Category, or Shipping Details.
Input is a Request ID for a particular DSR report. Output consists of a DSR average, the total number of ratings received, and a count for each of the one-to-five star ratings received by a seller for each of the following areas: Item As Described, Communication, Shipping Time, and Shipping Charges.
Note the following details for retrieving summary reports:
See Detailed Seller Ratings for more information about seller DSRs.
Related calls:
| Output Samples Change History User Notes |
The box below lists all fields that could be included in the call request. To learn more about an individual field or its type, click its name in the box (or scroll down to find it in the table below the box).
See also Samples.
<?xml version="1.0" encoding="utf-8"?> <getDSRSummaryRequest xmlns="http://www.ebay.com/marketplace/services"> <jobId> string </jobId> </getDSRSummaryRequest>
| Argument | Type | Occurrence | Meaning |
|---|---|---|---|
| Standard Input Fields [Jump to call-specific fields] | |||
| Call-specific Input Fields | |||
| jobId | string | Required |
The Request ID for a particular DSR report. Max length: 20. |
| Input Samples Change History User Notes |
The box below lists all fields that might be returned in the response. To learn more about an individual field or its type, click its name in the box (or scroll down to find it in the table below the box).
See also Samples.
<?xml version="1.0" encoding="utf-8"?>
<getDSRSummaryResponse xmlns="http://www.ebay.com/marketplace/services">
<!-- Standard Output Fields -->
<ack> AckValue </ack>
<errorMessage> ErrorMessage
<error> ErrorData
<category> ErrorCategory </category>
<domain> string </domain>
<errorId> long </errorId>
<exceptionId> token </exceptionId>
<message> string </message>
<parameter name="string"> ErrorParameter (string) </parameter>
<!-- ... more parameter nodes here ... -->
<severity> ErrorSeverity </severity>
<subdomain> string </subdomain>
</error>
<!-- ... more error nodes here ... -->
</errorMessage>
<timestamp> dateTime </timestamp>
<version> string </version>
<!-- Call-specific Output Fields -->
<DSRSummary> DSRSummary
<DSRAverage> double </DSRAverage>
<DSRType> token </DSRType>
<rating1Count> int </rating1Count>
<rating2Count> int </rating2Count>
<rating3Count> int </rating3Count>
<rating4Count> int </rating4Count>
<rating5Count> int </rating5Count>
<totalRatingCount> int </totalRatingCount>
</DSRSummary>
<!-- ... more DSRSummary nodes here ... -->
</getDSRSummaryResponse>
| Return Value | Type | Occurrence | Meaning |
|---|---|---|---|
| Standard Output Fields [Jump to call-specific fields] | |||
| ack | AckValue | Always |
Indicates whether there are any errors or warnings associated with the processing of the request.
Applicable values: • Failure (out) Errors occurred that prevented the request from being processed successfully. • PartialFailure (out) Reserved for future use. • Success (out) The request was processed successfully without errors or warnings. • Warning (out) The request was processed successfully, but some warnings were returned. |
| errorMessage | ErrorMessage | Conditionally | Information for an error or warning that occurred when eBay processed the request. Not returned when responseStatus is Success. |
| errorMessage.error | ErrorData | Conditionally,
repeatable: [0..*] |
Details about a single error. |
| errorMessage.error.category | ErrorCategory | Conditionally |
There are three categories of errors: request errors, application errors, and system errors.
Applicable values: • Application (out) An error occurred due to a problem with the request, such as missing or invalid fields. The problem must be corrected before the request can be made again. If the problem is due to something in the application (such as a missing required field), the application must be changed. Once the problem in the application or data is resolved, resend the corrected request to eBay. • Request (out) An error occurred due to a problem with the request, such as invalid or missing data. The problem must be corrected before the request can be made again. If the problem is a result of end-user data, the application must alert the end-user to the problem and provide the means for the end-user to correct the data. Once the problem in the data is resolved, resend the request to eBay with the corrected data. • System (out) Indicates that an error has occurred on the eBay system side, such as a database or server down. An application can retry the request as-is a reasonable number of times (eBay recommends twice). If the error persists, contact Developer Technical Support. Once the problem has been resolved, the request may be resent in its original form. |
| errorMessage.error.domain | string | Conditionally |
Name of the domain upon which the error occurred. Domains include:
|
| errorMessage.error.errorId | long | Conditionally | A unique code that identifies the particular error condition that occurred. Your application can use error codes as identifiers in your customized error-handling algorithms. |
| errorMessage.error.exceptionId | token | Conditionally | Unique identifier for an exception associated with an error. |
| errorMessage.error.message | string | Conditionally | A detailed description of the condition that resulted in the error. |
| errorMessage.error.parameter | ErrorParameter (string) | Conditionally,
repeatable: [0..*] |
Some warning and error messages return one or more variables that contain contextual information about the error. This is often the field or value that triggered the error. |
| errorMessage.error.parameter [ attribute name ] |
string | Conditionally | The name of the parameter in the list of parameter types returned within the error type. |
| errorMessage.error.severity | ErrorSeverity | Conditionally |
Indicates whether the error caused the request to fail (Error) or not (Warning). If the request fails and the source of the problem is within the application (such as a missing required element), please change the application before you retry the request. If the problem is due to end-user input data, please alert the end-user to the problem and provide the means for them to correct the data. Once the problem in the application or data is resolved, you can attempt to re- send the request to eBay. If the source of the problem is on eBay's side, you can retry the request as-is a reasonable number of times (eBay recommends twice). If the error persists, contact Developer Technical Support. Once the problem has been resolved, the request may be resent in its original form. When a warning occurs, the error is returned in addition to the business data. In this case, you do not need to retry the request (as the original request was successful). However, depending on the cause or nature of the warning, you might need to contact either the end user or eBay to effect a long term solution to the problem to prevent it from reoccurring in the future. Applicable values: • Error (out) The request that triggered the error was not processed successfully. When a serious application-level error occurs, the error is returned instead of the business data. • Warning (out) The request was processed successfully, but something occurred that may affect your application or the user. For example, eBay may have changed a value the user sent in. In this case, eBay returns a normal, successful response and also returns the warning. |
| errorMessage.error.subdomain | string | Conditionally |
Name of the subdomain upon which the error occurred. Subdomains include:
|
| timestamp | dateTime | Always | This value represents the date and time when eBay processed the request. The time zone of this value is GMT and the format is the ISO 8601 date and time format (YYYY-MM-DDTHH:MM:SS.SSSZ). See the "dateTime" type for information about this time format and converting to and from the GMT time zone. |
| version | string | Always | The version of the response payload schema. Indicates the version of the schema that eBay used to process the request. Developer Technical Support may ask you for the version value when you work with them to troubleshoot issues. |
| Call-specific Output Fields | |||
| DSRSummary | DSRSummary | Always,
repeatable: [1..*] |
A list of detailed seller ratings for one of the following areas: Item As Described, Communication, Shipping Time, and Shipping Charges. This list includes a DSR average, the total number of ratings received, and a count for each of the one-to-five star ratings received by a seller for a particular DSR area. The detailed seller rating system is based on a one-to-five-star scale. Five stars is the highest rating, and one star is the lowest. |
| DSRSummary.DSRAverage | double | Always | Average rating for a particular DSR area. The average rating is computed on a rolling 12-month basis and has a value of 1.00 to 5.00 when at least ten ratings have been received. Otherwise, the value is 0.00. |
| DSRSummary.DSRType | token | Always |
One of the areas in which a buyer can provide a seller a detailed seller rating. The detailed seller rating system is based on a one-to-five-star scale. Five stars is the highest rating, and one star is the lowest. Applicable values:
|
| DSRSummary.rating1Count | int | Always | The total number of 1-star ratings received by a seller for a particular DSR area. |
| DSRSummary.rating2Count | int | Always | The total number of 2-star ratings received by a seller for a particular DSR area. |
| DSRSummary.rating3Count | int | Always | The total number of 3-star ratings received by a seller for a particular DSR area. |
| DSRSummary.rating4Count | int | Always | The total number of 4-star ratings received by a seller for a particular DSR area. |
| DSRSummary.rating5Count | int | Always | The total number of 5-star ratings received by a seller for a particular DSR area. |
| DSRSummary.totalRatingCount | int | Always | The total number of ratings a seller has received for a particular DSR area. |
| Input Output Change History User Notes |
New to making API calls? Please see Making an API Call.
Note: Some item IDs, user IDs, or other data in these samples might no longer be active on eBay. If necessary, you can substitute current eBay data in your requests.
Retrieves a DSR summary report that has been previously created.
Description
User magicalbookseller has created a DSR summary report for transactions that ended in the fourth quarter of 2008. She wants to review DSR scores to determine what areas of her business model could use improvement. She must have sent the request to create the report at least an hour earlier.
User magicalbookseller will compare the scores with scores for related criteria. For example, since the report was created for a specific time period, she might compare the report with a report created for the same time period of the previous year.
If the report is not ready, the request will fail. The error message recommends the user try again in an hour.
Input
The only input for this call is jobId, which specifies the report to retrieve.
XML format (HTTP POST). Also available are the .txt version of this XML and the SOAP equivalent. <?xml version="1.0" encoding="UTF-8"?> <getDSRSummaryRequest xmlns="http://www.ebay.com/marketplace/services"> <jobId>42374300864923356090</jobId> </getDSRSummaryRequest>
Output
The response has data for each DSR category. The DSRType indicates the DSR category, ItemAsDescribed, Communication, ShippingTime, and ShippingCharge. The DSRAverage value is critical for compliance with the Seller Performance Policy.
See the following eBay Help pages for more information about DSRs and how they affect sellers:
XML format. Also available are the .txt version of this XML and the SOAP equivalent. <getDSRSummaryResponse xmlns:sct="http://www.ebay.com/soaframework/common/types" xmlns="http://www.ebay.com/marketplace/services"> <ack>Success</ack> <version>1.0.0</version> <timestamp>2009-02-16T00:47:41.160Z</timestamp> <DSRSummary> <DSRType>ItemAsDescribed</DSRType> <DSRAverage>4.72</DSRAverage> <totalRatingCount>542</totalRatingCount> <rating1Count>0</rating1Count> <rating2Count>0</rating2Count> <rating3Count>27</rating3Count> <rating4Count>100</rating4Count> <rating5Count>415</rating5Count> </DSRSummary> <DSRSummary> <DSRType>Communication</DSRType> <DSRAverage>4.65</DSRAverage> <totalRatingCount>542</totalRatingCount> <rating1Count>0</rating1Count> <rating2Count>0</rating2Count> <rating3Count>45</rating3Count> <rating4Count>98</rating4Count> <rating5Count>399</rating5Count> </DSRSummary> <DSRSummary> <DSRType>ShippingTime</DSRType> <DSRAverage>4.16</DSRAverage> <totalRatingCount>542</totalRatingCount> <rating1Count>1</rating1Count> <rating2Count>1</rating2Count> <rating3Count>23</rating3Count> <rating4Count>400</rating4Count> <rating5Count>117</rating5Count> </DSRSummary> <DSRSummary> <DSRType>ShippingCharge</DSRType> <DSRAverage>4.31</DSRAverage> <totalRatingCount>542</totalRatingCount> <rating1Count>0</rating1Count> <rating2Count>0</rating2Count> <rating3Count>17</rating3Count> <rating4Count>340</rating4Count> <rating5Count>185</rating5Count> </DSRSummary> </getDSRSummaryResponse>
| Input Output Samples User Notes |
| Version | Description |
|---|---|
| 1.0.1 2009-06-24 |
|
| 1.0.0 2009-02-04 |
|
| Input Output Samples Change History User Notes |
This document was generated with a customized version of the apireferencedocs tool [0.5M zip].
© 2009 eBay, Inc. All rights reserved.