cURL
curl --request PUT \ --url https://forgegames.org/api/attributes/{id} \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "min": 123, "max": 123, "teamId": "<string>" } '
{ "id": "<string>", "name": "<string>", "min": 123, "max": 123, "teamId": "<string>" }
Updates an existing attribute’s properties including name, min, and 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