Box Openapi
Connector for the box-openapi API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- Base URL:
https://api.box.com/2.0 - Auth: OAuth 2.0 (user-delegated) — attach an InTouch
oauthcredential. Mint one withitcli.py /oauth <provider>(device-code) or/google-auth(Google); the server auto-refreshes the access token before each run, so the connector never handles or stores tokens.
Operations
get_authorize— GET /authorize — Authorize userget_files_id— GET /files/{file_id} — Get file informationget_files_id_app_item_associations— GET /files/{file_id}/app_item_associations — List file app item associationsget_files_id_content— GET /files/{file_id}/content — Download fileget_files_upload_sessions_id— GET /files/upload_sessions/{upload_session_id} — Get upload sessionget_files_upload_sessions_id_parts— GET /files/upload_sessions/{upload_session_id}/parts — List parts
Inputs
- a linked
oauthcredential (no key inputs) — the server injects a freshAuthorization: Bearerfrom it operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: get_authorize
# (attach an 'oauth' credential to the task — no inline secrets)