Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ here <https://developer.monday.com/api-reference/docs>`__.
Requirements
^^^^^^^^^^^^

- Python >= 3.6
- Python >= 3.11

Getting started
^^^^^^^^^^^^^^^
Expand All @@ -31,12 +31,12 @@ Getting started

monday.items.create_item(board_id='12345678', group_id='today', item_name='Do a thing')

**Available methods:**
Available methods
^^^^^^^^^^^^^^^^^

Items Resource (monday.items)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^


- ``create_item(board_id, group_id, item_name, column_values=None, create_labels_if_missing=False)``
- Create an item on a board in the given group with name item_name.

Expand Down
22 changes: 6 additions & 16 deletions docs/_build/html/README.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h1>monday<a class="headerlink" href="#monday" title="Permalink to this heading"
<section id="requirements">
<h2>Requirements<a class="headerlink" href="#requirements" title="Permalink to this heading">¶</a></h2>
<ul class="simple">
<li><p>Python &gt;= 3.6</p></li>
<li><p>Python &gt;= 3.11</p></li>
</ul>
</section>
<section id="getting-started">
Expand All @@ -54,7 +54,10 @@ <h2>Getting started<a class="headerlink" href="#getting-started" title="Permalin
<span class="n">monday</span><span class="o">.</span><span class="n">items</span><span class="o">.</span><span class="n">create_item</span><span class="p">(</span><span class="n">board_id</span><span class="o">=</span><span class="s1">&#39;12345678&#39;</span><span class="p">,</span> <span class="n">group_id</span><span class="o">=</span><span class="s1">&#39;today&#39;</span><span class="p">,</span> <span class="n">item_name</span><span class="o">=</span><span class="s1">&#39;Do a thing&#39;</span><span class="p">)</span>
</pre></div>
</div>
<p><strong>Available methods:</strong> #### Items Resource (monday.items) -
<p><h2>Available methods</h2>
</section>
<section id="items-resource-monday-items">
<h2>Items Resource (monday.items)<a class="headerlink" href="#items-resource-monday-items" title="Permalink to this heading">¶</a></h2>
<code class="docutils literal notranslate"><span class="pre">create_item(board_id,</span> <span class="pre">group_id,</span> <span class="pre">item_name,</span> <span class="pre">column_values=None,</span> <span class="pre">create_labels_if_missing=False)</span></code>
- Create an item on a board in the given group with name item_name.</p>
<ul class="simple">
Expand Down Expand Up @@ -223,18 +226,13 @@ <h4>Bug Reports<a class="headerlink" href="#bug-reports" title="Permalink to thi
<h1 class="logo"><a href="index.html">monday</a></h1>








<h3>Navigation</h3>
<p class="caption" role="heading"><span class="caption-text">Contents:</span></p>
<ul class="current">
<li class="toctree-l1 current"><a class="current reference internal" href="#">monday</a><ul>
<li class="toctree-l2"><a class="reference internal" href="#requirements">Requirements</a></li>
<li class="toctree-l2"><a class="reference internal" href="#getting-started">Getting started</a></li>
<li class="toctree-l2"><a class="reference internal" href="#items-resource-monday-items">Items Resource (monday.items)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#updates-resource-monday-updates">Updates Resource (monday.updates)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#tags-resource-monday-tags">Tags Resource (monday.tags)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#boards-resource-monday-boards">Boards Resource (monday.boards)</a></li>
Expand Down Expand Up @@ -272,12 +270,6 @@ <h3 id="searchlabel">Quick search</h3>
<script>document.getElementById('searchbox').style.display = "block"</script>








</div>
</div>
<div class="clearer"></div>
Expand All @@ -295,7 +287,5 @@ <h3 id="searchlabel">Quick search</h3>
</div>




</body>
</html>
13 changes: 9 additions & 4 deletions docs/_build/html/_sources/README.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ here <https://developer.monday.com/api-reference/docs>`__.
Requirements
^^^^^^^^^^^^

- Python >= 3.6
- Python >= 3.11

Getting started
^^^^^^^^^^^^^^^
Expand All @@ -31,9 +31,14 @@ Getting started

monday.items.create_item(board_id='12345678', group_id='today', item_name='Do a thing')

**Available methods:** #### Items Resource (monday.items) -
``create_item(board_id, group_id, item_name, column_values=None, create_labels_if_missing=False)``
- Create an item on a board in the given group with name item_name.
Available methods
^^^^^^^^^^^^^^^^^

Items Resource (monday.items)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

- ``create_item(board_id, group_id, item_name, column_values=None, create_labels_if_missing=False)``
- Create an item on a board in the given group with name item_name.

- ``create_subitem(parent_item_id, subitem_name, column_values=None, create_labels_if_missing=False)``
- Create a subitem underneath a given parent item. Monday API will
Expand Down