Expand description
HTTP/JSON transport every Microsoft Graph coroutine delegates to: builds the authorized request and parses the JSON response, or the Graph error envelope on failure.
Microsoft Graph reference: https://learn.microsoft.com/en-us/graph/api/overview.
Structs§
- Msgraph
NoResponse - Marker for endpoints that return an empty body (DELETE, sendMail, send draft); deserialises from anything, including nothing.
- Msgraph
Send - I/O-free coroutine sending one authorized Microsoft Graph request
and parsing its JSON response into
T. - Msgraph
Send Output - Terminal value of every coroutine: the parsed response plus the connection reuse hint.
Enums§
- Msgraph
Send Error - Error returned by
MsgraphSendand the raw$valuecoroutines.
Constants§
- MSGRAPH_
API_ BASE - Base URL of the Microsoft Graph API, version 1.0.
Functions§
- parse_
api_ error - Parse a Microsoft Graph error envelope into its
(http_status, code, message)triple. - user_
path - Base path segment addressing a mailbox owner:
meas-is, any other value asusers/{id}.