Returns all people matching the requested query. Does not include Admins. Requires read permissions.
cURL
curl --request GET \ --url https://membership.sjaa.net/api/people \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "email": "<string>", "first_name": "<string>", "last_name": "<string>", "active": "<string>", "discord_id": "<string>" }'
[ { "id": [ "<any>" ], "contacts": [ "<any>" ], "memberships": [ "<any>" ], "first_name": "<string>", "last_name": "<string>", "discord_id": "<string>" } ]
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Array of people.
The response is of type object[].
object[]