• Resolved Arnaldo Reyes

    (@arniereyes)


    Hi,

    I am trying to understand how the plugin is working using a woocommerce API rest API.
    I found out than upon reading the products, i see that the bidding history were not listed in the return JSON file. See below.

    GET: https://localhost/wp-json/wc/v3/products/58

    ….
    “meta_data”: [
    {
    “id”: 90,
    “key”: “_oembed_bee6ad2cb6511c39b9e85e64021347ee”,
    “value”: “{{unknown}}”
    },
    {
    “id”: 112,
    “key”: “woo_ua_product_condition”,
    “value”: “new”
    },
    {
    “id”: 113,
    “key”: “woo_ua_opening_price”,
    “value”: “1000”
    },
    {
    “id”: 114,
    “key”: “woo_ua_lowest_price”,
    “value”: “1000”
    },
    {
    “id”: 115,
    “key”: “woo_ua_bid_increment”,
    “value”: “1000”
    },
    {
    “id”: 116,
    “key”: “woo_ua_auction_end_date”,
    “value”: “2019-10-18 07:47:55”
    },
    {
    “id”: 117,
    “key”: “woo_ua_auction_start_date”,
    “value”: “2019-10-17 07:51:01”
    },
    {
    “id”: 118,
    “key”: “woo_ua_auction_type”,
    “value”: “normal”
    },
    {
    “id”: 119,
    “key”: “woo_ua_auction_has_started”,
    “value”: “1”
    },
    {
    “id”: 120,
    “key”: “woo_ua_auction_last_activity”,
    “value”: “1571298733”
    },
    {
    “id”: 121,
    “key”: “woo_ua_auction_current_bid”,
    “value”: “5000”
    },
    {
    “id”: 122,
    “key”: “woo_ua_auction_current_bider”,
    “value”: “1”
    },
    {
    “id”: 123,
    “key”: “woo_ua_auction_bid_count”,
    “value”: “4”
    }
    ],

    There are 4 bids done with my sample page in wordpress but I only see the latest bids. Would it be possible to see the previous bids.

    By the way I am still using the free version since I want to see how useful the plugin with the site I am working currently.

    Thank you in advance.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Nitesh

    (@nitesh_singh)

    Hi @arniereyes ,

    We are saving auction BIDs data in custom table name with “PRIFIX_woo_ua_auction_log”.
    only latest bid saved in Product meta data name with “woo_ua_auction_current_bid”.
    So if you want to get all BIds detail you can get from tbale name with “PRIFIX_woo_ua_auction_log” with product id.

    Regards,
    Nitesh

    Thread Starter Arnaldo Reyes

    (@arniereyes)

    Hi Nitesh,

    Actually I am not able to see the table you mentioned. By the way is it only visible to the PRO version?

    Thanks

    Thread Starter Arnaldo Reyes

    (@arniereyes)

    Hi Nitesh,

    Please disregard the my follow-up questions.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Bidding History’ is closed to new replies.