Skip to content
background-image background-image

Monday workDocs delete

[ | version 3.1]

Connector

The connector is permitted for use of the platform background agent.

Connector processing type: Row by row!

The monday workDocs delete allows you to delete existing block content in the Monday workDoc.

A workdoc is a flexible, multi-media whiteboard where you and your team can record all notes and ideas related to one central topic. By adding individual elements to your workdoc, all your loose thoughts and ideas can come together in one place. Find more on workDocs here and or here.

The input required for deleting of the block in the workDoc is the block id .

To find the block id, use the Developers API playground and use GraphQL query

    query {
    docs (ids:6201574) {
        blocks {
        id
        type
        content
        }
    }
}
Example:

    {
  "data": {
    "docs": [
      {
        "blocks": [
          {
            "id": "e3d80a86-7bc4-4eb9-a402-182f7d84c4af",
            "type": "normal text",
            "content": "{\"alignment\":\"center\",\"deltaFormat\":[{\"insert\":\"First line: Test of mondayDoc writer, writing a normal text block.\",\"attributes\":{\"bold\":true,\"color\":\"white\",\"underline\":true,\"background\":\"black\"}}]}"
          },

Configuration

Monday Connection configuration

API token

The API token for the connection configuration can be found in monday.com > User avatar > Developers > Developer > My Access Tokens.

Timeout

The timeout (in seconds) for the request to monday.com work management platform. The default value is 60 seconds.


Input & Output Schema

Input

Monday docs delete input (ver. 1.0.0)

Column Data type Allow null Description
BlockID string No The block's unique identifier

Output

This connector does not require a schema.


Release notes

3.1.0

3.0.2

  • Updated package binaries because of changes in another included connector

3.0.1

  • Right processing API-Version header

3.0.0

  • First release