Documentation

eBay Get Inquiry by Inquiry ID

Overview

This action retrieves the details of an inquiry based on the provided inquiry ID.

Inputs

appIdStringeBay Application ID
certIdStringeBay Certificate ID
refreshTokenStringeBay Refresh Token
inquiryIDStringID of the inquiry
marketPlaceIDStringeBay Marketplace ID (e.g., EBAY_UK)

Outputs

SuccessBooleanWhether successfully retrieved the inquiry
Inquiry DataObjecteBay 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"
  }
}