# AuctionPlayerUpdateEvent

This event is called a player's data has been updated, you can view the JavaDocs for this event [here](https://javadocs.olziedev.com/playerauctions/com/olziedev/playerauctions/api/events/update/AuctionPlayerUpdateEvent.html). Please note that this event will only be triggered for the creator of the auction if the server has setup like that.

## **Received Data**

Once the event is triggered, you will receive a JSON object containing the data below:

```json
{
  "name" : "AuctionPlayerUpdateEvent",
  "type" : "EVENT_TRIGGERED",
  "event" : {
    "cancelled" : false,
    "updatedValue" : {
      "logs" : [ ],
      "backpack" : [ ],
      "staticAuctions" : 0,
      "blacklistedPlayers" : [ ],
      "madeOffline" : [ ],
      "maximumAuctions" : 9223372036854775807,
      "prettyMaximumAuctions" : "Unlimited",
      "sellPrice" : 500.0,
      "uuid" : "5ca251ab-589d-4f04-8f0c-28404d0686b0",
      "messages" : [ ],
      "name" : "ForgotUrPassword",
      "language" : null
    },
    "type" : "RECENT_AUCTION_UPDATE",
    "asynchronous" : true
  }
}
```
