POST
/
classifiers
curl --request POST \
  --url https://forgegames.org/api/classifiers \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "classifierOptions": [
    {
      "name": "<string>",
      "dropRateMultiplier": 123
    }
  ]
}'
{
  "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.

Body

application/json

Response

200
application/json
Successful response

The response is of type object.