List goals
documentedRetrieve a list of goals in the organization.
GET /goalsGoalsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
Note: WorkBoard's REST API v1 is hosted under the company's domain (base host https://www.myworkboard.com/wb/). The GET goals endpoint is available at the v1 API path, for example https://www.myworkboard.com/wb/api/v1/goals, with OAuth 2.0 Bearer token authentication. See WorkBoard API docs and community references showing the /api/v1/goals pattern and the OAuth authorize/token flow. ([workboard.com](https://www.workboard.com/developer/documentation.php?utm_source=openai))
npx -y keychains@latest curl "https://www.myworkboard.com/wb/api/v1/goals?page={{$page}}&limit={{$limit}}&search={{$query}}" \
-X GET \
-H "Accept: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}"