Call a Blackboard API endpoint directly
bb_raw_requestSend a raw request to any Blackboard API path using your stored session and get the raw JSON response. Use this escape hatch when no dedicated tool covers the endpoint you need.
Instructions
Escape hatch: issues a request against any Blackboard API path using the stored session, and returns the raw JSON. Use this when no dedicated tool covers what you need. The Ultra internal API (/learn/api/v1/...) exposes far more than this server models. Call bb_list_endpoints first to see what is already wrapped.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | JSON request body for non-GET methods. | |
| path | Yes | Instance-relative API path, e.g. "/learn/api/v1/courses/_12345_1/groups". | |
| query | No | Query parameters as a flat object. | |
| method | No | Default GET. Anything else needs writes enabled. | |
| maxChars | No | Truncate the response to this many characters. Default 15000. |