eBay Send Message via Inquiry
Overview
This action sends a message regarding an inquiry based on the provided inquiry ID.
Inputs
Name | Type | Description |
---|---|---|
appId | String | eBay Application ID |
certId | String | eBay Certificate ID |
refreshToken | String | eBay Refresh Token |
inquiryID | String | ID of the inquiry |
messageContent | String | Content of the message to be sent |
Outputs
Name | Type | Description |
---|---|---|
success | Boolean | Whether the message was successfully sent |
data | Object | Response data from eBay API |
Examples
The following action will send a message regarding the inquiry with ID XXXXXX:
{
"appId": "YourAppID",
"certId": "YourCertID",
"refreshToken": "YourRefreshToken",
"inquiryID": "XXXXXX",
"messageContent": "Hi there, Thanks for your email. I've looked into this and I can see that the item was dispatched without any issues at our end. If your item hasn't arrived within the next 72 hours, please let me know and we can look into this further. Many thanks, Customer Support"
}
This query returns the following data on success:
{
"success": true,
"data": {
// Response from eBay API...
}
}
On failure, it returns:
{
"success": false,
"data": {
"message": "Failed to send message",
"details": null
}
}
Updated 5 months ago