eBay Get Order Data by Order ID
Overview
This action retrieves complete order details and shipping fulfillment information using an order ID.
Inputs
clientId | String | eBay Client ID (App ID) |
clientSecret | String | eBay Client Secret (Cert ID) |
refreshToken | String | eBay Refresh Token |
orderId | String | eBay Order ID |
marketplaceId | String | eBay Marketplace ID |
Outputs
success | Boolean | Whether data was retrieved successfully |
orderData | Object | Complete eBay order details |
fulfillmentData | Array | Shipping fulfillment information |
Examples
Request:
{
"clientId": "YourClientID",
"clientSecret": "YourClientSecret",
"refreshToken": "YourRefreshToken",
"orderId": "05-12487-02510",
"marketplaceId": "EBAY_US"
}
Successful response:
{
"success": true,
"orderData": {
"orderId": "05-12487-02510",
"creationDate": "2024-12-19T14:34:03.000Z",
"orderFulfillmentStatus": "FULFILLED",
"orderPaymentStatus": "PAID",
"lineItems": [...],
"fulfillmentHrefs": [...]
},
"fulfillmentData": [
{
"lineItems": [...],
"shippingTracking": {...},
"fulfillmentDate": "..."
}
]
}
Failed response:
{
"success": false,
"error": "Failed to fetch order details"
}
Updated 6 days ago