eBay Search Inquiries by Criteria
Overview
This action retrieves the details of inquiries based on the provided search criteria from eBay's Post-Order API.
Inputs
appId | String | eBay Application ID |
certId | String | eBay Certificate ID |
refreshToken | String | eBay Refresh Token |
limit | String | Limit for the number of inquiries to return (default is 200) |
marketPlaceID | String | eBay Marketplace ID (e.g., EBAY_UK ) |
searchCriteria | Object | Criteria to search inquiries |
Outputs
Success | Boolean | Whether successfully retrieved the inquiries |
Inquiry List | Array | List of inquiries matching the search criteria |
Total Number of Inquiries | Number | Total number of inquiries found |
Pagination Output | Object | Information about the pagination of results |
Examples
The following action will search for inquiries with a limit of 50 and specific search criteria:
{
"appId": "YourAppID",
"certId": "YourCertID",
"refreshToken": "YourRefreshToken",
"limit": "50",
"marketPlaceID": "EBAY_UK",
"searchCriteria": {
"inquiryType": "ITEM_NOT_RECEIVED",
"creationDateRange": {
"fromDate": "2023-01-01T00:00:00.000Z",
"toDate": "2023-06-30T23:59:59.999Z"
}
}
}
This query returns the following data on success:
{
"success": true,
"data": [
{
"inquiryID": "XXXXXX",
"inquiryType": "ITEM_NOT_RECEIVED",
"itemId": "1234567890",
"transactionId": "0987654321",
"status": "OPEN",
// Other inquiry details...
},
// More inquiries...
],
"totalNumberOfInquiries": 100,
"paginationOutput": {
"totalPages": 2,
"pageNumber": 1
}
}
On failure, it returns:
{
"success": false,
"data": {
"message": "Failed to search inquiries"
}
}
Updated 5 months ago