cURL
curl --request GET \ --url https://forgegames.org/api/users \ --header 'Authorization: Basic <encoded-value>'
[ { "id": "<string>", "externalId": "<string>", "createdAt": "<string>", "updatedAt": "<string>", "teamId": "<string>" } ]
Lists all users belonging to the specified team. Users can own item instances or interact with spaces.
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
Successful response
191