# Bullet-points simple

1. Select the shape by `name` you want to modify. See [here](https://docs.powerpointgeneratorapi.com/knowledge-base/finding-shape-names) to find shape names.
2. Use `text_run` to list your text into separate chunks.
3. Control bullet-point properties in `text_properties`.

Reference: [#text\_properties-object](https://docs.powerpointgeneratorapi.com/json-template-syntax/shapes/textbox#text_properties-object "mention")

Download: [input.zip](https://drive.google.com/uc?export=download\&id=1AEqYRS3HNDBHshZOK0KJddfVIvZzjMql) | [output.pptx](https://drive.google.com/uc?export=download\&id=1igIMGJFYTtL8iz5YkszuCrVaQilO0qSA)

{% columns %}
{% column width="41.66666666666667%" %}

<figure><img src="https://1155212587-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-Mgoqdluo05I2RXHZpTr-887967055%2Fuploads%2F7uhZrVUWdek6uIksjoR8%2Ftemplate.png?alt=media&#x26;token=3b3038a1-8d3f-4239-b594-eee873fcc83a" alt=""><figcaption></figcaption></figure>

***

<figure><img src="https://1155212587-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-Mgoqdluo05I2RXHZpTr-887967055%2Fuploads%2Fzt3zQskY9BYDFtMiO69Q%2Foutput.png?alt=media&#x26;token=6ab0cde7-1942-41d6-84cd-4197b8bb17a1" alt=""><figcaption></figcaption></figure>
{% endcolumn %}

{% column width="58.33333333333333%" %}
{% code lineNumbers="true" %}

```json
{
  "presentation": {
    "template": "template.pptx",
    "slides": [
      {
        "slide_index": 0,
        "shapes": [
          {
            "name": "TextBox 1",
            "text": [
              {
                "text_run": "Point 1 ",
                "text_properties": {
                  "bullet": true
                }
              },
              {
                "text_run": "Point 2",
                "text_properties": {
                  "bullet": true,
                  "font_bold": true,
                  "font_size": 20
                }
              },
              {
                "text_run": "Point 3",
                "text_properties": {
                  "bullet": true
                }
              },
              {
                "text_run": "Point 4",
                "text_properties": {
                  "bullet": true,
                  "font_bold": true,
                  "font_size": 20
                }
              }
            ]
          },
          {
            "name": "TextBox 2",
            "text": [
              {
                "text_run": "Point 1\nPoint 2\nPoint 3\nPoint 4",
                "text_properties": {
                  "bullet": true,
                  "font_bold": true
                }
              }
            ]
          }
        ]
      }
    ]
  }
}

```

{% endcode %}
{% endcolumn %}
{% endcolumns %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.powerpointgeneratorapi.com/examples/text-shape/bullet-points-simple.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
