# Create an article

Now we have a form, we can handle when the user submits it and then pass it to the API for it to handle and turn into an article.

```markup
<!DOCTYPE>
<html>
  <head>
    <script src="https://unpkg.com/@deskpro/deskpro-api-client-javascript@2.0.0/dist/index.js"></script>
  </head>
  <body>
    <form>
        <div>
            Title:
            <input type="text" name="title">
        </div>
        <div>
            Content:
            <textarea name="content" cols="80" rows="10"></textarea>
        </div>
        <button type="submit">Submit</button>
    </form>
    <script>
        var form = document.getElementsByTagName('form')[0];
        form.addEventListener('submit', function(e) {
            e.preventDefault();
            var body = {
                title: form.elements['title'].value,
                content: form.elements['content'].value,
                content_input_type: 'rte',
                status: 'published'
            };

            // Send the article body to the API.
            var client = new DeskproClient('http://deskpro.company.com');
            client.setAuthKey(1, 'dev-admin-code');

            client.post('/articles', body)
                .then(function(resp) {
                    console.log('Article created with ID ' + resp.data.id);
                })
                .catch(function(err) {
                    console.error(err.message);
                });
        });
    </script>
  </body>
</html>
```

Submitting the form should show you something like this in your debug console:

```
Article created with ID 107
```


---

# 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://deskpro.gitbook.io/dev-guide/getting-started-with-the-api/javascript/create-an-article.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.
