diff --git a/config/schema/chatbot_api.views.schema.yml b/config/schema/chatbot_api.views.schema.yml
new file mode 100644
index 0000000..5091f66
--- /dev/null
+++ b/config/schema/chatbot_api.views.schema.yml
@@ -0,0 +1,8 @@
+views.display.chatbot_intent:
+  type: views_display
+  label: 'Chatbot API Intent display options'
+  mapping:
+    intent_name:
+      type: string
+      label: 'Intent Id/Name'
+
diff --git a/tests/modules/chatbot_api_views_intent_test/chatbot_api_views_intent_test.info.yml b/tests/modules/chatbot_api_views_intent_test/chatbot_api_views_intent_test.info.yml
new file mode 100644
index 0000000..afb3b8f
--- /dev/null
+++ b/tests/modules/chatbot_api_views_intent_test/chatbot_api_views_intent_test.info.yml
@@ -0,0 +1,9 @@
+name: Chatbot API - Views Intent Test
+type: module
+description: Test Views Intent display for Chatbot API
+hidden: true
+core: 8.x
+package: Chatbot
+dependencies:
+  - chatbot_api
+  - views
diff --git a/tests/modules/chatbot_api_views_intent_test/test_views/views.view.test_chatbot_api_display.yml b/tests/modules/chatbot_api_views_intent_test/test_views/views.view.test_chatbot_api_display.yml
new file mode 100644
index 0000000..c20adf6
--- /dev/null
+++ b/tests/modules/chatbot_api_views_intent_test/test_views/views.view.test_chatbot_api_display.yml
@@ -0,0 +1,183 @@
+uuid: 031d32b6-0002-4546-94b6-0e5d1c97464a
+langcode: en
+status: true
+dependencies:
+  module:
+    - chatbot_api
+    - user
+id: test_chatbot_api_display
+label: 'Test chatbot api display'
+module: views
+description: ''
+tag: ''
+base_table: users_field_data
+base_field: uid
+core: 8.x
+display:
+  default:
+    display_plugin: default
+    id: default
+    display_title: Master
+    position: 0
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access user profiles'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: mini
+        options:
+          items_per_page: 10
+          offset: 0
+          id: 0
+          total_pages: null
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: ‹‹
+            next: ››
+      style:
+        type: default
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          uses_fields: false
+      row:
+        type: fields
+        options:
+          inline: {  }
+          separator: ''
+          hide_empty: false
+          default_field_elements: true
+      fields:
+        name:
+          id: name
+          table: users_field_data
+          field: name
+          entity_type: user
+          entity_field: name
+          label: ''
+          alter:
+            alter_text: false
+            make_link: false
+            absolute: false
+            trim: false
+            word_boundary: false
+            ellipsis: false
+            strip_tags: false
+            html: false
+          hide_empty: false
+          empty_zero: false
+          plugin_id: field
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exclude: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_alter_empty: true
+          click_sort_column: value
+          type: user_name
+          settings: {  }
+          group_column: value
+          group_columns: {  }
+          group_rows: true
+          delta_limit: 0
+          delta_offset: 0
+          delta_reversed: false
+          delta_first_last: false
+          multi_type: separator
+          separator: ', '
+          field_api_classes: false
+      filters:
+        status:
+          value: '1'
+          table: users_field_data
+          field: status
+          plugin_id: boolean
+          entity_type: user
+          entity_field: status
+          id: status
+          expose:
+            operator: ''
+          group: 1
+      sorts:
+        name:
+          id: name
+          table: users_field_data
+          field: name
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: ASC
+          exposed: false
+          expose:
+            label: ''
+          entity_type: user
+          entity_field: name
+          plugin_id: standard
+      header: {  }
+      footer: {  }
+      empty: {  }
+      relationships: {  }
+      arguments: {  }
+      display_extenders: {  }
+    cache_metadata:
+      max-age: -1
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - url.query_args
+        - user.permissions
+      tags: {  }
+  chatbot_intent_1:
+    display_plugin: chatbot_intent
+    id: chatbot_intent_1
+    display_title: 'Chatbot Intent'
+    position: 1
+    display_options:
+      display_extenders: {  }
+      intent_name: TopUsers
+    cache_metadata:
+      max-age: -1
+      contexts:
+        - 'languages:language_content'
+        - 'languages:language_interface'
+        - user.permissions
+      tags: {  }
+
diff --git a/tests/src/Kernel/ChatbotViewsIntentTest.php b/tests/src/Kernel/ChatbotViewsIntentTest.php
new file mode 100644
index 0000000..0f3390f
--- /dev/null
+++ b/tests/src/Kernel/ChatbotViewsIntentTest.php
@@ -0,0 +1,149 @@
+<?php
+
+namespace Drupal\Tests\chatbot_api\Kernel;
+
+use Drupal\chatbot_api\IntentRequestInterface;
+use Drupal\chatbot_api\IntentResponseInterface;
+use Drupal\Core\Render\RenderContext;
+use Drupal\simpletest\UserCreationTrait;
+use Drupal\Tests\views\Kernel\ViewsKernelTestBase;
+use Drupal\user\RoleInterface;
+use Drupal\views\Tests\ViewTestData;
+use Prophecy\Argument;
+
+/**
+ * Tests Chatbot Api Views Intent display plugin.
+ *
+ * @group chatbot_api
+ */
+class ChatbotViewsIntentTest extends ViewsKernelTestBase {
+
+  use UserCreationTrait;
+
+  /**
+   * {@inheritdoc}
+   */
+  public static $modules = [
+    'chatbot_api',
+    'chatbot_api_views_intent_test',
+    'user',
+    'options',
+    'views',
+  ];
+
+  /**
+   * {@inheritdoc}
+   */
+  public static $testViews = ['test_chatbot_api_display'];
+
+  /**
+   * {@inheritdoc}
+   */
+  public function setUp($import_test_views = TRUE) {
+    parent::setUp($import_test_views);
+
+    $this->installConfig('user');
+    $this->installEntitySchema('user');
+    // Create anonymous user.
+    $anonymous = $this->container->get('entity_type.manager')
+      ->getStorage('user')
+      ->create([
+        'uid' => 0,
+        'status' => 0,
+        'name' => '',
+      ]);
+    $anonymous->save();
+    /** @var \Drupal\user\RoleInterface $anonymous_role */
+    $anonymous_role = $this->container->get('entity_type.manager')
+      ->getStorage('user_role')
+      ->load(RoleInterface::ANONYMOUS_ID);
+    $anonymous_role->grantPermission('access user profiles');
+    $anonymous_role->save();
+
+    $this->createUser([], 'Alice');
+    $this->createUser([], 'Bob');
+    $this->createUser([], 'Chris');
+
+    ViewTestData::createTestViews(get_class($this), ['chatbot_api_views_intent_test']);
+  }
+
+  /**
+   * Tests the intent is loaded and processed.
+   */
+  public function testIntentIsLoadedAndProcessed() {
+
+    /** @var \Drupal\Core\Render\RendererInterface $renderer */
+    $renderer = $this->container->get('renderer');
+
+    $request = $this->prophesize(IntentRequestInterface::class);
+    $response = $this->prophesize(IntentResponseInterface::class);
+
+    // Assign $this to $class in order to be used inside anonymous functions
+    // scope.
+    $class = $this;
+    $response->setIntentResponse(Argument::type('string'))->will(function ($args) use ($class) {
+      $class->assertSame($args[0], 'Alice');
+    });
+    $response->addIntentAttribute(Argument::type('string'), Argument::type('integer'))->will(function ($args) use ($class) {
+      $class->assertSame($args[0], 'TopUsersIterator');
+      $class->assertSame($args[1], 1);
+    });
+
+    /** @var \Drupal\chatbot_api\Plugin\IntentPluginManager $manager */
+    $manager = $this->container->get('plugin.manager.chatbot_intent_plugin');
+    $configuration = [
+      'request' => $request->reveal(),
+      'response' => $response->reveal(),
+    ];
+    $plugin = $manager->createInstance('TopUsers', $configuration);
+
+    // Process the plugin request/response within a fake render context.
+    $renderer->executeInRenderContext(new RenderContext(), function () use ($plugin) {
+      $plugin->process();
+    });
+
+  }
+
+  /**
+   * Tests the iterator / pagin mechanism.
+   */
+  public function testViewsIntentIterator() {
+
+    /** @var \Drupal\Core\Render\RendererInterface $renderer */
+    $renderer = $this->container->get('renderer');
+
+    $request = $this->prophesize(IntentRequestInterface::class);
+    $response = $this->prophesize(IntentResponseInterface::class);
+
+    // Fake a second iteration request.
+    $request->getIntentAttribute(Argument::exact('TopUsersIterator'), Argument::type('integer'))->willReturn(1);
+    $request->getIntentAttribute(Argument::type('string'))->willReturn(FALSE);
+    $request->getIntentSlot(Argument::any())->willReturn(FALSE);
+
+    // Assign $this to $class in order to be used inside anonymous functions
+    // scope.
+    $class = $this;
+    $response->setIntentResponse(Argument::type('string'))->will(function ($args) use ($class) {
+      $class->assertSame($args[0], 'Bob');
+    });
+    $response->addIntentAttribute(Argument::type('string'), Argument::type('integer'))->will(function ($args) use ($class) {
+      $class->assertSame($args[0], 'TopUsersIterator');
+      $class->assertSame($args[1], 2);
+    });
+
+    /** @var \Drupal\chatbot_api\Plugin\IntentPluginManager $manager */
+    $manager = $this->container->get('plugin.manager.chatbot_intent_plugin');
+    $configuration = [
+      'request' => $request->reveal(),
+      'response' => $response->reveal(),
+    ];
+    $plugin = $manager->createInstance('TopUsers', $configuration);
+
+    // Process the plugin request/response within a fake render context.
+    $renderer->executeInRenderContext(new RenderContext(), function () use ($plugin) {
+      $plugin->process();
+    });
+
+  }
+
+}
