openapi: 3.2.0 info: title: bot-api-v3 Workqueue API version: '1.1' servers: - url: https://api.app.lithium.com/bots/v3 security: - {} tags: - name: Work Queue paths: /workqueue: put: summary: Move conversation to specified workqueue description: Use the Bot v3 API to have a bot move a conversation to a specific workqueue operationId: workqueue-put requestBody: content: application/json: schema: type: object properties: RAW_BODY: type: string description: A `workqueue` JSON payload. See payload details below. format: json responses: '202': description: '202' content: application/json: examples: Result: value: HTTP/1.1 202 Accepted '400': description: '400' content: application/json: examples: Result: value: "HTTP/1.1 400 Bad Request{ \n \"error\":{ \n \"messages\":[ \n \"newWorkQueue may not be null\"\n ]\n }\n}" deprecated: false security: [] x-readme: code-samples: - language: curl code: "curl PUT \\\n https://api.app.lithium.com/bots/v3/workqueue \\\n --data @/path/to/payload.json \\\n -H \"Content-type: application/json; charset=utf-8\" \\\n -H \"Authorization: Bearer [TOKEN]\"\n" samples-languages: - curl tags: - Work Queue x-readme: headers: - key: Authorization value: Bearer [TOKEN] - key: Content-type value: application/json; charset=utf-8 explorer-enabled: false proxy-enabled: true x-readme-fauxas: true