Aukro WebAPI

doGetWaitingFeedbacks

This method allows for loading information on comments waiting to be posted by a logged user. 25 elements are returned by default. The size of a data portion can be regulated by the packageSize parameter and the offset parameter allows to control process of loading next portions of data.

  1. sessionHandle | String | required
    User's session identifier received using the doLogin(Enc) method.
  2. offset | Integer
    Parameter which allows for controlling loading of new data portions (portion numbers are indexed from 0).
  3. packageSize | Integer | required
    Parameter which allows for defining a size of data portion (min. 1, max. 200; 0 is set by default).
  1. feWaitList | WaitFeedbackStruct[]
    Array of structures containing information on feedback to be left.
    1. feItemId | Long
      Offer identifier.
    2. feItemName | String | required
      Offer title.
    3. feToUserId | Integer
      Identifier of a user who will receive feedback.
    4. feOp | Integer
      Side which will receive feedback (1 - feedback for seller, 2 - feedback for buyer).
    5. feAnsCommentType | String | required
      Type of feedback left by the second party (POS - positive, NEG - negative, NEU - neutral, NULL - not yet left).
    6. fePossibilityToAdd | Integer
      Information on whether it is possible to leave feedback for a given transaction (1 - yes, 0 - no, violation of User Agreement).
  • ERR_INPUT_OFFSET_OR_PACKAGE_SIZE_ERROR
    Incorrect value of data portion size (min. 1, max. 200).
  • ERR_NO_DATABASE
    Problems with Allegro database.
  • ERR_NO_SESSION / ERR_SESSION_EXPIRED
    Invalid session identifier or the session has expired.
  • ERR_WEBAPI_KEY_INACTIVE
    The WebAPI key has been deactivated (User Agreement not accepted).
  • ERR_WEBAPI_NOT_AVAIL
    Problems with Aukro WebAPI service.