Get Possible Tasks

This endpoint retrieves all possible tasks from the database.

GET/PossibleTask/GetPossibleTasks

Authorization

AuthorizationRequiredBearer <token>

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

In: header

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

Returns a list of possible tasks.

[
  {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "description": "string",
    "shortDescription": "string",
    "points": 1,
    "isActive": true,
    "maxPerPeriod": 0
  }
]