Create Committee

This endpoint allows an admin user to create a new committee with a specified name.

POST
/Committee/CreateCommittee
AuthorizationBearer <token>

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

In: header

Query Parameters

Name?string

The name of the committee to be created. This parameter is required and must not be empty. If the name is already taken, an error will be returned.

Response Body

curl -X POST "https://loading/Committee/CreateCommittee"
{
  "name": "string"
}
Empty
Empty
Empty