Plugin API
HomeGitHub
  • Welcome
  • Rate Limits
  • Authentication
  • Error Handling
  • Official Plugins
  • RPC
  • Endpoints
    • Information
    • Command Queue
    • Listing
    • Packages
    • Community Goals
    • Payments
    • Checkout
    • Gift Cards
    • Coupons
    • Bans
    • Sales
    • Player Lookup
    • Customer Purchases
Powered by GitBook
On this page

Was this helpful?

  1. Endpoints

Information

Get server information

GET https://plugin.tebex.io/information

This endpoint returns general information about the authenticated account and server.

Headers

Name
Type
Description

X-Tebex-Secret

string

The secret key of the server.

{
  "account": {
    "id": 123,
    "domain": "http://example.tebex.io",
    "name": "Tebex Store Example",
    "currency": {
      "iso_4217": "GBP",
      "symbol": "£"
    },
    "online_mode": true,
    "game_type": "Minecraft: Java Edition",
    "log_events": true
  },
  "server": {
    "id": 123,
    "name": "Minecraft Server"
  }
}
PreviousRPCNextCommand Queue

Last updated 1 year ago

Was this helpful?