GET
/
attributes
curl --request GET \
  --url https://forgegames.org/api/attributes \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "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.

Query Parameters

id
string
Maximum length: 191

Response

200
application/json
Successful response
id
string
required
Maximum length: 191
name
string
required
Maximum length: 191
min
number
required
max
number
required
teamId
string
required
Maximum length: 191