GET
/
people
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>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Array of people.

The response is of type object[].