Olzie Development
HomeDiscord
  • Introduction
  • Minecraft Plugins
    • Player Auctions
      • Commands & Permissions
      • Configuration
        • Item Configuration
        • Menu Configuration
        • Lang Configuration
      • FAQ
        • Database FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
        • Creating expansions
          • Auction Currency
          • Auction Product
          • Auction Converter
        • Creating Commands
        • Using Events
      • Rest API
        • Endpoints
          • GET
            • /api/playerauctions/getPlayerAuctionByID/{id}
            • /api/playerauctions/getRecentAuctionsByUUID/{page}
            • /api/playerauctions/getPlayerAuctions/{page}
            • /api/playerauctions/getAuctionCategoryByName/{categoryname}
            • /api/playerauctions/getAuctionCategories/{page}
            • /api/playerauctions/getAuctionPlayerByUUID/{uuid}
          • DELETE
            • /api/playerauctions/deleteRecentAuctionByID/{id}
        • Events
          • PlayerAuctionSellEvent
          • PlayerAuctionBuyEvent
          • PlayerAuctionBidEvent
          • PlayerAuctionBidWonEvent
          • PlayerAuctionRemoveEvent
          • AuctionExpireUpdateEvent
          • AuctionPlayerUpdateEvent
          • PlayerAuctionUpdateEvent
        • Errors
    • Player Economy
      • Commands & Permissions
      • Configuration
        • Item Configuration
        • Lang Configuration
      • FAQ
        • Database FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
        • Creating Commands
        • Using Events
      • Rest API
        • Endpoints
          • GET
          • DELETE
        • Events
        • Errors
    • Player Warps
      • Commands & Permissions
      • Configuration
        • Item Configuration
        • Menu Configuration
        • Lang Configuration
      • FAQ
        • Database FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
        • Creating expansions
          • Warp Addon
          • Warp Map Addon
          • Warp Converter
          • Warp Currency
        • Creating Commands
        • Using Events
      • Rest API
        • Endpoints
          • GET
            • /api/playerwarps/getPlayerWarpByName/{warpname}
            • /api/playerwarps/getSponsorWarp/{id}
            • /api/playerwarps/getPlayerWarpByID/{id}
            • /api/playerwarps/getPlayerWarps/{page}
            • /api/playerwarps/getWarpCategoryByName/{categoryname}
            • /api/playerwarps/getWarpCategories/{page}
            • /api/playerwarps/getWarpPlayerByUUID/{uuid}
          • DELETE
            • /api/playerwarps/deletePlayerWarpByName/{warpname}
            • /api/playerwarps/deletePlayerWarpByID/{id}
        • Events
          • PlayerWarpTeleportEvent
          • PlayerWarpSponsorEvent
          • PlayerWarpRentEvent
          • PlayerWarpRemoveEvent
          • PlayerWarpCreateEvent
          • WarpPlayerUpdateEvent
          • PlayerWarpUpdateEvent
        • Errors
    • Player Businesses
      • Commands & Permissions
      • Configuration
        • Item Configuration
        • Menu Configuration
        • Lang Configuration
      • FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
      • Rest API
        • Endpoints
          • GET
          • DELETE
        • Events
        • Errors
    • Player Trade
      • Commands & Permissions
      • Configuration
        • Item Configuration
        • Menu Configuration
        • Lang Configuration
      • FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
      • Rest API
        • Endpoints
          • GET
          • DELETE
        • Events
        • Errors
    • Player Treasury
      • Commands & Permissions
      • Configuration
        • Lang Configuration
      • FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
      • Rest API
        • Endpoints
          • GET
          • DELETE
        • Events
        • Errors
    • Player Elections
      • Commands & Permissions
      • Configuration
        • Lang Configuration
      • FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
      • Rest API
        • Endpoints
          • GET
          • DELETE
        • Events
        • Errors
    • Night Market
      • Commands & Permissions
      • Configuration
        • Item Configuration
        • Menu Configuration
        • Lang Configuration
      • FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
        • Creating expansions
          • Market Currency
        • Creating Commands
        • Using Events
      • Rest API
        • Endpoints
          • GET
          • DELETE
        • Events
        • Errors
Powered by GitBook
On this page

Was this helpful?

  1. Minecraft Plugins
  2. Player Warps
  3. Rest API
  4. Endpoints
  5. GET

/api/playerwarps/getWarpPlayerByUUID/{uuid}

Retrieve a player's information associated with a specific UUID.

  • Parameters:

    • uuid: The UUID of the player.

  • Response:

    The response will return a JSON object with the following structure:

    {
      "uuid": "5ca251ab-589d-4f04-8f0c-28404d0686b0",
      "messages": [],
      "sponsorCooldown": null,
      "staticWarps": 0,
      "logs": [],
      "earnedRateRewards": [],
      "lastPlayed": 1735595807797,
      "pendingWarp": null,
      "maxWarpCostPrice": 500.0,
      "minWarpCostPrice": -1.0,
      "priceFreeLimit": -1,
      "waitTeleportTime": 3,
      "maximumWarps": 9223372036854775807,
      "prettyMaximumWarps": "Unlimited",
      "name": "ForgotUrPassword",
      "language": "en_gb"
    }

Fields:

  • uuid (String): The UUID of the player.

  • messages (Array): Messages related to the player.

  • sponsorCooldown (Object|null): Sponsor cooldown details.

  • staticWarps (Number): Number of static warps owned by the player.

  • logs (Array): Logs associated with the player.

  • earnedRateRewards (Array): Rewards earned by the player.

  • lastPlayed (Number): The last played timestamp (in milliseconds).

  • pendingWarp (Object|null): Pending warp details.

  • maxWarpCostPrice (Number): Maximum cost for creating a warp.

  • minWarpCostPrice (Number): Minimum cost for creating a warp.

  • priceFreeLimit (Number): Limit for free warps (-1 if unlimited).

  • waitTeleportTime (Number): Time in seconds to wait before teleporting.

  • maximumWarps (Number): The maximum number of warps allowed.

  • prettyMaximumWarps (String): A human-readable representation of maximum warps (e.g., "Unlimited").

  • name (String): The player's name.

  • language (String): The player's language (locale).

Note:

  • Based on server settings, you may not be able to access warp information if you do not own the warp.

Previous/api/playerwarps/getWarpCategories/{page}NextDELETE

Last updated 4 months ago

Was this helpful?

is required to access this endpoint.

Authentication