GET
/
classifiers
curl --request GET \
  --url https://forgegames.org/api/classifiers \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "teamId": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "classifierOptions": [
      {
        "id": "<string>",
        "name": "<string>",
        "dropRateMultiplier": 123,
        "classifierId": "<string>"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200
application/json
Successful response

The response is of type object[].