cURL
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>" } ] }
Creates a new classifier with associated options for a team
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Show child attributes
Successful response
191