Parameter | Type |
---|---|
_context | STRING |
siteId | STRING |
sortId | STRING |
keywords | STRING |
maxPrice | STRING |
freeShipping | BOOLEAN |
isNoBid | BOOLEAN |
[
{
"description": "Fetches items listed on eBay based on specified criteria.",
"name": "retrieveEbayProducts",
"parameters": {
"properties": {
"_context": {
"type": "string"
},
"siteId": {
"type": "string",
"default": "EBAY_US",
"enum": [
"EBAY_US",
"EBAY_CA",
"EBAY_GB",
"EBAY_AU",
"EBAY_DE",
"EBAY_ES",
"EBAY_FR",
"EBAY_IT"
]
},
"sortId": {
"type": "string",
"enum": [
"BestMatch",
"price",
"-price",
"newlyListed",
"endingSoonest"
]
},
"keywords": {
"type": "string"
},
"maxPrice": {
"type": "string"
},
"freeShipping": {
"type": "boolean"
},
"isNoBid": {
"type": "boolean"
}
},
"required": [
"_context",
"siteId"
],
"type": "object"
}
},
{
"description": "Fetches items listed on AliExpress based on specified criteria.",
"name": "retrieveAliexpressProducts",
"parameters": {
"properties": {
"_context": {
"type": "string"
},
"pageNumber": {
"type": "integer",
"default": 1
},
"currencyId": {
"type": "integer",
"default": 0
},
"languageId": {
"type": "integer",
"default": 0
},
"sortId": {
"type": "integer",
"default": 0
},
"keywords": {
"type": "string"
}
},
"required": [
"_context",
"keywords"
],
"type": "object"
}
},
{
"description": "Retrieve upcoming Ebay events",
"name": "RetrieveUpcomingEbayEvents",
"parameters": {
"properties": {
"_context": {
"type": "string"
},
"ebay_site": {
"type": "string",
"enum": [
"United States",
"Austria",
"Australia",
"Belgium",
"Canada",
"Switzerland",
"Germany",
"Spain",
"France",
"Great Britain",
"Hong Kong",
"Ireland",
"Italy",
"Malaysia",
"Netherlands",
"Philippines",
"Poland",
"Singapore",
"Taiwan"
]
}
},
"required": [
"_context"
],
"type": "object"
}
},
{
"description": "Retrieve upcoming Ebay events with coupons",
"name": "RetrieveUpcomingEbayCoupons",
"parameters": {
"properties": {
"_context": {
"type": "string"
},
"page": {
"type": "integer"
},
"ebay_site": {
"type": "string",
"enum": [
"United States",
"Austria",
"Australia",
"Belgium",
"Canada",
"Switzerland",
"Germany",
"Spain",
"France",
"Great Britain",
"Hong Kong",
"Ireland",
"Italy",
"Malaysia",
"Netherlands",
"Philippines",
"Poland",
"Singapore",
"Taiwan"
]
}
},
"required": [
"_context"
],
"type": "object"
}
},
{
"description": "Get eBay Event Items",
"name": "RetrieveUpcomingEbayEventItems",
"parameters": {
"properties": {
"_context": {
"type": "string"
},
"siteId": {
"type": "string",
"enum": [
"EBAY_US",
"EBAY_AT",
"EBAY_AU",
"EBAY_BE",
"EBAY_CA",
"EBAY_CH",
"EBAY_DE",
"EBAY_ES",
"EBAY_FR",
"EBAY_GB",
"EBAY_HK",
"EBAY_IE",
"EBAY_IT",
"EBAY_MY",
"EBAY_NL",
"EBAY_PH",
"EBAY_PL",
"EBAY_SG",
"EBAY_TW",
"EBAY_MOTORS"
]
},
"eventId": {
"type": "string"
}
},
"required": [
"_context",
"siteId",
"eventId"
],
"type": "object"
}
},
{
"description": "Get prompts examples",
"name": "ShowPromptsExamples",
"parameters": {
"properties": {
"_context": {
"type": "string"
}
},
"required": [
"_context"
],
"type": "object"
}
}
]