SOLFIND
Web Lens
Portal home

Rich text list element | Slack Developer Docs

https://docs.slack.dev/reference/block-kit/block-elements/rich-text-list-element/ • 98 KB fetched
Open original page


Rich text list element | Slack Developer Docs reference Skip to main content Guides Reference Samples Tools Changelog Dev Program MANAGE APPS * Reference * App manifest * Block Kit * Overview * Blocks * Block Kit Elements * Overview * Attachment mention element * Broadcast element * Button element * Canvas element * Canvas message unfurl element * Canvas user mention element * Channel element * Checkboxes element * Citation element * Color element * Date element * Date picker element * Datetime picker element * Email input element * Emoji element * Feedback buttons element * File element * File input element * Icon button element * Image element * Link element * List record element * Message mention element * Multi-select menu element * Number input element * Overflow menu element * Plain-text input element * Radio button group element * Rich text input element * Rich text list element * Rich text preformatted element * Rich text quote element * Rich text section element * Salesforce data field element * Select menu element * Tag element * Team element * Text element * Time picker element * URL input element * URL source element * User element * Usergroup element * Work object mention element * Workflow button element * Workflow mention element * Composition objects * Events * Interaction payloads * Methods * Objects * Scopes * Types * Slack Connect API * Views * * Audit Logs API * Legal Holds API * SCIM API * * Slack Status API * * Block Kit * Block Kit Elements * Rich text list element Copy as markdown On this page Rich text list element Fields ​ Field Type Description Required? type String The type of sub-element; in this case, rich_text_list . Required style String Either bullet or ordered , the latter meaning a numbered list. Required elements Object [] An array of rich_text_section objects containing two properties: type , which is "rich_text_section", and elements , which is an array of rich text elements. Rich text elements include attachment_mention , broadcast , canvas , canvas_user_mention , canvas_message_unfurl , channel , citation , color , date , emoji , file , link , list_record , message_mention , salesforce_data_field , tag , team , text , user , usergroup , work_object_mention , workflow_mention . Required indent Number Sub-list indent level. Optional offset Number Number to offset the first number in the list. For example, if the offset = 4 , the first number in the ordered list would be 5. Optional border Number Turn the border on or off. Optional Example ​ * JSON * Python Slack SDK * Node Slack SDK * Java Slack SDK { "blocks" : [ { "type" : "rich_text" , "block_id" : "block1" , "elements" : [ { "type" : "rich_text_section" , "elements" : [ { "type" : "text" , "text" : "My favorite Slack features (in no particular order):" } ] } , { "type" : "rich_text_list" , "elements" : [ { "type" : "rich_text_section" , "elements" : [ { "type" : "text" , "text" : "Huddles" } ] } , { "type" : "rich_text_section" , "elements" : [ { "type" : "text" , "text" : "Canvas" } ] } , { "type" : "rich_text_section" , "elements" : [ { "type" : "text" , "text" : "Developing with Block Kit" } ] } ] , "style" : "bullet" , "indent" : 0 , "border" : 1 } ] } ] } View in Block Kit Builder block-kit/src/elements/rich_text_list.py loading . . . View on GitHub block-kit/src/elements/rich_text_list.js loading ... View on GitHub block-kit/src/main/java/elements/RichTextList.java loading . . . View on GitHub Let's say we want to create a nested list, for example something that looks like this: Breakfast foods I enjoy: * Hashbrowns * Eggs * Scrambled * Over easy * Pancakes, extra syrup To create that in rich text, create three instances of rich_text_list , the middle one using the indent property to indent the types of eggs into that sub-list. * JSON * Python Slack SDK * Node Slack SDK * Java Slack SDK { "blocks" : [ { "type" : "rich_text" , "block_id" : "block1" , "elements" : [ { "type" : "rich_text_section" , "elements" : [ { "type" : "text" , "text" : "Breakfast foods I enjoy:" } ] } , { "type" : "rich_text_list" , "style" : "bullet" , "elements" : [ { "type" : "rich_text_section" , "elements" : [ { "type" : "text" , "text" : "Hashbrowns" } ] } , { "type" : "rich_text_section" , "elements" : [ { "type" : "text" , "text" : "Eggs" } ] } ] } , { "type" : "rich_text_list" , "style" : "bullet" , "indent" : 1 , "elements" : [ { "type" : "rich_text_section" , "elements" : [ { "type" : "text" , "text" : "Scrambled" } ] } , { "type" : "rich_text_section" , "elements" : [ { "type" : "text" , "text" : "Over easy" } ] } ] } , { "type" : "rich_text_list" , "style" : "bullet" , "elements" : [ { "type" : "rich_text_section" , "elements" : [ { "type" : "text" , "text" : "Pancakes, extra syrup" } ] } ] } ] } ] } View in Block Kit Builder block-kit/src/elements/rich_text_list.py loading . . . View on GitHub block-kit/src/elements/rich_text_list.js loading ... View on GitHub block-kit/src/main/java/elements/RichTextList.java loading . . . View on GitHub Previous Rich text input element Next Rich text preformatted element Copy as markdown * Fields * Example . * Tools * Slack CLI * Bolt frameworks * Slack SDKs * Block Kit Builder * Developer program * Code samples & tutorials * LLM? Read llms.txt * All tools Learn * Learning paths * Workshops * Slack certifications * Trailhead * Resource library * All learning resources Community * Slack community * Slack events Resources * Docs * Blog * Slack marketplace * Developer newsletter Manage Apps * Your apps * Status * Privacy * Terms * Cookie Preferences * Support * Changelog * Your Privacy Choices © 2026 Slack Technologies, LLC, a Salesforce company. All rights reserved. Various trademarks held by their respective owners. * * *

Links found on this page

  1. Skip to main content [direct]
  2. Guides [direct]
  3. Reference [direct]
  4. Samples [direct]
  5. Tools [direct]
  6. Changelog [direct]
  7. Dev Program [direct]
  8. MANAGE APPS [direct]
  9. Reference [direct]
  10. App manifest [direct]
  11. Block Kit [direct]
  12. Blocks [direct]
  13. Block Kit Elements [direct]
  14. Attachment mention element [direct]
  15. Broadcast element [direct]
  16. Button element [direct]
  17. Canvas element [direct]
  18. Canvas message unfurl element [direct]
  19. Canvas user mention element [direct]
  20. Channel element [direct]
  21. Checkboxes element [direct]
  22. Citation element [direct]
  23. Color element [direct]
  24. Date element [direct]
  25. Date picker element [direct]
  26. Datetime picker element [direct]
  27. Email input element [direct]
  28. Emoji element [direct]
  29. Feedback buttons element [direct]
  30. File element [direct]
  31. File input element [direct]
  32. Icon button element [direct]
  33. Image element [direct]
  34. Link element [direct]
  35. List record element [direct]
  36. Message mention element [direct]
  37. Multi-select menu element [direct]
  38. Number input element [direct]
  39. Overflow menu element [direct]
  40. Plain-text input element [direct]
  41. Radio button group element [direct]
  42. Rich text input element [direct]
  43. Rich text list element [direct]
  44. Rich text preformatted element [direct]
  45. Rich text quote element [direct]
  46. Rich text section element [direct]
  47. Salesforce data field element [direct]
  48. Select menu element [direct]
  49. Tag element [direct]
  50. Team element [direct]
  51. Text element [direct]
  52. Time picker element [direct]
  53. URL input element [direct]
  54. URL source element [direct]
  55. User element [direct]
  56. Usergroup element [direct]
  57. Work object mention element [direct]
  58. Workflow button element [direct]
  59. Workflow mention element [direct]
  60. Composition objects [direct]
  61. Events [direct]
  62. Interaction payloads [direct]
  63. Methods [direct]
  64. Objects [direct]
  65. Scopes [direct]
  66. Types [direct]
  67. Slack Connect API [direct]
  68. Views [direct]
  69. Audit Logs API [direct]
  70. Legal Holds API [direct]
  71. SCIM API [direct]
  72. Slack Status API [direct]
  73. View in Block Kit Builder [direct]
  74. View on GitHub [direct]
  75. View on GitHub [direct]
  76. View on GitHub [direct]
  77. Slack CLI [direct]
  78. Bolt frameworks [direct]
  79. Block Kit Builder [direct]
  80. Code samples & tutorials [direct]