ApiSdk proxy
Sdk Cache Set
Write to cache. Keys are auto-namespaced by ``user_id`` and ``skill_id`` to prevent cross-tenant leakage.
Authorization
User API Key AuthorizationBearer <token>
User API key (mgw_usr_live_* or mgw_usr_test_*)
In: header
Path Parameters
key*string
Cookie Parameters
access_token?|
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X PUT "https://loading/api/v1/sdk/cache/string" \ -H "Content-Type: application/json" \ -d '{ "value": null }'Empty
{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Sdk Cache Get
Read from cache. Keys are auto-namespaced by ``user_id`` and ``skill_id`` (extracted from the API key description) to prevent cross-tenant leakage.
Sdk Execute Tool
Execute a tool via the SDK. Validates that the requested tool is in the scoped token's ``allowed_tools`` list (stored in ``api_key.scopes``), resolves the prefixed name to a server + tool, and delegates to the shared ``execute_tool`` function.
