Skip to main content
Back to Actions Integrations Use prebuilt Confluence action templates to auto-create dialog tasks. Prerequisites: Configure Confluence and install templates before proceeding. Navigate to Automation AI > Use Cases > Dialogs, then click the auto-created dialog to open the canvas.

Supported Actions

ActionDescriptionMethod
Create ContentCreates content in the Confluence spacePOST

Create Content

  1. Install the template from Confluence Templates.
  2. The createContent dialog task is added with: Dialog added
    • createContent – User intent to create content in the Confluence space.
    • contentType, spaceKey, contentTitle, contentBody – Entity nodes for content details.
    • getResourceIdService – Bot action service to fetch the resource ID. Click Edit Request: Request Sample Request:
      {
        "title": "Page 1",
        "type": "page",
        "space": { "key": "SFPWP" },
        "status": "current",
        "body": {
          "storage": {
            "value": "Here is the value of this body",
            "representation": "storage"
          }
        }
      }
      
      Click +Add Response: Response Sample Response:
      {
        "id": "21004299",
        "type": "page",
        "status": "current",
        "title": "Page 1",
        "space": {
          "id": 196612,
          "key": "SFPWP",
          "name": "Space For Playing with Postman",
          "type": "global",
          "status": "current"
        }
      }
      
    • createContentService – Bot action service to create content in the Confluence space.
    • createContentMessage – Message node to display the result.
  3. Click Train to complete training.
  4. Click Talk to Bot to test.
  5. Follow the prompts to create content. VA console prompt
  6. Enter title and body details when prompted. Enter title and body
  7. Content is created. Click View Content to open it. Content created
  8. View the page in Confluence. View page