eBay Get Inquiry by Inquiry ID
Overview
This action retrieves the details of an inquiry based on the provided inquiry ID.
Inputs
appId | String | eBay Application ID |
certId | String | eBay Certificate ID |
refreshToken | String | eBay Refresh Token |
inquiryID | String | ID of the inquiry |
marketPlaceID | String | eBay Marketplace ID (e.g., EBAY_UK ) |
Outputs
Success | Boolean | Whether successfully retrieved the inquiry |
Inquiry Data | Object | eBay inquiry data |
Examples
The following action will fetch the details of the inquiry with ID XXXXXX:
{
"appId": "YourAppID",
"certId": "YourCertID",
"refreshToken": "YourRefreshToken",
"inquiryID": "XXXXXX",
"marketPlaceID": "EBAY_UK"
}
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...
}
}
On failure, it returns:
{
"success": false,
"data": {
"message": "Failed to fetch inquiry details"
}
}
Updated 5 months ago