openapi: rename 55 cloud-side operationIds to match runtime handlers

For the 55 operations below, vendor's operationId did not match the
name cloud's runtime handlers expect. Generated types from vendor
therefore had different names (e.g. CreateSubscription200JSONResponse)
than what cloud handlers reference (Subscribe200JSONResponse), which
blocks the post-cutover combined-spec codegen.

All 55 renames target the cloud-runtime-authoritative name. Several
of these endpoints are shared concepts (queue, settings, userdata,
object_info) that OSS local also serves — the rename aligns vendor
with the longstanding cloud handler-side convention to unblock the
shared codegen. No request/response *shape* changes in this PR; only
operationId labels.

Notable categories:
  - Billing/subscriptions: 7 renames (subscribe, getBillingPlans, ...)
  - Workspace + workflows: 13 renames (createWorkflow, ...)
  - Hub: 3 renames
  - Auth/users: 5 renames
  - Shared OSS surface (settings, queue, view, userdata): 12 renames
  - Misc cloud-only: 15 renames

Identified via Comfy-Org/cloud's TestCutoverSafe build-safety gate
(BE-1106), which compares handler type references against codegen
output from the combined spec.
This commit is contained in:
Matt Miller 2026-05-22 15:37:14 -07:00
parent 112fcd5f3b
commit 96d4c86e4b

View File

@ -200,7 +200,7 @@ paths:
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
/api/queue: /api/queue:
get: get:
operationId: getQueue operationId: getQueueInfo
tags: [queue] tags: [queue]
summary: Get running and pending queue items summary: Get running and pending queue items
description: Returns the server's current execution queue, split into the currently-running prompt and the list of pending prompts. description: Returns the server's current execution queue, split into the currently-running prompt and the list of pending prompts.
@ -228,7 +228,7 @@ paths:
/api/interrupt: /api/interrupt:
post: post:
operationId: interruptExecution operationId: interruptJob
tags: [queue] tags: [queue]
summary: Interrupt current execution summary: Interrupt current execution
description: Interrupts the prompt that is currently executing. The next queued prompt (if any) will start immediately after. description: Interrupts the prompt that is currently executing. The next queued prompt (if any) will start immediately after.
@ -329,7 +329,7 @@ paths:
/api/jobs/{job_id}: /api/jobs/{job_id}:
get: get:
operationId: getJob operationId: getJobDetail
tags: [queue] tags: [queue]
summary: Get a single job by ID summary: Get a single job by ID
description: Returns the full record for a single completed prompt execution, including its outputs, status, and metadata. description: Returns the full record for a single completed prompt execution, including its outputs, status, and metadata.
@ -706,7 +706,7 @@ paths:
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
/api/object_info: /api/object_info:
get: get:
operationId: getObjectInfo operationId: getNodeInfo
tags: [node] tags: [node]
summary: Get all node definitions summary: Get all node definitions
description: | description: |
@ -809,7 +809,7 @@ paths:
/api/experiment/models: /api/experiment/models:
get: get:
operationId: getExperimentModels operationId: getModelFolders
tags: [model] tags: [model]
summary: List model folders with paths summary: List model folders with paths
description: Returns an array of model folder objects with name and folder paths. description: Returns an array of model folder objects with name and folder paths.
@ -825,7 +825,7 @@ paths:
/api/experiment/models/{folder}: /api/experiment/models/{folder}:
get: get:
operationId: getExperimentModelsByFolder operationId: getModelsInFolder
tags: [model] tags: [model]
summary: List model files with metadata summary: List model files with metadata
description: Returns the model files in the given folder with richer metadata (path index, mtime, size) than the legacy `/api/models/{folder}` endpoint. description: Returns the model files in the given folder with richer metadata (path index, mtime, size) than the legacy `/api/models/{folder}` endpoint.
@ -889,7 +889,7 @@ paths:
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
/api/users: /api/users:
get: get:
operationId: getUsers operationId: getUsersInfo
tags: [user] tags: [user]
summary: Get user storage info summary: Get user storage info
description: | description: |
@ -952,7 +952,7 @@ paths:
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
/api/userdata: /api/userdata:
get: get:
operationId: listUserdata operationId: getUserdata
tags: [userdata] tags: [userdata]
summary: List files in a userdata directory summary: List files in a userdata directory
description: Lists files in the authenticated user's data directory. Returns either filename strings or full objects depending on the `full_info` query parameter. description: Lists files in the authenticated user's data directory. Returns either filename strings or full objects depending on the `full_info` query parameter.
@ -1050,7 +1050,7 @@ paths:
"404": "404":
description: File not found description: File not found
post: post:
operationId: writeUserdataFile operationId: postUserdataFile
tags: [userdata] tags: [userdata]
summary: Write or create a userdata file summary: Write or create a userdata file
description: Writes (creates or replaces) a file in the authenticated user's data directory. description: Writes (creates or replaces) a file in the authenticated user's data directory.
@ -1156,7 +1156,7 @@ paths:
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
/api/settings: /api/settings:
get: get:
operationId: getSettings operationId: getAllSettings
tags: [settings] tags: [settings]
summary: Get all user settings summary: Get all user settings
description: Returns all settings for the authenticated user. description: Returns all settings for the authenticated user.
@ -1171,7 +1171,7 @@ paths:
type: object type: object
additionalProperties: true additionalProperties: true
post: post:
operationId: updateSettings operationId: updateMultipleSettings
tags: [settings] tags: [settings]
summary: Update user settings (partial merge) summary: Update user settings (partial merge)
description: Replaces the authenticated user's settings with the provided object. description: Replaces the authenticated user's settings with the provided object.
@ -1191,7 +1191,7 @@ paths:
/api/settings/{id}: /api/settings/{id}:
get: get:
operationId: getSetting operationId: getSettingById
tags: [settings] tags: [settings]
summary: Get a single setting by key summary: Get a single setting by key
description: Returns the value of a single setting, identified by key. description: Returns the value of a single setting, identified by key.
@ -1212,7 +1212,7 @@ paths:
nullable: true nullable: true
description: The setting value (any JSON type), or null if not set description: The setting value (any JSON type), or null if not set
post: post:
operationId: updateSetting operationId: updateSettingById
tags: [settings] tags: [settings]
summary: Set a single setting value summary: Set a single setting value
description: Sets the value of a single setting, identified by key. description: Sets the value of a single setting, identified by key.
@ -1454,7 +1454,7 @@ paths:
/internal/files/{directory_type}: /internal/files/{directory_type}:
get: get:
operationId: getInternalFiles operationId: getFiles
tags: [internal] tags: [internal]
summary: List files in a directory type summary: List files in a directory type
description: Lists the files present in one of ComfyUI's known directories (input, output, or temp). description: Lists the files present in one of ComfyUI's known directories (input, output, or temp).
@ -1576,7 +1576,7 @@ paths:
schema: schema:
$ref: "#/components/schemas/ListAssetsResponse" $ref: "#/components/schemas/ListAssetsResponse"
post: post:
operationId: createAsset operationId: uploadAsset
tags: [assets] tags: [assets]
summary: Upload a new asset summary: Upload a new asset
description: Uploads a new asset (binary content plus metadata) and registers it in the asset database. description: Uploads a new asset (binary content plus metadata) and registers it in the asset database.
@ -1709,7 +1709,7 @@ paths:
/api/assets/{id}: /api/assets/{id}:
get: get:
operationId: getAsset operationId: getAssetById
tags: [assets] tags: [assets]
summary: Get asset metadata summary: Get asset metadata
description: Returns the metadata for a single asset. description: Returns the metadata for a single asset.
@ -1925,7 +1925,7 @@ paths:
/api/assets/tags/refine: /api/assets/tags/refine:
get: get:
operationId: refineAssetTags operationId: getAssetTagHistogram
tags: [assets] tags: [assets]
summary: Get tag counts for assets matching current filters summary: Get tag counts for assets matching current filters
description: Returns suggested additional tags that would refine a filtered asset query, together with the count of assets each tag would select. description: Returns suggested additional tags that would refine a filtered asset query, together with the count of assets each tag would select.
@ -2119,7 +2119,7 @@ paths:
/api/job/{job_id}/status: /api/job/{job_id}/status:
get: get:
operationId: getCloudJobStatus operationId: getJobStatus
tags: [queue] tags: [queue]
summary: Get status of a cloud job summary: Get status of a cloud job
deprecated: true deprecated: true
@ -2193,7 +2193,7 @@ paths:
/api/history_v2: /api/history_v2:
get: get:
operationId: getHistoryV2 operationId: getHistory
tags: [history] tags: [history]
summary: Get paginated execution history (v2) summary: Get paginated execution history (v2)
deprecated: true deprecated: true
@ -2236,7 +2236,7 @@ paths:
/api/history_v2/{prompt_id}: /api/history_v2/{prompt_id}:
get: get:
operationId: getHistoryV2ByPromptId operationId: getHistoryForPrompt
tags: [history] tags: [history]
summary: Get v2 history for a specific prompt summary: Get v2 history for a specific prompt
deprecated: true deprecated: true
@ -2275,7 +2275,7 @@ paths:
/api/logs: /api/logs:
get: get:
operationId: getCloudLogs operationId: getLogs
tags: [system] tags: [system]
summary: Get cloud execution logs summary: Get cloud execution logs
deprecated: true deprecated: true
@ -2322,7 +2322,7 @@ paths:
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
/api/assets/download: /api/assets/download:
post: post:
operationId: downloadAssets operationId: createAssetDownload
tags: [assets] tags: [assets]
summary: Download assets to cloud runtime summary: Download assets to cloud runtime
description: "[cloud-only] Initiates a download of one or more assets to the cloud runtime environment. Returns a task ID for tracking download progress via WebSocket." description: "[cloud-only] Initiates a download of one or more assets to the cloud runtime environment. Returns a task ID for tracking download progress via WebSocket."
@ -2378,7 +2378,7 @@ paths:
/api/assets/export: /api/assets/export:
post: post:
operationId: exportAssets operationId: createAssetExport
tags: [assets] tags: [assets]
summary: Export assets as a downloadable archive summary: Export assets as a downloadable archive
description: "[cloud-only] Initiates a bulk export of assets. Returns a task ID for tracking progress via WebSocket. When complete, the export can be downloaded via the exports endpoint." description: "[cloud-only] Initiates a bulk export of assets. Returns a task ID for tracking progress via WebSocket. When complete, the export can be downloaded via the exports endpoint."
@ -2473,7 +2473,7 @@ paths:
/api/assets/from-workflow: /api/assets/from-workflow:
post: post:
operationId: createAssetsFromWorkflow operationId: postAssetsFromWorkflow
tags: [assets] tags: [assets]
summary: Create asset records from a workflow execution summary: Create asset records from a workflow execution
description: "[cloud-only] Registers output files from a workflow execution as assets in the asset database." description: "[cloud-only] Registers output files from a workflow execution as assets in the asset database."
@ -2563,7 +2563,7 @@ paths:
/api/assets/remote-metadata: /api/assets/remote-metadata:
get: get:
operationId: getAssetRemoteMetadata operationId: getRemoteAssetMetadata
tags: [assets] tags: [assets]
summary: Fetch metadata for a remote asset URL summary: Fetch metadata for a remote asset URL
description: "[cloud-only] Fetches and returns metadata (content type, size, filename) for a remote URL without downloading the full content." description: "[cloud-only] Fetches and returns metadata (content type, size, filename) for a remote URL without downloading the full content."
@ -2751,7 +2751,7 @@ paths:
/api/hub/assets/upload-url: /api/hub/assets/upload-url:
post: post:
operationId: getHubAssetUploadUrl operationId: createHubAssetUploadUrl
tags: [hub] tags: [hub]
summary: Get a pre-signed upload URL for a hub asset summary: Get a pre-signed upload URL for a hub asset
description: "[cloud-only] Returns a pre-signed URL that can be used to upload an asset file directly to storage." description: "[cloud-only] Returns a pre-signed URL that can be used to upload an asset file directly to storage."
@ -2935,7 +2935,7 @@ paths:
/api/hub/profiles/check: /api/hub/profiles/check:
get: get:
operationId: checkHubProfileUsername operationId: checkHubUsername
tags: [hub] tags: [hub]
summary: Check if a hub username is available summary: Check if a hub username is available
description: "[cloud-only] Returns whether the given username is available for registration." description: "[cloud-only] Returns whether the given username is available for registration."
@ -3175,7 +3175,7 @@ paths:
/api/hub/workflows/index: /api/hub/workflows/index:
get: get:
operationId: getHubWorkflowIndex operationId: listHubWorkflowIndex
tags: [hub] tags: [hub]
summary: Get the hub workflow index summary: Get the hub workflow index
description: "[cloud-only] Returns the lightweight index of all hub workflows for client-side search and navigation." description: "[cloud-only] Returns the lightweight index of all hub workflows for client-side search and navigation."
@ -3195,7 +3195,7 @@ paths:
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
/api/workflows: /api/workflows:
get: get:
operationId: listCloudWorkflows operationId: listWorkflows
tags: [workflows] tags: [workflows]
summary: List cloud workflows summary: List cloud workflows
description: "[cloud-only] Returns a paginated list of the authenticated user's cloud workflows." description: "[cloud-only] Returns a paginated list of the authenticated user's cloud workflows."
@ -3241,7 +3241,7 @@ paths:
schema: schema:
$ref: "#/components/schemas/CloudError" $ref: "#/components/schemas/CloudError"
post: post:
operationId: createCloudWorkflow operationId: createWorkflow
tags: [workflows] tags: [workflows]
summary: Create a new cloud workflow summary: Create a new cloud workflow
description: "[cloud-only] Creates a new cloud workflow with the provided name and optional initial content." description: "[cloud-only] Creates a new cloud workflow with the provided name and optional initial content."
@ -3287,7 +3287,7 @@ paths:
/api/workflows/{workflow_id}: /api/workflows/{workflow_id}:
get: get:
operationId: getCloudWorkflow operationId: getWorkflow
tags: [workflows] tags: [workflows]
summary: Get a cloud workflow by ID summary: Get a cloud workflow by ID
description: "[cloud-only] Returns the metadata for a cloud workflow." description: "[cloud-only] Returns the metadata for a cloud workflow."
@ -3320,7 +3320,7 @@ paths:
schema: schema:
$ref: "#/components/schemas/CloudError" $ref: "#/components/schemas/CloudError"
patch: patch:
operationId: updateCloudWorkflow operationId: updateWorkflow
tags: [workflows] tags: [workflows]
summary: Update a cloud workflow summary: Update a cloud workflow
description: "[cloud-only] Updates the metadata (name, description) of an existing cloud workflow." description: "[cloud-only] Updates the metadata (name, description) of an existing cloud workflow."
@ -3370,7 +3370,7 @@ paths:
schema: schema:
$ref: "#/components/schemas/CloudError" $ref: "#/components/schemas/CloudError"
delete: delete:
operationId: deleteCloudWorkflow operationId: deleteWorkflow
tags: [workflows] tags: [workflows]
summary: Delete a cloud workflow summary: Delete a cloud workflow
description: "[cloud-only] Deletes a cloud workflow and all its versions." description: "[cloud-only] Deletes a cloud workflow and all its versions."
@ -3401,7 +3401,7 @@ paths:
/api/workflows/{workflow_id}/content: /api/workflows/{workflow_id}/content:
get: get:
operationId: getCloudWorkflowContent operationId: getWorkflowContent
tags: [workflows] tags: [workflows]
summary: Get the content of a cloud workflow summary: Get the content of a cloud workflow
description: "[cloud-only] Returns the full workflow graph JSON for the latest version of a cloud workflow." description: "[cloud-only] Returns the full workflow graph JSON for the latest version of a cloud workflow."
@ -3490,7 +3490,7 @@ paths:
/api/workflows/{workflow_id}/fork: /api/workflows/{workflow_id}/fork:
post: post:
operationId: forkCloudWorkflow operationId: forkWorkflow
tags: [workflows] tags: [workflows]
summary: Fork a cloud workflow summary: Fork a cloud workflow
description: "[cloud-only] Creates a copy of a cloud workflow under the authenticated user's account." description: "[cloud-only] Creates a copy of a cloud workflow under the authenticated user's account."
@ -3587,7 +3587,7 @@ paths:
schema: schema:
$ref: "#/components/schemas/CloudError" $ref: "#/components/schemas/CloudError"
post: post:
operationId: createCloudWorkflowVersion operationId: createWorkflowVersion
tags: [workflows] tags: [workflows]
summary: Create a new cloud workflow version summary: Create a new cloud workflow version
description: "[cloud-only] Creates a new workflow version with updated workflow JSON. Uses optimistic concurrency via base_version." description: "[cloud-only] Creates a new workflow version with updated workflow JSON. Uses optimistic concurrency via base_version."
@ -3690,7 +3690,7 @@ paths:
schema: schema:
$ref: "#/components/schemas/CloudError" $ref: "#/components/schemas/CloudError"
post: post:
operationId: createAuthSession operationId: createSession
tags: [auth] tags: [auth]
summary: Create a session cookie summary: Create a session cookie
description: "[cloud-only] Creates a session cookie from the bearer token in the Authorization header. Returns a Set-Cookie header with a secure HttpOnly session cookie. Cookie authentication is not allowed for this endpoint." description: "[cloud-only] Creates a session cookie from the bearer token in the Authorization header. Returns a Set-Cookie header with a secure HttpOnly session cookie. Cookie authentication is not allowed for this endpoint."
@ -3715,7 +3715,7 @@ paths:
schema: schema:
$ref: "#/components/schemas/CloudError" $ref: "#/components/schemas/CloudError"
delete: delete:
operationId: deleteAuthSession operationId: deleteSession
tags: [auth] tags: [auth]
summary: Delete session cookie (logout) summary: Delete session cookie (logout)
description: "[cloud-only] Clears the session cookie and optionally revokes the session on the server." description: "[cloud-only] Clears the session cookie and optionally revokes the session on the server."
@ -3730,7 +3730,7 @@ paths:
/api/auth/token: /api/auth/token:
post: post:
operationId: createAuthToken operationId: exchangeToken
tags: [auth] tags: [auth]
summary: Exchange credentials for an access token summary: Exchange credentials for an access token
description: "[cloud-only] Exchanges authentication credentials (e.g. an authorization code) for an access token." description: "[cloud-only] Exchanges authentication credentials (e.g. an authorization code) for an access token."
@ -4108,7 +4108,7 @@ paths:
/api/billing/events: /api/billing/events:
get: get:
operationId: listBillingEvents operationId: getBillingEvents
tags: [billing] tags: [billing]
summary: List billing events summary: List billing events
description: "[cloud-only] Returns a paginated list of billing events (charges, credits, refunds) for the authenticated user." description: "[cloud-only] Returns a paginated list of billing events (charges, credits, refunds) for the authenticated user."
@ -4145,7 +4145,7 @@ paths:
/api/billing/ops/{id}: /api/billing/ops/{id}:
get: get:
operationId: getBillingOp operationId: getBillingOpStatus
tags: [billing] tags: [billing]
summary: Get a billing operation by ID summary: Get a billing operation by ID
description: "[cloud-only] Returns details of a specific billing operation." description: "[cloud-only] Returns details of a specific billing operation."
@ -4179,7 +4179,7 @@ paths:
/api/billing/payment-portal: /api/billing/payment-portal:
post: post:
operationId: createPaymentPortalSession operationId: getPaymentPortal
tags: [billing] tags: [billing]
summary: Create a payment portal session summary: Create a payment portal session
description: "[cloud-only] Creates a Stripe customer portal session for managing payment methods and invoices. Returns a URL to redirect the user to." description: "[cloud-only] Creates a Stripe customer portal session for managing payment methods and invoices. Returns a URL to redirect the user to."
@ -4205,7 +4205,7 @@ paths:
/api/billing/plans: /api/billing/plans:
get: get:
operationId: listBillingPlans operationId: getBillingPlans
tags: [billing] tags: [billing]
summary: List available billing plans summary: List available billing plans
description: "[cloud-only] Returns the list of available subscription plans and their pricing." description: "[cloud-only] Returns the list of available subscription plans and their pricing."
@ -4222,7 +4222,7 @@ paths:
/api/billing/preview-subscribe: /api/billing/preview-subscribe:
post: post:
operationId: previewSubscription operationId: previewSubscribe
tags: [billing] tags: [billing]
summary: Preview a subscription change summary: Preview a subscription change
description: "[cloud-only] Returns a preview of what a subscription change would cost, including prorations." description: "[cloud-only] Returns a preview of what a subscription change would cost, including prorations."
@ -4282,7 +4282,7 @@ paths:
/api/billing/subscribe: /api/billing/subscribe:
post: post:
operationId: createSubscription operationId: subscribe
tags: [billing] tags: [billing]
summary: Subscribe to a billing plan summary: Subscribe to a billing plan
description: "[cloud-only] Creates a new subscription to the specified billing plan." description: "[cloud-only] Creates a new subscription to the specified billing plan."
@ -4366,7 +4366,7 @@ paths:
/api/billing/topup: /api/billing/topup:
post: post:
operationId: topUpCredits operationId: createTopup
tags: [billing] tags: [billing]
summary: Purchase additional credits summary: Purchase additional credits
description: "[cloud-only] Purchases a one-time credit top-up using the user's payment method on file." description: "[cloud-only] Purchases a one-time credit top-up using the user's payment method on file."
@ -4408,7 +4408,7 @@ paths:
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
/api/workspace/api-keys: /api/workspace/api-keys:
get: get:
operationId: listWorkspaceApiKeys operationId: listWorkspaceAPIKeys
tags: [workspace] tags: [workspace]
summary: List workspace API keys summary: List workspace API keys
description: "[cloud-only] Returns the list of API keys for the current workspace." description: "[cloud-only] Returns the list of API keys for the current workspace."
@ -4435,7 +4435,7 @@ paths:
schema: schema:
$ref: "#/components/schemas/CloudError" $ref: "#/components/schemas/CloudError"
post: post:
operationId: createWorkspaceApiKey operationId: createWorkspaceAPIKey
tags: [workspace] tags: [workspace]
summary: Create a workspace API key summary: Create a workspace API key
description: "[cloud-only] Creates a new API key for the current workspace." description: "[cloud-only] Creates a new API key for the current workspace."
@ -4484,7 +4484,7 @@ paths:
/api/workspace/api-keys/{id}: /api/workspace/api-keys/{id}:
delete: delete:
operationId: deleteWorkspaceApiKey operationId: revokeWorkspaceAPIKey
tags: [workspace] tags: [workspace]
summary: Delete a workspace API key summary: Delete a workspace API key
description: "[cloud-only] Revokes and deletes a workspace API key." description: "[cloud-only] Revokes and deletes a workspace API key."
@ -4603,7 +4603,7 @@ paths:
/api/workspace/invites/{inviteId}: /api/workspace/invites/{inviteId}:
delete: delete:
operationId: deleteWorkspaceInvite operationId: revokeWorkspaceInvite
tags: [workspace] tags: [workspace]
summary: Cancel a workspace invite summary: Cancel a workspace invite
description: "[cloud-only] Cancels a pending workspace invitation." description: "[cloud-only] Cancels a pending workspace invitation."
@ -4731,7 +4731,7 @@ paths:
schema: schema:
$ref: "#/components/schemas/CloudError" $ref: "#/components/schemas/CloudError"
delete: delete:
operationId: bulkRevokeMemberApiKeys operationId: bulkRevokeWorkspaceMemberAPIKeys
tags: [workspace] tags: [workspace]
summary: Bulk revoke a member's API keys summary: Bulk revoke a member's API keys
description: "[cloud-only] Revokes all active API keys for a specific workspace member. Only workspace owners can perform this action." description: "[cloud-only] Revokes all active API keys for a specific workspace member. Only workspace owners can perform this action."
@ -5201,7 +5201,7 @@ paths:
/api/invites/{token}/accept: /api/invites/{token}/accept:
post: post:
operationId: acceptInvite operationId: acceptWorkspaceInvite
tags: [workspace] tags: [workspace]
summary: Accept a workspace invitation summary: Accept a workspace invitation
description: "[cloud-only] Accepts a workspace invitation using the invite token. The authenticated user is added to the workspace." description: "[cloud-only] Accepts a workspace invitation using the invite token. The authenticated user is added to the workspace."
@ -5419,7 +5419,7 @@ paths:
/api/user: /api/user:
get: get:
operationId: getCloudUser operationId: getUser
tags: [user] tags: [user]
summary: Get the authenticated cloud user summary: Get the authenticated cloud user
description: "[cloud-only] Returns the profile and account information for the currently authenticated user." description: "[cloud-only] Returns the profile and account information for the currently authenticated user."
@ -5509,7 +5509,7 @@ paths:
schema: schema:
$ref: "#/components/schemas/CloudError" $ref: "#/components/schemas/CloudError"
post: post:
operationId: publishUserdataFile operationId: postUserdataFilePublish
tags: [userdata] tags: [userdata]
summary: Publish a userdata file to the cloud summary: Publish a userdata file to the cloud
description: "[cloud-only] Makes a userdata file available via a public URL for sharing or embedding." description: "[cloud-only] Makes a userdata file available via a public URL for sharing or embedding."
@ -5548,7 +5548,7 @@ paths:
/api/vhs/queryvideo: /api/vhs/queryvideo:
get: get:
operationId: queryVhsVideo operationId: getVhsQueryVideo
tags: [view] tags: [view]
summary: Query VHS video metadata summary: Query VHS video metadata
description: "[cloud-only] Returns metadata about a video file processed by the VHS (Video Helper Suite) integration." description: "[cloud-only] Returns metadata about a video file processed by the VHS (Video Helper Suite) integration."