action ebay_get_advertising_eligibility {
label: "getAdvertisingEligibility"
description: "This method allows developers to check the seller eligibility status for eBay advertising programs."
provider: ebay
method: GET
path: "/advertising_eligibility"
encoding: json
input: {
type: "object"
properties: {
"X-EBAY-C-MARKETPLACE-ID": {
type: "string"
}
program_types: {
type: "string"
}
}
required: ["X-EBAY-C-MARKETPLACE-ID"]
additionalProperties: false
}
output: {
type: "object"
description: "The base response of the getAdvertisingEligibility method that contains the seller eligibility information for one or more advertising programs."
properties: {
advertisingEligibility: {
type: "array"
description: "An array of response fields that define the seller eligibility for eBay adverstising programs."
items: {
type: "object"
description: "A type that is used to provide the seller's eligibility status for an eBay advertising program."
properties: {
programType: {
type: "string"
description: "The eBay advertising program for which a seller may be eligible. For implementation help, refer to eBay API documentation"
}
reason: {
type: "string"
description: "The reason why a seller is ineligible for the specified eBay advertising program.
This field is only returned if the seller is ineligible for the eBay advertising program. For implementation help, refer to eBay API documentation"
}
status: {
type: "string"
description: "The seller elibibilty status for the specified eBay advertising program. For implementation help, refer to eBay API documentation"
}
}
}
}
}
}
}