cURL
curl --request POST \ --url https://forgegames.org/api/attributes \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "min": 123, "max": 123 } '
{ "id": "<string>", "name": "<string>", "min": 123, "max": 123, "teamId": "<string>" }
Creates a new attribute for the specified team with name and optional min/max values.
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
191
Successful response