Get Committees

This endpoint returns a list of committees ordered by their names. It does not require any parameters and is accessible to all authenticated users. Returns a JSON response containing the list of committees.

GET/Committee/GetCommittees

Authorization

AuthorizationRequiredBearer <token>

Authorization header using the Bearer scheme. Example: "Bearer {token}"

In: header

curl -X GET "https://example.com/Committee/GetCommittees" \
  -H "Authorization: Bearer <token>"

Returns a list of committees ordered by name.

[
  {
    "name": "string"
  }
]