action ebay_get_privileges {
label: "getPrivileges"
description: "This method retrieves the seller's current set of privileges, including whether or not the seller's eBay registration has been completed, as well as the details of their site-wide sellingLimt (the amount and quantity they can sell on a given day)."
provider: ebay
method: GET
path: "/privilege"
encoding: json
output: {
type: "object"
description: "This type is used by the base response of the getPrivileges method."
properties: {
sellerRegistrationCompleted: {
type: "boolean"
description: "If this field is returned as true, the seller's registration is completed. If this field is returned as false, the registration process is not complete."
}
sellingLimit: {
type: "object"
description: "Type used by the sellingLimit container, a container that lists the monthly cap for the quantity of items sold and total sales amount allowed for the seller's account."
properties: {
amount: {
type: "object"
description: "A complex type that describes the value of a monetary amount as represented by a global currency. When passing in an amount in a request payload, both currency and value fields are required, and both fields are also always returned for an amount in a response field."
properties: {
currency: {
type: "string"
description: "The base currency applied to the value field to establish a monetary amount.
The currency is represented as a 3-letter ISO 4217 currency code. For example, the code for the Canadian Dollar is CAD.
Default: The default currency of the eBay marketplace that hosts the listing. For implementation help, refer to eBay API documentation"
}
value: {
type: "string"
description: "The monetary amount in the specified currency."
}
}
}
quantity: {
type: "integer"
format: "int32"
description: "This field shows the monthly cap for total quantity sold allowed for the seller's account. This container may not be returned if a seller does not have a monthly cap for total quantity sold."
}
}
}
}
}
}