action clever_cloud_get_logs_logs_socket_app_id { label: "get_logs_logs_socket_appId" description: "Retrieve logs as they come through a websocket connection. To have authorization, you have to send a `{ \"message_type\": \"oauth\", \"authorization\": \"oauth authorization string\" }` message" provider: clever_cloud method: GET path: "/logs/logs-socket/{appId}" encoding: json input: { type: "object" properties: { appId: { type: "string" } deployment_id: { type: "string" } filter: { type: "string" } since: { type: "string" format: "date-time" } } required: ["appId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }