/All
Get All Users from Roster
Returns a list of all users along with their information from the roster.
Request
URL
/api/v1/roster/users/allMethod
GET
Response
Success Response
Code: 200 OK
Content:
[ { "user_info": { "discord_id": "123456789012345678", "discord_user": "username#1234" }, "arma_data": { "ingame_name": "IngameName", "rank_name": "RankName", "team_name": "TeamName", "default_role": "DefaultRole", "abv": "ABV", "time_in_grade": "TimeInGrade", "ao_points": "AOPoints", "promotion_eligible": "PromotionEligible", "hire_date": "HireDate", "promotion_date": "PromotionDate" } }, ... ]
Sample Call
GET https://api.arma.origin-development.net/api/v1/roster/users/all
Notes
This endpoint retrieves all users' data from the roster.
Each user object contains their Discord ID, Discord username, and Arma data.
The data is fetched from a Google Sheets spreadsheet.
If there are no users available, an empty array is returned.
Last updated