Getwhitelist

GET /whitelist/getwhitelist

Query parameters

  • realmid string Required

    Realm ID

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • result array[object] Required

      At least 1 element.

      Hide result attributes Show result attributes array[object]
      • id integer Required
      • uniqueNetId string Required

        Minimum length is 1.

      • description string

        Minimum length is 1.

    • problem null | string
    • success boolean Required
  • 401

    Unauthorized

GET /whitelist/getwhitelist
curl \
 -X GET https://myrealm.lastoasis.gg/api/whitelist/getwhitelist?realmid=string \
 -H "API Key: $API_KEY"
Response examples (200)
{
  "result": [
    {
      "id": 42,
      "uniqueNetId": "string",
      "description": "string"
    }
  ],
  "problem": null,
  "success": true
}
Response examples (200)
{
  "result": [
    {
      "id": 42,
      "uniqueNetId": "string",
      "description": "string"
    }
  ],
  "problem": null,
  "success": true
}