Aukro WebAPI
doGetMyBidItems
This method provides all functions of ”Bidding” tabs available in My Allegro. Additionally it allows for sorting and searching offers by name.
-
sessionId | String | required
A user’s session identifier received using the method doLogin(Enc). -
sortOptions | SortOptionsStruct
A structure containing information about the method of sorting offers.-
sortType | Integer
A parameter which allows for indicating the type of sort (1 - by end time (default value for the tab), 2 - by current price, 3 - by offer name, 4 - by number of bids, 5 - by the highest bid, 6 - by seller’s username, 8 - by my maximum price, 12 - by number of bid items). -
sortOrder | Integer
A parameter which allows for indicating the sort order (1 - ascending (default value for the tab), 2 - descending).
-
sortType | Integer
-
searchValue | String
A phrase searched in offers (relates to searching by the offer title). It allows for searching using characters such as *, -, () and “”. -
categoryId | Integer
A parameter which allows for indicating a category of displayed offers. -
itemIds | Long[]
Array of offer identifiers (max.: 100). -
pageSize | Integer
A parameter which allows for indicating the number of displayed offers (min.: 1, max.: 1,000, default value: 100). -
pageNumber | Integer
A parameter which allows for indicating data portions to be displayed (default value: 0).
-
bidItemsCounter | Integer
Number of placed bids (reflecting filters provided on method input). -
bidItemsList | BidItemStruct[]
Array of structures with exact information about placed bids.-
itemId | Long
Offer identifier. -
itemTitle | String | required
Offer title. -
itemThumbnailUrl | String | required
Link to offer thumbnail. -
itemPrice | ItemPriceStruct[]
Array of structures containing information about the item price.-
priceType | Integer
Price type (1 - Buy it Now!, 2 - current price (bidding), 5 - my maximum bid (bidding)). -
priceValue | BigDecimal | required
Item price.
-
priceType | Integer
-
itemBidQuantity | Integer
Number of items with placed bids. -
itemLeftQuantity | Integer
Number of available items. -
itemQuantityType | Integer
Type of available items (1 - single items, 2 - sets, 3 - pairs). -
itemEndTime | Long
End time (Unix time). -
itemEndTimeLeft | String | required
Time to end. -
itemSeller | UserInfoStruct | required
A structure containing information about seller.-
userId | Integer
User identifier. -
userLogin | String | required
Username. -
userRating | Integer
User’s score. -
userIcons | Integer
Additional information about a user. A bitmask: 1 - not activated account, 2 - Junior account, 4 - not registered user, 8 - “About me” page, 16 - Company account, 32 - shop, 64 - Super Seller (only in molotok.ru). -
userCountry | Integer
Identifier of a user’s country.
-
userId | Integer
-
itemBiddersCounter | Integer
A counter of placed bids. -
itemHighestBidder | UserInfoStruct | required
A structure containing information about a user who has placed the highest bid. Only for single-item bidding.-
userId | Integer
User identifier. -
userLogin | String | required
Username. -
userRating | Integer
User’s score. -
userIcons | Integer
Additional information about a user. A bitmask: 1 - not activated account, 2 - Junior account, 4 - not registered user, 8 - “About me” page, 16 - Company account, 32 - shop, 64 - Super Seller (only in molotok.ru). -
userCountry | Integer
Identifier of a user’s country.
-
userId | Integer
-
itemCategoryId | Integer
An identifier of the category where the offer is listed. -
itemViewsCounter | Integer
Number of offer views. -
itemNote | String | required
Content of a memo added to the offer. -
itemSpecialInfo | Integer
Information whether an offer is marked as Standard Allegro [PL], Aukro Plus [CZ] or Super Offer [UA/KZ] (0 - no, 1 - yes). Note: Standard Allegro is deprecated -
itemShopInfo | Integer
Information on whether it is a shop offer (0 - no, 1 - yes). -
itemProductInfo | Long
Outdated field (will always return 0). -
itemPayuInfo | Integer
Information on whether the offer enables payment via PayU (0 - no, 1 - yes).
-
itemId | Long
-
ERR_INCORRECT_CATEGORY_ID
Incorrect category identifier. -
ERR_INCORRECT_PAGE_NUMBER
Incorrect value of pageNumber parameter (lesser than 0). -
ERR_INCORRECT_PAGE_SIZE
Incorrect value of pageSize parameter (lesser than 0 or greater than 1,000). -
ERR_INCORRECT_SEARCH_VALUE
Searched phrase contains unacceptable characters. -
ERR_INCORRECT_SORT_ORDER
Incorrect value of sortOrder parameter -
ERR_INCORRECT_SORT_TYPE
Incorrect value of sortType parameter -
ERR_NO_SESSION / ERR_SESSION_EXPIRED
Invalid session identifier or the session has expired. -
ERR_TOO_MANY_ITEM_IDS
Over 100 auction identifiers have been passed. -
ERR_WEBAPI_KEY_INACTIVE
WebAPI key used to generate the session has been deactivated (the key owner has not accepted WebAPI User Agreement).