POST
/
attributes
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>"
}

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.