{
  "info": {
    "name": "Pipedrive — mcp.ai",
    "description": "REST API for the Pipedrive MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/pipedrive",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "pipedrive_add_a_call_log",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/call/log",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "call",
            "log"
          ]
        },
        "description": "Adds a new call log.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note\": \"\",\n  \"org_id\": 0,\n  \"deal_id\": 0,\n  \"lead_id\": \"\",\n  \"outcome\": \"\",\n  \"subject\": \"\",\n  \"user_id\": 0,\n  \"duration\": \"\",\n  \"end_time\": \"\",\n  \"person_id\": 0,\n  \"start_time\": \"\",\n  \"activity_id\": 0,\n  \"to_phone_number\": \"\",\n  \"from_phone_number\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_channel",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/channel",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "channel"
          ]
        },
        "description": "New messaging channel added; registration limited to admins. utilizes getconversations endpoint for data retrieval. requires messengers integration oauth scope and a prepared messaging app extension m",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"avatar_url\": \"\",\n  \"provider_type\": \"\",\n  \"template_support\": false,\n  \"provider_channel_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_comment_to_a_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/comment/to/a/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "comment",
            "to",
            "a",
            "note"
          ]
        },
        "description": "Adds a new comment to a note.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"content\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "deal"
          ]
        },
        "description": "Add a new deal to pipedrive with any custom fields, which vary by account and are identified by long hash keys. check dealfields for existing custom fields. for details, visit the tutorial on adding a",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_follower_to_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/follower/to/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "follower",
            "to",
            "a",
            "deal"
          ]
        },
        "description": "Adds a follower to a deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_follower_to_a_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/follower/to/a/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "follower",
            "to",
            "a",
            "person"
          ]
        },
        "description": "Adds a follower to a person.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_follower_to_a_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/follower/to/a/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "follower",
            "to",
            "a",
            "product"
          ]
        },
        "description": "Adds a follower to a product.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_follower_to_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/follower/to/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "follower",
            "to",
            "an",
            "organization"
          ]
        },
        "description": "Adds a follower to an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "lead"
          ]
        },
        "description": "Pipedrive api lets you add leads linked to people or organizations and tags them with 'api' source. custom fields from deals apply to leads and appear in responses if set. details are in the tutorials",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"owner_id\": 0,\n  \"was_seen\": false,\n  \"label_ids\": \"\",\n  \"person_id\": 0,\n  \"value__amount\": 0,\n  \"organization_id\": 0,\n  \"value__currency\": \"\",\n  \"expected_close_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_lead_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/lead/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "lead",
            "label"
          ]
        },
        "description": "Creates a lead label.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_new_deal_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/new/deal/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "new",
            "deal",
            "field"
          ]
        },
        "description": "Adds a new deal field. for more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-new-custom-field\" target=\" blank\" rel=\"noopener noreferrer\">adding a new custom fie",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_new_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/new/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "new",
            "filter"
          ]
        },
        "description": "New filter creation returns an id. only one primary condition group with 'and' and two secondary groups (one 'and', one 'or') are supported. future syntax expansion possible. see tutorial for details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_new_goal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/new/goal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "new",
            "goal"
          ]
        },
        "description": "Adds a new goal. along with adding a new goal, a report is created to track the progress of your goal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"interval\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_new_organization_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/new/organization/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "new",
            "organization",
            "field"
          ]
        },
        "description": "Adds a new organization field. for more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-new-custom-field\" target=\" blank\" rel=\"noopener noreferrer\">adding a new cu",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_new_person_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/new/person/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "new",
            "person",
            "field"
          ]
        },
        "description": "Adds a new person field. for more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-new-custom-field\" target=\" blank\" rel=\"noopener noreferrer\">adding a new custom f",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_new_pipeline",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/new/pipeline",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "new",
            "pipeline"
          ]
        },
        "description": "Adds a new pipeline.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"order_nr\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_new_product_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/new/product/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "new",
            "product",
            "field"
          ]
        },
        "description": "Adds a new product field. for more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-new-custom-field\" target=\" blank\" rel=\"noopener noreferrer\">adding a new custom ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"options\": \"\",\n  \"field_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_new_stage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/new/stage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "new",
            "stage"
          ]
        },
        "description": "Adds a new stage, returns the id upon success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"pipeline_id\": 0,\n  \"rotten_days\": 0,\n  \"rotten_flag\": false,\n  \"deal_probability\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_new_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/new/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "new",
            "team"
          ]
        },
        "description": "Adds a new team to the company and returns the created object.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"users\": \"\",\n  \"manager_id\": 0,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_new_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/new/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "new",
            "user"
          ]
        },
        "description": "Adds a new user to the company, returns the id upon success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"access\": \"\",\n  \"active_flag\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "note"
          ]
        },
        "description": "Add a note to a deal, person, organization, lead, or project in pipedrive. at least one of deal id, person id, org id, lead id, or project id must be provided.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org_id\": 0,\n  \"content\": \"\",\n  \"deal_id\": 0,\n  \"lead_id\": \"\",\n  \"add_time\": \"\",\n  \"person_id\": 0,\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_participant_to_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/participant/to/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "participant",
            "to",
            "a",
            "deal"
          ]
        },
        "description": "Adds a participant to a deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"person_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "person"
          ]
        },
        "description": "Add a new contact in pipedrive with optional custom fields unique to each account found using the `personfields` endpoint. the endpoint also handles `data.marketing status` for campaigns product users",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "product"
          ]
        },
        "description": "Adds a new product to the products inventory. for more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-product\" target=\" blank\" rel=\"noopener noreferrer\">adding a ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_product_to_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/product/to/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "product",
            "to",
            "a",
            "deal"
          ]
        },
        "description": "Adds a product to a deal, creating a new item called a deal-product.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "project"
          ]
        },
        "description": "Adds a new project. note that you can supply additional custom fields along with the request that are not described here. these custom fields are different for each pipedrive account and can be recogn",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_recurring_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/recurring/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "recurring",
            "subscription"
          ]
        },
        "description": "Adds a new recurring subscription.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"deal_id\": 0,\n  \"currency\": \"\",\n  \"infinite\": false,\n  \"payments\": \"\",\n  \"start_date\": \"\",\n  \"description\": \"\",\n  \"cadence_type\": \"\",\n  \"cycle_amount\": 0,\n  \"cycles_count\": 0,\n  \"update_deal_value\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "role"
          ]
        },
        "description": "Adds a new role.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"parent_role_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_a_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "task"
          ]
        },
        "description": "Adds a new task.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_an_activity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/an/activity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "an",
            "activity"
          ]
        },
        "description": "New activity added. response includes `more activities scheduled in context` to show if more are planned with the same entity. see tutorial on adding activities [here](https://pipedrive.readme.io/docs",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_an_installment_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/an/installment/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "an",
            "installment",
            "subscription"
          ]
        },
        "description": "Adds a new installment subscription.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"deal_id\": 0,\n  \"currency\": \"\",\n  \"payments\": \"\",\n  \"update_deal_value\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "an",
            "organization"
          ]
        },
        "description": "Set up a new pipedrive organization using custom fields with unique key hashes. retrieve `organizationfields` for configuration. check the linked tutorial for guidance.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "file"
          ]
        },
        "description": "Upload and link files to deals, people, organizations, activities, products, or leads in pipedrive. see the \"adding a file\" tutorial for details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"org_id\": 0,\n  \"deal_id\": 0,\n  \"lead_id\": {},\n  \"person_id\": 0,\n  \"product_id\": 0,\n  \"activity_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_new_activity_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/new/activity/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "new",
            "activity",
            "type"
          ]
        },
        "description": "Adds a new activity type.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color\": \"\",\n  \"icon_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_or_update_role_setting",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/or/update/role/setting",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "or",
            "update",
            "role",
            "setting"
          ]
        },
        "description": "Adds or updates the visibility setting for a role.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"value\": 0,\n  \"setting_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_person_picture",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/person/picture",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "person",
            "picture"
          ]
        },
        "description": "This service allows adding a photo to a person's profile, replacing any existing one. images must be square with a minimum size of 128 pixels and in gif, jpg, or png formats. they will be resized to 1",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"file\": {},\n  \"crop_x\": 0,\n  \"crop_y\": 0,\n  \"crop_width\": 0,\n  \"crop_height\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_role_assignment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/role/assignment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "role",
            "assignment"
          ]
        },
        "description": "Assigns a user to a role.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_add_users_to_a_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/users/to/a/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "users",
            "to",
            "a",
            "team"
          ]
        },
        "description": "Adds users to an existing team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"users\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_archive_a_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/archive/a/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "archive",
            "a",
            "project"
          ]
        },
        "description": "Archives a project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_attach_an_audio_file_to_the_call_log",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/attach/an/audio/file/to/the/call/log",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "attach",
            "an",
            "audio",
            "file",
            "to",
            "the",
            "call",
            "log"
          ]
        },
        "description": "Adds an audio recording to the call log. that audio can be played by those who have access to the call log object.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"file\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_cancel_a_recurring_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cancel/a/recurring/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cancel",
            "a",
            "recurring",
            "subscription"
          ]
        },
        "description": "Cancels a recurring subscription.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"end_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_create_a_new_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/new/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "new",
            "webhook"
          ]
        },
        "description": "Creates and returns details of a new webhook. trigger events combine `event action` and `event object`, like `*.*` for all events or `added.deal`, `deleted.persons` for specific actions. more info in ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": 0,\n  \"version\": \"\",\n  \"event_action\": \"\",\n  \"event_object\": \"\",\n  \"http_auth_user\": \"\",\n  \"subscription_url\": \"\",\n  \"http_auth_password\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_create_a_remote_file_and_link_it_to_an_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/remote/file/and/link/it/to/an/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "remote",
            "file",
            "and",
            "link",
            "it",
            "to",
            "an",
            "item"
          ]
        },
        "description": "Creates an empty file on google drive linked to an item. for details, refer to the pipedrive remote file adding tutorial.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"item_id\": 0,\n  \"file_type\": \"\",\n  \"item_type\": \"\",\n  \"remote_location\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_create_an_organization_relationship",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/an/organization/relationship",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "an",
            "organization",
            "relationship"
          ]
        },
        "description": "Creates and returns an organization relationship.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"org_id\": 0,\n  \"rel_owner_org_id\": 0,\n  \"rel_linked_org_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_call_log",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/call/log",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "call",
            "log"
          ]
        },
        "description": "Deletes a call log. if there is an audio recording attached to it, it will also be deleted. the related activity will not be removed by this request. if you want to remove the related activities, plea",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_channel",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/channel",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "channel"
          ]
        },
        "description": "The endpoint removes a messenger channel along with conversations and messages. requires messengers integration oauth and messaging app extension manifest.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_comment_related_to_a_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/comment/related/to/a/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "comment",
            "related",
            "to",
            "a",
            "note"
          ]
        },
        "description": "Deletes a comment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"commentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_conversation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/conversation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "conversation"
          ]
        },
        "description": "Deletes an existing conversation. to use the endpoint, you need to have **messengers integration** oauth scope enabled and the messaging manifest ready for the [messaging app extension](https://pipedr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"channel__id\": \"\",\n  \"conversation__id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "deal"
          ]
        },
        "description": "Marks a deal as deleted. after 30 days, the deal will be permanently deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_deal_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/deal/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "deal",
            "field"
          ]
        },
        "description": "Marks a field as deleted. for more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/deleting-a-custom-field\" target=\" blank\" rel=\"noopener noreferrer\">deleting a custom fiel",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "file"
          ]
        },
        "description": "Marks a file as deleted. after 30 days, the file will be permanently deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "filter"
          ]
        },
        "description": "Marks a filter as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_follower_from_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/follower/from/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "follower",
            "from",
            "a",
            "deal"
          ]
        },
        "description": "Deletes a follower from a deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"follower_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_follower_from_a_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/follower/from/a/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "follower",
            "from",
            "a",
            "person"
          ]
        },
        "description": "Deletes a follower from a person.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"follower_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_follower_from_a_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/follower/from/a/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "follower",
            "from",
            "a",
            "product"
          ]
        },
        "description": "Deletes a follower from a product.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"follower_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_follower_from_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/follower/from/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "follower",
            "from",
            "an",
            "organization"
          ]
        },
        "description": "Deletes a follower from an organization. you can retrieve the `follower id` from the <a href=\"https://developers.pipedrive.com/docs/api/v1/organizations#getorganizationfollowers\">list followers of an ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"follower_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "lead"
          ]
        },
        "description": "Deletes a specific lead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_lead_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/lead/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "lead",
            "label"
          ]
        },
        "description": "Deletes a specific lead label.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "note"
          ]
        },
        "description": "Deletes a specific note.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_participant_from_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/participant/from/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "participant",
            "from",
            "a",
            "deal"
          ]
        },
        "description": "Deletes a participant from a deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"deal_participant_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "person"
          ]
        },
        "description": "Marks a person as deleted. after 30 days, the person will be permanently deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_person_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/person/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "person",
            "field"
          ]
        },
        "description": "Marks a field as deleted. for more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/deleting-a-custom-field\" target=\" blank\" rel=\"noopener noreferrer\">deleting a custom fiel",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_pipeline",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/pipeline",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "pipeline"
          ]
        },
        "description": "Marks a pipeline as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "product"
          ]
        },
        "description": "Marks a product as deleted. after 30 days, the product will be permanently deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_product_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/product/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "product",
            "field"
          ]
        },
        "description": "Marks a product field as deleted. for more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/deleting-a-custom-field\" target=\" blank\" rel=\"noopener noreferrer\">deleting a cus",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "project"
          ]
        },
        "description": "Marks a project as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "role"
          ]
        },
        "description": "Marks a role as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_role_assignment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/role/assignment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "role",
            "assignment"
          ]
        },
        "description": "Removes the assigned user from a role and adds to the default role.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_stage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/stage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "stage"
          ]
        },
        "description": "Marks a stage as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "subscription"
          ]
        },
        "description": "Marks an installment or a recurring subscription as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_a_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "task"
          ]
        },
        "description": "Marks a task as deleted. if the task has subtasks then those will also be deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_an_activity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/activity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "activity"
          ]
        },
        "description": "Marks an activity as deleted. after 30 days, the activity will be permanently deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_an_activity_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/activity/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "activity",
            "type"
          ]
        },
        "description": "Marks an activity type as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_an_attached_product_from_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/attached/product/from/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "attached",
            "product",
            "from",
            "a",
            "deal"
          ]
        },
        "description": "Deletes a product attachment from a deal, using the `product attachment id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"product_attachment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "organization"
          ]
        },
        "description": "Marks an organization as deleted. after 30 days, the organization will be permanently deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_an_organization_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/organization/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "organization",
            "field"
          ]
        },
        "description": "Marks a field as deleted. for more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/deleting-a-custom-field\" target=\" blank\" rel=\"noopener noreferrer\">deleting a custom fiel",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_an_organization_relationship",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/organization/relationship",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "organization",
            "relationship"
          ]
        },
        "description": "Deletes an organization relationship and returns the deleted id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_existing_goal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/existing/goal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "existing",
            "goal"
          ]
        },
        "description": "Marks a goal as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_existing_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/existing/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "existing",
            "webhook"
          ]
        },
        "description": "Deletes the specified webhook.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_mail_thread",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/mail/thread",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "mail",
            "thread"
          ]
        },
        "description": "Marks a mail thread as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_multiple_activities_in_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/multiple/activities/in/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "multiple",
            "activities",
            "in",
            "bulk"
          ]
        },
        "description": "Marks multiple activities as deleted. after 30 days, the activities will be permanently deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_multiple_activity_types_in_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/multiple/activity/types/in/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "multiple",
            "activity",
            "types",
            "in",
            "bulk"
          ]
        },
        "description": "Marks multiple activity types as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_multiple_deal_fields_in_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/multiple/deal/fields/in/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "multiple",
            "deal",
            "fields",
            "in",
            "bulk"
          ]
        },
        "description": "Marks multiple deal fields as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_multiple_deals_in_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/multiple/deals/in/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "multiple",
            "deals",
            "in",
            "bulk"
          ]
        },
        "description": "Marks multiple deals as deleted. after 30 days, the deals will be permanently deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_multiple_filters_in_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/multiple/filters/in/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "multiple",
            "filters",
            "in",
            "bulk"
          ]
        },
        "description": "Marks multiple filters as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_multiple_organization_fields_in_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/multiple/organization/fields/in/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "multiple",
            "organization",
            "fields",
            "in",
            "bulk"
          ]
        },
        "description": "Marks multiple fields as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_multiple_organizations_in_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/multiple/organizations/in/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "multiple",
            "organizations",
            "in",
            "bulk"
          ]
        },
        "description": "Marks multiple organizations as deleted. after 30 days, the organizations will be permanently deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_multiple_person_fields_in_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/multiple/person/fields/in/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "multiple",
            "person",
            "fields",
            "in",
            "bulk"
          ]
        },
        "description": "Marks multiple fields as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_multiple_persons_in_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/multiple/persons/in/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "multiple",
            "persons",
            "in",
            "bulk"
          ]
        },
        "description": "Marks multiple persons as deleted. after 30 days, the persons will be permanently deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_multiple_product_fields_in_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/multiple/product/fields/in/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "multiple",
            "product",
            "fields",
            "in",
            "bulk"
          ]
        },
        "description": "Marks multiple fields as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_multiple_stages_in_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/multiple/stages/in/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "multiple",
            "stages",
            "in",
            "bulk"
          ]
        },
        "description": "Marks multiple stages as deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_person_picture",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/person/picture",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "person",
            "picture"
          ]
        },
        "description": "Deletes a person’s picture.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_delete_users_from_a_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/users/from/a/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "users",
            "from",
            "a",
            "team"
          ]
        },
        "description": "Deletes users from an existing team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"users\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_download_one_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/one/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "one",
            "file"
          ]
        },
        "description": "Initializes a file download.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_duplicate_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/duplicate/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "duplicate",
            "deal"
          ]
        },
        "description": "Duplicates a deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_enumerate_accessible_users_for_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/enumerate/accessible/users/for/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "enumerate",
            "accessible",
            "users",
            "for",
            "lead"
          ]
        },
        "description": "Lists the users permitted to access a lead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_find_goals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/goals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "goals"
          ]
        },
        "description": "Query goal data by appending `{searchfield}={searchvalue}` to the url with dot-notation fields and values. include `is active` to filter by goal status and specify both `period.start` and `period.end`",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"is_active\": false,\n  \"type__name\": \"\",\n  \"period__end\": \"\",\n  \"assignee__id\": 0,\n  \"period__start\": \"\",\n  \"assignee__type\": \"\",\n  \"type__params__stage__id\": 0,\n  \"expected__outcome__target\": 0,\n  \"type__params__pipeline__id\": \"\",\n  \"expected__outcome__currency__id\": 0,\n  \"type__params__activity__type__id\": \"\",\n  \"expected__outcome__tracking__metric\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_find_subscription_by_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/subscription/by/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "subscription",
            "by",
            "deal"
          ]
        },
        "description": "Returns details of an installment or a recurring subscription by the deal id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dealId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_find_users_by_name",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/users/by/name",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "users",
            "by",
            "name"
          ]
        },
        "description": "Finds users by their name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"term\": \"\",\n  \"search_by_email\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_a_single_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/single/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "single",
            "team"
          ]
        },
        "description": "Returns data about a specific team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"skip_users\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_activities_assigned_to_a_particular_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/activities/assigned/to/a/particular/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "activities",
            "assigned",
            "to",
            "a",
            "particular",
            "user"
          ]
        },
        "description": "Returns all activities assigned to a particular user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"done\": 0,\n  \"type\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"user_id\": 0,\n  \"end_date\": \"\",\n  \"filter_id\": 0,\n  \"start_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_activities_beta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/activities/beta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "activities",
            "beta"
          ]
        },
        "description": "This beta cursor-paginated endpoint returns all activities, accessible only to global admins, not regular users who get a 403 error. refer to pipedrive's documentation for pagination and global permis",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"done\": false,\n  \"type\": \"\",\n  \"limit\": 0,\n  \"since\": \"\",\n  \"until\": \"\",\n  \"cursor\": \"\",\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_activity_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/activity/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "activity",
            "fields"
          ]
        },
        "description": "Returns all activity fields.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_activity_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/activity/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "activity",
            "types"
          ]
        },
        "description": "Returns all activity types.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_add_ons_for_a_single_company",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/add/ons/for/a/single/company",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "add",
            "ons",
            "for",
            "a",
            "single",
            "company"
          ]
        },
        "description": "Returns the add-ons for a single company.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_call_logs_assigned_to_a_particular_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/call/logs/assigned/to/a/particular/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "call",
            "logs",
            "assigned",
            "to",
            "a",
            "particular",
            "user"
          ]
        },
        "description": "Returns all call logs assigned to a particular user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_comments_for_a_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/comments/for/a/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "comments",
            "for",
            "a",
            "note"
          ]
        },
        "description": "Returns all comments associated with a note.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_deal_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/deal/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "deal",
            "fields"
          ]
        },
        "description": "Returns data about all deal fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_deals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/deals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "deals"
          ]
        },
        "description": "Returns all deals. for more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/getting-all-deals\" target=\" blank\" rel=\"noopener noreferrer\">getting all deals</a>.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"status\": \"\",\n  \"user_id\": 0,\n  \"stage_id\": 0,\n  \"filter_id\": 0,\n  \"owned_by_you\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_deals_beta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/deals/beta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "deals",
            "beta"
          ]
        },
        "description": "This endpoint returns all deals with cursor pagination (in beta). only global admins can access it; others get a 403 error. more info on pagination and permissions is available online.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"since\": \"\",\n  \"until\": \"\",\n  \"cursor\": \"\",\n  \"status\": \"\",\n  \"user_id\": 0,\n  \"stage_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_files",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/files",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "files"
          ]
        },
        "description": "Returns data about all files.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_filter_helpers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/filter/helpers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "filter",
            "helpers"
          ]
        },
        "description": "The text provides links to documentation for adding or updating filters, and information on all supported filter helpers in an api. it encourages consulting a tutorial for more details on adding a fil",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_filters",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/filters",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "filters"
          ]
        },
        "description": "Returns data about all filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_lead_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/lead/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "lead",
            "labels"
          ]
        },
        "description": "Returns details of all lead labels. this endpoint does not support pagination and all labels are always returned.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_lead_sources",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/lead/sources",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "lead",
            "sources"
          ]
        },
        "description": "Returns all lead sources. please note that the list of lead sources is fixed, it cannot be modified. all leads created through the pipedrive api will have a lead source `api` assigned.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_leads",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/leads",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "leads"
          ]
        },
        "description": "The api returns sorted leads by creation time, supporting pagination via `limit` and `start`. custom field values are included if set, mimicking the `deals` endpoint structure; unset fields are omitte",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"owner_id\": 0,\n  \"filter_id\": 0,\n  \"person_id\": 0,\n  \"archived_status\": \"\",\n  \"organization_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_mail_messages_of_mail_thread",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/mail/messages/of/mail/thread",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "mail",
            "messages",
            "of",
            "mail",
            "thread"
          ]
        },
        "description": "Returns all the mail messages inside a specified mail thread.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_note_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/note/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "note",
            "fields"
          ]
        },
        "description": "Returns data about all note fields.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_notes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/notes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "notes"
          ]
        },
        "description": "Returns all notes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"org_id\": 0,\n  \"deal_id\": 0,\n  \"lead_id\": \"\",\n  \"user_id\": 0,\n  \"end_date\": \"\",\n  \"person_id\": 0,\n  \"start_date\": \"\",\n  \"pinned_to_deal_flag\": 0,\n  \"pinned_to_lead_flag\": 0,\n  \"pinned_to_person_flag\": 0,\n  \"pinned_to_organization_flag\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_organization_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/organization/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "organization",
            "fields"
          ]
        },
        "description": "Returns data about all organization fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_organizations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/organizations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "organizations"
          ]
        },
        "description": "Returns all organizations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"user_id\": 0,\n  \"filter_id\": 0,\n  \"first_char\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_organizations_beta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/organizations/beta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "organizations",
            "beta"
          ]
        },
        "description": "This beta api endpoint lists all organizations with cursor pagination. only global admins have access; others get a 403 error. see docs for pagination and global permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"since\": \"\",\n  \"until\": \"\",\n  \"cursor\": \"\",\n  \"owner_id\": 0,\n  \"first_char\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_payments_of_a_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/payments/of/a/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "payments",
            "of",
            "a",
            "subscription"
          ]
        },
        "description": "Returns all payments of an installment or recurring subscription.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_permission_sets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/permission/sets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "permission",
            "sets"
          ]
        },
        "description": "Returns data about all permission sets.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_person_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/person/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "person",
            "fields"
          ]
        },
        "description": "Returns data about all person fields.<br>if a company uses the [campaigns product](https://pipedrive.readme.io/docs/campaigns-in-pipedrive-api), then this endpoint will also return the `data.marketing",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_persons",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/persons",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "persons"
          ]
        },
        "description": "Returns all persons.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"user_id\": 0,\n  \"filter_id\": 0,\n  \"first_char\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_persons_beta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/persons/beta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "persons",
            "beta"
          ]
        },
        "description": "This beta endpoint returns all persons, using cursor pagination. only global admins have access; others get a 403 error. info on pagination and permissions is in the linked docs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"since\": \"\",\n  \"until\": \"\",\n  \"cursor\": \"\",\n  \"owner_id\": 0,\n  \"first_char\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_pipelines",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/pipelines",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "pipelines"
          ]
        },
        "description": "Returns data about all pipelines.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_product_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/product/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "product",
            "fields"
          ]
        },
        "description": "Returns data about all product fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_products",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/products",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "products"
          ]
        },
        "description": "Returns data about all products.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"user_id\": 0,\n  \"filter_id\": 0,\n  \"first_char\": \"\",\n  \"get_summary\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_project_boards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/project/boards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "project",
            "boards"
          ]
        },
        "description": "Returns all projects boards that are not deleted.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_project_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/project/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "project",
            "templates"
          ]
        },
        "description": "The endpoint retrieves all non-deleted project templates with cursor-based pagination. refer to the provided documentation link for more details on pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "projects"
          ]
        },
        "description": "Returns all projects. this is a cursor-paginated endpoint. for more information, please refer to our documentation on <a href=\"https://pipedrive.readme.io/docs/core-api-concepts-pagination\" target=\" b",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"status\": \"\",\n  \"phase_id\": 0,\n  \"filter_id\": 0,\n  \"include_archived\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_relationships_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/relationships/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "relationships",
            "for",
            "organization"
          ]
        },
        "description": "Gets all of the relationships for a supplied organization id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_roles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/roles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "roles"
          ]
        },
        "description": "Returns all the roles within the company.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_stages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/stages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "stages"
          ]
        },
        "description": "Returns data about all stages.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"start\": 0,\n  \"pipeline_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_supported_currencies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/supported/currencies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "supported",
            "currencies"
          ]
        },
        "description": "Returns all supported currencies in given account which should be used when saving monetary values with other objects. the `code` parameter of the returning objects is the currency code according to i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"term\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "tasks"
          ]
        },
        "description": "Returns all tasks. this is a cursor-paginated endpoint. for more information, please refer to our documentation on <a href=\"https://pipedrive.readme.io/docs/core-api-concepts-pagination\" target=\" blan",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"done\": 0,\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"project_id\": 0,\n  \"assignee_id\": 0,\n  \"parent_task_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "teams"
          ]
        },
        "description": "Returns data about teams within the company.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order_by\": \"\",\n  \"skip_users\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_teams_of_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/teams/of/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "teams",
            "of",
            "a",
            "user"
          ]
        },
        "description": "Returns data about all teams which have the specified user as a member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"order_by\": \"\",\n  \"skip_users\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_user_connections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/user/connections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "user",
            "connections"
          ]
        },
        "description": "Returns data about all connections for the authorized user.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "users"
          ]
        },
        "description": "Returns data about all users within the company.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_users_in_a_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/users/in/a/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "users",
            "in",
            "a",
            "team"
          ]
        },
        "description": "Returns a list of all user ids within a team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_all_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "webhooks"
          ]
        },
        "description": "Returns data about all the webhooks of a company.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_current_user_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/current/user/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "current",
            "user",
            "data"
          ]
        },
        "description": "Returns data about an authorized user within the company with bound company data: company id, company name, and domain. note that the `locale` property means 'date/number format' in the pipedrive acco",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_deals_conversion_rates_in_pipeline",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deals/conversion/rates/in/pipeline",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deals",
            "conversion",
            "rates",
            "in",
            "pipeline"
          ]
        },
        "description": "Returns all stage-to-stage conversion and pipeline-to-close rates for the given time period.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"user_id\": 0,\n  \"end_date\": \"\",\n  \"start_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_deals_in_a_pipeline",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deals/in/a/pipeline",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deals",
            "in",
            "a",
            "pipeline"
          ]
        },
        "description": "Lists deals in a specific pipeline across all its stages.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"start\": 0,\n  \"user_id\": 0,\n  \"everyone\": 0,\n  \"stage_id\": 0,\n  \"filter_id\": 0,\n  \"get_summary\": 0,\n  \"totals_convert_currency\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_deals_in_a_stage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deals/in/a/stage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deals",
            "in",
            "a",
            "stage"
          ]
        },
        "description": "Lists deals in a specific stage.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"start\": 0,\n  \"user_id\": 0,\n  \"everyone\": 0,\n  \"filter_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_deals_movements_in_pipeline",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deals/movements/in/pipeline",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deals",
            "movements",
            "in",
            "pipeline"
          ]
        },
        "description": "Returns statistics for deals movements for the given time period.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"user_id\": 0,\n  \"end_date\": \"\",\n  \"start_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_deals_summary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deals/summary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deals",
            "summary"
          ]
        },
        "description": "Returns a summary of all the deals.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"user_id\": 0,\n  \"stage_id\": 0,\n  \"filter_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_deals_timeline",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deals/timeline",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deals",
            "timeline"
          ]
        },
        "description": "Returns opened and won deals in time-based groups according to a specified dealfield, with examples of deals grouped by month over a 3-month period starting january 2012.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"amount\": 0,\n  \"user_id\": 0,\n  \"interval\": \"\",\n  \"field_key\": \"\",\n  \"filter_id\": 0,\n  \"start_date\": \"\",\n  \"pipeline_id\": 0,\n  \"exclude_deals\": 0,\n  \"totals_convert_currency\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_deals_where_a_product_is_attached_to",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deals/where/a/product/is/attached/to",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deals",
            "where",
            "a",
            "product",
            "is",
            "attached",
            "to"
          ]
        },
        "description": "Returns data about deals that have a product attached to it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"start\": 0,\n  \"status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_details_of_a_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/details/of/a/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "details",
            "of",
            "a",
            "board"
          ]
        },
        "description": "Returns the details of a specific project board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_details_of_a_call_log",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/details/of/a/call/log",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "details",
            "of",
            "a",
            "call",
            "log"
          ]
        },
        "description": "Returns details of a specific call log.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_details_of_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/details/of/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "details",
            "of",
            "a",
            "deal"
          ]
        },
        "description": "Fetches specific deal details, including exclusive fields like deal age and pipeline stage duration. custom fields show up as hashes, which can be matched using the 'key' from dealfields. see the deal",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_details_of_a_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/details/of/a/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "details",
            "of",
            "a",
            "person"
          ]
        },
        "description": "The text describes an api endpoint that returns detailed person information, including extra fields and custom fields as hashes. it also provides `data.marketing status` if the campaigns product is us",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_details_of_a_phase",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/details/of/a/phase",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "details",
            "of",
            "a",
            "phase"
          ]
        },
        "description": "Returns the details of a specific project phase.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_details_of_a_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/details/of/a/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "details",
            "of",
            "a",
            "project"
          ]
        },
        "description": "Returns the details of a specific project. also note that custom fields appear as long hashes in the resulting data. these hashes can be mapped against the `key` value of project fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_details_of_a_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/details/of/a/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "details",
            "of",
            "a",
            "subscription"
          ]
        },
        "description": "Returns details of an installment or a recurring subscription.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_details_of_a_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/details/of/a/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "details",
            "of",
            "a",
            "task"
          ]
        },
        "description": "Returns the details of a specific task.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_details_of_a_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/details/of/a/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "details",
            "of",
            "a",
            "template"
          ]
        },
        "description": "Returns the details of a specific project template.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_details_of_an_activity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/details/of/an/activity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "details",
            "of",
            "an",
            "activity"
          ]
        },
        "description": "Returns the details of a specific activity.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_details_of_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/details/of/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "details",
            "of",
            "an",
            "organization"
          ]
        },
        "description": "Provides detailed information about an organization, including additional fields not shown when listing all organizations, and maps custom fields as long hashes to the 'key' value in organizationfield",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_mail_threads",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/mail/threads",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "mail",
            "threads"
          ]
        },
        "description": "Returns mail threads in a specified folder ordered by the most recent message within.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"start\": 0,\n  \"folder\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "comment"
          ]
        },
        "description": "Returns the details of a comment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"commentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_deal_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/deal/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "deal",
            "field"
          ]
        },
        "description": "Returns data about a specific deal field.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "file"
          ]
        },
        "description": "Returns data about a specific file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "filter"
          ]
        },
        "description": "Returns data about a specific filter. note that this also returns the condition lines of the filter.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "lead"
          ]
        },
        "description": "Api returns specific lead details with custom field values in the deals format. unset custom fields are omitted. leads share custom fields with deals, not having a unique set.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_mail_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/mail/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "mail",
            "message"
          ]
        },
        "description": "Returns data about a specific mail message.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"include_body\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_mail_thread",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/mail/thread",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "mail",
            "thread"
          ]
        },
        "description": "Returns a specific mail thread.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "note"
          ]
        },
        "description": "Returns details about a specific note.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_organization_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/organization/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "organization",
            "field"
          ]
        },
        "description": "Returns data about a specific organization field.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_organization_relationship",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/organization/relationship",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "organization",
            "relationship"
          ]
        },
        "description": "Finds and returns an organization relationship from its id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"org_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_permission_set",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/permission/set",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "permission",
            "set"
          ]
        },
        "description": "Returns data about a specific permission set.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_person_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/person/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "person",
            "field"
          ]
        },
        "description": "Returns data about a specific person field.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_pipeline",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/pipeline",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "pipeline"
          ]
        },
        "description": "Returns data about a specific pipeline. also returns the summary of the deals in this pipeline across its stages.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"totals_convert_currency\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "product"
          ]
        },
        "description": "Returns data about a specific product.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_product_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/product/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "product",
            "field"
          ]
        },
        "description": "Returns data about a specific product field.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "role"
          ]
        },
        "description": "Returns the details of a specific role.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_stage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/stage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "stage"
          ]
        },
        "description": "Returns data about a specific stage.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"everyone\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_one_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/one/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "one",
            "user"
          ]
        },
        "description": "Returns data about a specific user within the company.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_project_phases",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/phases",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "phases"
          ]
        },
        "description": "Returns all active project phases under a specific board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"board_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_recents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/recents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "recents"
          ]
        },
        "description": "Returns data about all recent changes occurred after the given timestamp.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"items\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"since_timestamp\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_get_result_of_a_goal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/result/of/a/goal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "result",
            "of",
            "a",
            "goal"
          ]
        },
        "description": "Gets the progress of a goal for the specified period.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"period__end\": \"\",\n  \"period__start\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_link_a_remote_file_to_an_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/link/a/remote/file/to/an/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "link",
            "a",
            "remote",
            "file",
            "to",
            "an",
            "item"
          ]
        },
        "description": "Links an existing remote file (`googledrive`) to the item you supply. for more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-remote-file\" target=\" blank\" rel=\"no",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"item_id\": 0,\n  \"item_type\": \"\",\n  \"remote_id\": \"\",\n  \"remote_location\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_link_user_video_integration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/link/user/video/integration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "link",
            "user",
            "video",
            "integration"
          ]
        },
        "description": "A video calling provider must call this endpoint after a user has installed the video calling app so that the new user's information is sent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": 0,\n  \"company_id\": 0,\n  \"user_provider_id\": \"\",\n  \"marketplace_client_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_activities_associated_with_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/activities/associated/with/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "activities",
            "associated",
            "with",
            "a",
            "deal"
          ]
        },
        "description": "Lists activities associated with a deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"done\": 0,\n  \"limit\": 0,\n  \"start\": 0,\n  \"exclude\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_activities_associated_with_a_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/activities/associated/with/a/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "activities",
            "associated",
            "with",
            "a",
            "person"
          ]
        },
        "description": "Lists activities associated with a person.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"done\": 0,\n  \"limit\": 0,\n  \"start\": 0,\n  \"exclude\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_activities_associated_with_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/activities/associated/with/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "activities",
            "associated",
            "with",
            "an",
            "organization"
          ]
        },
        "description": "Lists activities associated with an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"done\": 0,\n  \"limit\": 0,\n  \"start\": 0,\n  \"exclude\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_all_persons_associated_with_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/persons/associated/with/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "persons",
            "associated",
            "with",
            "a",
            "deal"
          ]
        },
        "description": "The endpoint lists every person linked to a deal, including primary contacts and participants, and provides a `data.marketing status` field for users of the campaigns product.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_deals_associated_with_a_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deals/associated/with/a/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deals",
            "associated",
            "with",
            "a",
            "person"
          ]
        },
        "description": "Lists deals associated with a person.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_deals_associated_with_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deals/associated/with/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deals",
            "associated",
            "with",
            "an",
            "organization"
          ]
        },
        "description": "Lists deals associated with an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"status\": \"\",\n  \"only_primary_association\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_files_attached_to_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/files/attached/to/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "files",
            "attached",
            "to",
            "a",
            "deal"
          ]
        },
        "description": "Lists files associated with a deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_files_attached_to_a_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/files/attached/to/a/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "files",
            "attached",
            "to",
            "a",
            "person"
          ]
        },
        "description": "Lists files associated with a person.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_files_attached_to_a_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/files/attached/to/a/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "files",
            "attached",
            "to",
            "a",
            "product"
          ]
        },
        "description": "Lists files associated with a product.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_files_attached_to_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/files/attached/to/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "files",
            "attached",
            "to",
            "an",
            "organization"
          ]
        },
        "description": "Lists files associated with an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_followers_of_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/followers/of/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "followers",
            "of",
            "a",
            "deal"
          ]
        },
        "description": "Lists the followers of a deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_followers_of_a_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/followers/of/a/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "followers",
            "of",
            "a",
            "person"
          ]
        },
        "description": "Lists the followers of a person.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_followers_of_a_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/followers/of/a/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "followers",
            "of",
            "a",
            "product"
          ]
        },
        "description": "Lists the followers of a product.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_followers_of_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/followers/of/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "followers",
            "of",
            "a",
            "user"
          ]
        },
        "description": "Lists the followers of a specific user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_followers_of_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/followers/of/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "followers",
            "of",
            "an",
            "organization"
          ]
        },
        "description": "Lists the followers of an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_mail_messages_associated_with_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/mail/messages/associated/with/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "mail",
            "messages",
            "associated",
            "with",
            "a",
            "deal"
          ]
        },
        "description": "Lists mail messages associated with a deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_mail_messages_associated_with_a_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/mail/messages/associated/with/a/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "mail",
            "messages",
            "associated",
            "with",
            "a",
            "person"
          ]
        },
        "description": "Lists mail messages associated with a person.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_mail_messages_associated_with_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/mail/messages/associated/with/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "mail",
            "messages",
            "associated",
            "with",
            "an",
            "organization"
          ]
        },
        "description": "Lists mail messages associated with an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_participants_of_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/participants/of/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "participants",
            "of",
            "a",
            "deal"
          ]
        },
        "description": "Lists the participants associated with a deal.<br>if a company uses the [campaigns product](https://pipedrive.readme.io/docs/campaigns-in-pipedrive-api), then this endpoint will also return the `data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_permission_set_assignments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/permission/set/assignments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "permission",
            "set",
            "assignments"
          ]
        },
        "description": "Returns the list of assignments for a permission set.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_permitted_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/permitted/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "permitted",
            "users"
          ]
        },
        "description": "Lists the users permitted to access a deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_person_access_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/person/access/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "person",
            "access",
            "users"
          ]
        },
        "description": "List users permitted to access a person.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_persons_of_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/persons/of/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "persons",
            "of",
            "an",
            "organization"
          ]
        },
        "description": "Lists persons associated with an organization.<br>if a company uses the [campaigns product](https://pipedrive.readme.io/docs/campaigns-in-pipedrive-api), then this endpoint will also return the `data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_pipeline_visibility_for_a_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pipeline/visibility/for/a/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pipeline",
            "visibility",
            "for",
            "a",
            "role"
          ]
        },
        "description": "Returns a list of visible or hidden pipeline ids by role. see the \"visibility groups article\" for details on pipeline visibility.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"visible\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_product_permitted_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/product/permitted/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "product",
            "permitted",
            "users"
          ]
        },
        "description": "Lists users permitted to access a product.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_products_associated_with_a_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/products/associated/with/a/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "products",
            "associated",
            "with",
            "a",
            "person"
          ]
        },
        "description": "Lists products associated with a person.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_products_attached_to_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/products/attached/to/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "products",
            "attached",
            "to",
            "a",
            "deal"
          ]
        },
        "description": "Lists products attached to a deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"start\": 0,\n  \"include_product_data\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_role_assignments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/role/assignments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "role",
            "assignments"
          ]
        },
        "description": "Returns all users assigned to a role.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_role_settings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/role/settings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "role",
            "settings"
          ]
        },
        "description": "Returns the visibility settings of a specific role.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_settings_of_an_authorized_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/settings/of/an/authorized/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "settings",
            "of",
            "an",
            "authorized",
            "user"
          ]
        },
        "description": "Lists the settings of an authorized user. example response contains a shortened list of settings.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_updates_about_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/updates/about/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "updates",
            "about",
            "a",
            "deal"
          ]
        },
        "description": "Lists updates about a deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"items\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"all_changes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_updates_about_a_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/updates/about/a/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "updates",
            "about",
            "a",
            "person"
          ]
        },
        "description": "Lists updates about a person.<br>if a company uses the [campaigns product](https://pipedrive.readme.io/docs/campaigns-in-pipedrive-api), then this endpoint's response will also include updates for the",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"items\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"all_changes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_updates_about_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/updates/about/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "updates",
            "about",
            "an",
            "organization"
          ]
        },
        "description": "Lists updates about an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"items\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"all_changes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_updates_about_participants_of_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/updates/about/participants/of/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "updates",
            "about",
            "participants",
            "of",
            "a",
            "deal"
          ]
        },
        "description": "This endpoint provides cursor-paginated updates on deal participants. for pagination details, see the pipedrive documentation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_user_permissions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/user/permissions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "user",
            "permissions"
          ]
        },
        "description": "Lists aggregated permissions over all assigned permission sets for a user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_list_user_role_settings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/user/role/settings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "user",
            "role",
            "settings"
          ]
        },
        "description": "Lists the settings of user's assigned role.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_merge_two_deals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/merge/two/deals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "merge",
            "two",
            "deals"
          ]
        },
        "description": "Merges a deal with another deal. for more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/merging-two-deals\" target=\" blank\" rel=\"noopener noreferrer\">merging two deals</a>",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"merge_with_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_merge_two_organizations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/merge/two/organizations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "merge",
            "two",
            "organizations"
          ]
        },
        "description": "Merges an organization with another organization. for more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/merging-two-organizations\" target=\" blank\" rel=\"noopener noreferr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"merge_with_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_merge_two_persons",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/merge/two/persons",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "merge",
            "two",
            "persons"
          ]
        },
        "description": "Merges a person with another person. for more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/merging-two-persons\" target=\" blank\" rel=\"noopener noreferrer\">merging two per",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"merge_with_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_organization_accessible_user_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/organization/accessible/user/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "organization",
            "accessible",
            "user",
            "list"
          ]
        },
        "description": "List users permitted to access an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_perform_a_search_from_multiple_item_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/perform/a/search/from/multiple/item/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "perform",
            "a",
            "search",
            "from",
            "multiple",
            "item",
            "types"
          ]
        },
        "description": "Performs a search from your choice of item types and fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"term\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"fields\": \"\",\n  \"item_types\": \"\",\n  \"exact_match\": false,\n  \"include_fields\": \"\",\n  \"search_for_related_items\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_pipedrive_list_user_role_assignments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pipedrive/list/user/role/assignments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pipedrive",
            "list",
            "user",
            "role",
            "assignments"
          ]
        },
        "description": "Lists role assignments for a user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"limit\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_receives_an_incoming_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/receives/an/incoming/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "receives",
            "an",
            "incoming",
            "message"
          ]
        },
        "description": "Adds a message to a conversation. to use the endpoint, you need to have **messengers integration** oauth scope enabled and the messaging manifest ready for the [messaging app extension](https://pipedr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"status\": \"\",\n  \"message\": \"\",\n  \"reply_by\": \"\",\n  \"sender_id\": \"\",\n  \"channel_id\": \"\",\n  \"created_at\": \"\",\n  \"attachments\": \"\",\n  \"conversation_id\": \"\",\n  \"conversation_link\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_refreshing_the_tokens",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/refreshing/the/tokens",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "refreshing",
            "the",
            "tokens"
          ]
        },
        "description": "Access tokens expire after the time specified in `expires in`. to continue accessing the api, use the `refresh token` to obtain a new access token.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"grant_type\": \"\",\n  \"refresh_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_requesting_authorization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/requesting/authorization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "requesting",
            "authorization"
          ]
        },
        "description": "Authorize a user by redirecting them to the pipedrive oauth authorization page and request their permissions to act on their behalf. this step is necessary to implement only when you allow app install",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"state\": \"\",\n  \"client_id\": \"\",\n  \"redirect_uri\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_returns_project_activities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/returns/project/activities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "returns",
            "project",
            "activities"
          ]
        },
        "description": "Returns activities linked to a specific project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_returns_project_groups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/returns/project/groups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "returns",
            "project",
            "groups"
          ]
        },
        "description": "Returns all active groups under a specific project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_returns_project_plan",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/returns/project/plan",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "returns",
            "project",
            "plan"
          ]
        },
        "description": "Returns information about items in a project plan. items consists of tasks and activities and are linked to specific project phase and group.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_returns_project_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/returns/project/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "returns",
            "project",
            "tasks"
          ]
        },
        "description": "Returns tasks linked to a specific project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_search_deals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/deals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "deals"
          ]
        },
        "description": "This api endpoint searches deals by title, notes, and custom fields, filters results by person or organization id, and is a specific use case of /v1/itemsearch with limited oauth scope.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"term\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"fields\": \"\",\n  \"status\": \"\",\n  \"person_id\": 0,\n  \"exact_match\": false,\n  \"include_fields\": \"\",\n  \"organization_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_search_item_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/item/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "item",
            "by",
            "field"
          ]
        },
        "description": "Performs a search from the values of a specific field. results can either be the distinct values of the field (useful for searching autocomplete field values), or the ids of actual items (deals, leads",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"term\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"field_key\": \"\",\n  \"field_type\": \"\",\n  \"exact_match\": false,\n  \"return_item_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_search_leads",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/leads",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "leads"
          ]
        },
        "description": "Endpoint searches leads by title, notes, custom fields, with options to filter by person and organization ids, and is a more specific use of the /v1/itemsearch with limited oauth scope.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"term\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"fields\": \"\",\n  \"person_id\": 0,\n  \"exact_match\": false,\n  \"include_fields\": \"\",\n  \"organization_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_search_organizations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/organizations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "organizations"
          ]
        },
        "description": "Searches all organizations by name, address, notes and/or custom fields. this endpoint is a wrapper of <a href=\"https://developers.pipedrive.com/docs/api/v1/itemsearch#searchitem\">/v1/itemsearch</a> w",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"term\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"fields\": \"\",\n  \"exact_match\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_search_persons",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/persons",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "persons"
          ]
        },
        "description": "This endpoint searches for individuals by various identifiers and is a specific use case of /v1/itemsearch with limited oauth scope, allowing results filtering by organization id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"term\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"fields\": \"\",\n  \"exact_match\": false,\n  \"include_fields\": \"\",\n  \"organization_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_search_products",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/products",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "products"
          ]
        },
        "description": "Searches all products by name, code and/or custom fields. this endpoint is a wrapper of <a href=\"https://developers.pipedrive.com/docs/api/v1/itemsearch#searchitem\">/v1/itemsearch</a> with a narrower ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"term\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"fields\": \"\",\n  \"exact_match\": false,\n  \"include_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_unlink_user_from_video_call_integration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unlink/user/from/video/call/integration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unlink",
            "user",
            "from",
            "video",
            "call",
            "integration"
          ]
        },
        "description": "A video calling provider must call this endpoint to remove the link between a user and the installed video calling app.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_a_comment_related_to_a_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/comment/related/to/a/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "comment",
            "related",
            "to",
            "a",
            "note"
          ]
        },
        "description": "Updates a comment related to a note.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"content\": \"\",\n  \"commentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "deal"
          ]
        },
        "description": "Updates the properties of a deal. for more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/updating-a-deal\" target=\" blank\" rel=\"noopener noreferrer\">updating a deal</a>.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_a_deal_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/deal/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "deal",
            "field"
          ]
        },
        "description": "Updates a deal field. for more information, see the tutorial for <a href=\" https://pipedrive.readme.io/docs/updating-custom-field-value \" target=\" blank\" rel=\"noopener noreferrer\">updating custom fiel",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"name\": \"\",\n  \"options\": \"\",\n  \"add_visible_flag\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_a_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "lead"
          ]
        },
        "description": "Updating lead properties modifies only specified fields; use `null` to unset. custom field data matches `deals`. unset fields are omitted. leads share deals' custom fields. for examples, refer to the ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"title\": \"\",\n  \"owner_id\": 0,\n  \"was_seen\": false,\n  \"label_ids\": \"\",\n  \"person_id\": 0,\n  \"is_archived\": false,\n  \"value__amount\": 0,\n  \"organization_id\": 0,\n  \"value__currency\": \"\",\n  \"expected_close_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_a_lead_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/lead/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "lead",
            "label"
          ]
        },
        "description": "Updates one or more properties of a lead label. only properties included in the request will be updated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"color\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_a_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "note"
          ]
        },
        "description": "Updates a note.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_a_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "person"
          ]
        },
        "description": "Modifies a person’s details in pipedrive. see the linked tutorial for guidance. if utilizing campaigns, the endpoint also handles `data.marketing status`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_a_person_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/person/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "person",
            "field"
          ]
        },
        "description": "Updates a person field. for more information, see the tutorial for <a href=\" https://pipedrive.readme.io/docs/updating-custom-field-value \" target=\" blank\" rel=\"noopener noreferrer\">updating custom fi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"name\": \"\",\n  \"options\": \"\",\n  \"add_visible_flag\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_a_pipeline",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/pipeline",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "pipeline"
          ]
        },
        "description": "Updates the properties of a pipeline.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"name\": \"\",\n  \"order_nr\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_a_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "product"
          ]
        },
        "description": "Updates product data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_a_product_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/product/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "product",
            "field"
          ]
        },
        "description": "Updates a product field. for more information, see the tutorial for <a href=\" https://pipedrive.readme.io/docs/updating-custom-field-value \" target=\" blank\" rel=\"noopener noreferrer\">updating custom f",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"name\": \"\",\n  \"options\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_a_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "project"
          ]
        },
        "description": "Updates a project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_a_recurring_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/recurring/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "recurring",
            "subscription"
          ]
        },
        "description": "Updates a recurring subscription.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"payments\": \"\",\n  \"description\": \"\",\n  \"cycle_amount\": 0,\n  \"effective_date\": \"\",\n  \"update_deal_value\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_a_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "task"
          ]
        },
        "description": "Updates a task.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_a_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "team"
          ]
        },
        "description": "Updates an existing team and returns the updated object.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_activity_in_project_plan",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/activity/in/project/plan",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "activity",
            "in",
            "project",
            "plan"
          ]
        },
        "description": "Updates an activity phase or group in a project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"group_id\": 0,\n  \"phase_id\": 0,\n  \"activityId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_an_activity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/activity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "activity"
          ]
        },
        "description": "Updates an activity. includes `more activities scheduled in context` property in response's `additional data` which indicates whether there are more undone activities scheduled with the same deal, per",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_an_activity_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/activity/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "activity",
            "type"
          ]
        },
        "description": "Updates an activity type.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"name\": \"\",\n  \"color\": \"\",\n  \"icon_key\": \"\",\n  \"order_nr\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_an_installment_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/installment/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "installment",
            "subscription"
          ]
        },
        "description": "Updates an installment subscription.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"payments\": \"\",\n  \"update_deal_value\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "organization"
          ]
        },
        "description": "Updates the properties of an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_an_organization_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/organization/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "organization",
            "field"
          ]
        },
        "description": "Updates an organization field. for more information, see the tutorial for <a href=\" https://pipedrive.readme.io/docs/updating-custom-field-value \" target=\" blank\" rel=\"noopener noreferrer\">updating cu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"name\": \"\",\n  \"options\": \"\",\n  \"add_visible_flag\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_an_organization_relationship",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/organization/relationship",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "organization",
            "relationship"
          ]
        },
        "description": "Updates and returns an organization relationship.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"type\": \"\",\n  \"org_id\": 0,\n  \"rel_owner_org_id\": 0,\n  \"rel_linked_org_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_existing_goal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/existing/goal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "existing",
            "goal"
          ]
        },
        "description": "Updates an existing goal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"title\": \"\",\n  \"interval\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_file_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/file/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "file",
            "details"
          ]
        },
        "description": "Updates the properties of a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"name\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "filter"
          ]
        },
        "description": "Updates an existing filter.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_mail_thread_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/mail/thread/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "mail",
            "thread",
            "details"
          ]
        },
        "description": "Updates the properties of a mail thread.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"deal_id\": 0,\n  \"lead_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_pipeline_visibility_for_a_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/pipeline/visibility/for/a/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "pipeline",
            "visibility",
            "for",
            "a",
            "role"
          ]
        },
        "description": "Updates pipeline visibility settings for different roles. for details, see the pipedrive visibility groups article.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_role_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/role/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "role",
            "details"
          ]
        },
        "description": "Updates the parent role and/or the name of a specific role.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"name\": \"\",\n  \"parent_role_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_stage_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/stage/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "stage",
            "details"
          ]
        },
        "description": "Updates the properties of a stage.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_task_in_project_plan",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/task/in/project/plan",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "task",
            "in",
            "project",
            "plan"
          ]
        },
        "description": "Updates a task phase or group in a project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"taskId\": 0,\n  \"group_id\": 0,\n  \"phase_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_the_product_attached_to_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/the/product/attached/to/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "the",
            "product",
            "attached",
            "to",
            "a",
            "deal"
          ]
        },
        "description": "Updates the details of the product that has been attached to a deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"tax\": 0,\n  \"comments\": \"\",\n  \"discount\": 0,\n  \"duration\": 0,\n  \"quantity\": 0,\n  \"item_price\": 0,\n  \"product_id\": 0,\n  \"tax_method\": \"\",\n  \"enabled_flag\": false,\n  \"discount_type\": \"\",\n  \"product_variation_id\": 0,\n  \"product_attachment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pipedrive_update_user_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/user/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "user",
            "details"
          ]
        },
        "description": "Updates the properties of a user. currently, only `active flag` can be updated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"active_flag\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}