{
  "info": {
    "_postman_id": "bc9ed3e2-e254-46ae-bf1e-9e34d0aef90d",
    "name": "Kruncher Integration API",
    "description": "Postman collection for Kruncher Integration endpoints (API key auth). Uses env vars: baseUrl, apiKey, projectId, analysisId.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "_exporter_id": "48901229",
    "_collection_link": "https://go.postman.co/collection/48901229-bc9ed3e2-e254-46ae-bf1e-9e34d0aef90d?source=collection_link"
  },
  "item": [
    {
      "name": "Projects",
      "item": [
        {
          "name": "GET Companies (Projects) - paginated",
          "event": [
            {
              "listen": "test",
              "script": {
                "type": "text/javascript",
                "exec": [
                  "pm.test('Status is 200', function () { pm.response.to.have.status(200); });",
                  "let json = {}; try { json = pm.response.json(); } catch(e) {}",
                  "if (json.metadata && json.metadata.code) {",
                  "  pm.test('metadata.code exists', () => pm.expect(json.metadata.code).to.exist);",
                  "}"
                ]
              }
            }
          ],
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/api/integration/projects?page=0",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "projects"
              ],
              "query": [
                {
                  "key": "page",
                  "value": "0"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET Search Companies",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/api/integration/project/search?keywords={{keywords}}&page=0",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "project",
                "search"
              ],
              "query": [
                {
                  "key": "keywords",
                  "value": "{{keywords}}"
                },
                {
                  "key": "page",
                  "value": "0"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET Portfolio Companies",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/api/integration/portfolioprojects",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "portfolioprojects"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST Create Company (projectAnalysisWithFile / projectAnalysisNoFile / projectNoAnalysis)",
          "event": [
            {
              "listen": "test",
              "script": {
                "exec": [
                  "let json = {}; try { json = pm.response.json(); } catch(e) {}",
                  "// Save IDs when present",
                  "const data = json.data || json;",
                  "if (data.analysisId) pm.environment.set('analysisId', data.analysisId);",
                  "if (data.project && data.project.id) pm.environment.set('projectId', data.project.id);",
                  "if (data.projectId) pm.environment.set('projectId', data.projectId);"
                ],
                "type": "text/javascript",
                "packages": {},
                "requests": {}
              }
            }
          ],
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"projectType\": \"projectAnalysisWithFile\",\n  \"name\": \"Your Company Nickname\",\n  \"companyName\": \"Your Company Nickname\",\n  \"companyWebsite\": \"\",\n  \"docLink\": \"\",\n  \"email\": \"\",\n  \"password\": \"\",\n  \"notesText\": \"\"\n}"
            },
            "url": {
              "raw": "{{baseUrl}}/api/integration/project",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "project"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST Add Comment to Company",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"projectId\": \"{{projectId}}\",\n  \"comment\": \"Comment from Postman\"\n}"
            },
            "url": {
              "raw": "{{baseUrl}}/api/integration/project/comment",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "project",
                "comment"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST Add Vote to Company",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"projectId\": \"{{projectId}}\",\n  \"analysisId\": \"{{analysisId}}\",\n  \"votingcustomeruserId\": \"\",\n  \"newVote\": {\n    \"votescoreId\": \"\",\n    \"comment\": \"Vote from Postman\"\n  }\n}"
            },
            "url": {
              "raw": "{{baseUrl}}/api/integration/project/vote",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "project",
                "vote"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST Company Criteria",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"projectId\": \"{{projectId}}\",\n  \"projectscoreId\": \"\",\n  \"postanalysisoutputId\": \"\",\n  \"criteriaSelectedCode\": \"advertisingandmarketing\",\n  \"criteriaSelectedName\": \"Advertising & Marketing\"\n}"
            },
            "url": {
              "raw": "{{baseUrl}}/api/integration/project/criteria",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "project",
                "criteria"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST Change Company Stage/Status",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"projectId\": \"{{projectId}}\",\n  \"projectstatusId\": \"\",\n  \"projectphaseId\": \"\",\n  \"projectstageId\": \"\",\n  \"reasonTakenArray\": [],\n  \"comment\": \"Moving to next stage\"\n}"
            },
            "url": {
              "raw": "{{baseUrl}}/api/integration/project/status",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "project",
                "status"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET Pipeline Stages",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/api/integration/stages",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "stages"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST Set Company Stage",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"projectId\": \"{{projectId}}\",\n  \"projectstageId\": \"\"\n}"
            },
            "url": {
              "raw": "{{baseUrl}}/api/integration/project/stage",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "project",
                "stage"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET Company Full Report",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/api/integration/project/fullreport?projectId={{projectId}}&analysisId={{analysisId}}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "project",
                "fullreport"
              ],
              "query": [
                {
                  "key": "projectId",
                  "value": "{{projectId}}"
                },
                {
                  "key": "analysisId",
                  "value": "{{analysisId}}"
                }
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Analyses",
      "item": [
        {
          "name": "GET Analysis Detail",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/api/integration/analysis/detail?analysisId={{analysisId}}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "analysis",
                "detail"
              ],
              "query": [
                {
                  "key": "analysisId",
                  "value": "{{analysisId}}"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "PUT Update Analysis Detail (entityKey/value)",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"analysisId\": \"{{analysisId}}\",\n  \"entityKey\": \"targetCustomerThreeWords\",\n  \"value\": \"updated@kruncher.ai\"\n}"
            },
            "url": {
              "raw": "{{baseUrl}}/api/integration/analysis/detail",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "analysis",
                "detail"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST Add New Analysis To Company",
          "event": [
            {
              "listen": "test",
              "script": {
                "type": "text/javascript",
                "exec": [
                  "let json = {}; try { json = pm.response.json(); } catch(e) {}",
                  "const data = json.data || json;",
                  "if (data.analysisId) pm.environment.set('analysisId', data.analysisId);",
                  "if (data.project && data.project.id) pm.environment.set('projectId', data.project.id);"
                ]
              }
            }
          ],
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"projectId\": \"{{projectId}}\"\n}"
            },
            "url": {
              "raw": "{{baseUrl}}/api/integration/analysis/company",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "analysis",
                "company"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Reports",
      "item": [
        {
          "name": "GET Retrieve Report with Analysis",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/api/integration/retrievereport?analysisId={{analysisId}}&projectId={{projectId}}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "retrievereport"
              ],
              "query": [
                {
                  "key": "analysisId",
                  "value": "{{analysisId}}"
                },
                {
                  "key": "projectId",
                  "value": "{{projectId}}"
                }
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "CRM Integrations",
      "item": [
        {
          "name": "POST Push to CRM (Attio/Notion)",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"platform\": \"attio\",\n  \"analysisId\": \"{{analysisId}}\"\n}"
            },
            "url": {
              "raw": "{{baseUrl}}/api/integration/pushtocrm",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "pushtocrm"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST Map Kruncher Objects to External Providers",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"entityType\": \"company\",\n  \"provider\": \"affinity\",\n  \"externalId\": \"{{externalId}}\",\n  \"kruncherId\": \"{{kruncherId}}\",\n  \"forceOverride\": false\n}"
            },
            "url": {
              "raw": "{{baseUrl}}/api/integration/map",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "map"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET All Mappings",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/api/integration/map/all",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "map",
                "all"
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET Lookup Mapping",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/api/integration/map?entityType=company&provider=affinity&externalId={{externalId}}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "map"
              ],
              "query": [
                {
                  "key": "entityType",
                  "value": "company"
                },
                {
                  "key": "provider",
                  "value": "affinity"
                },
                {
                  "key": "externalId",
                  "value": "{{externalId}}"
                },
                {
                  "key": "kruncherId",
                  "value": "{{kruncherId}}",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET Mapping by External ID",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/api/integration/map/externalid?externalId={{externalId}}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "map",
                "externalid"
              ],
              "query": [
                {
                  "key": "externalId",
                  "value": "{{externalId}}"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET Mapping by Kruncher ID",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/api/integration/map/kruncherid?kruncherId={{kruncherId}}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "map",
                "kruncherid"
              ],
              "query": [
                {
                  "key": "kruncherId",
                  "value": "{{kruncherId}}"
                }
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Project Lists",
      "item": [
        {
          "name": "GET Company Lists (Project Lists)",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/api/integration/projectlists",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "projectlists"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST Assign Company to List",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"projectId\": \"{{projectId}}\",\n  \"projectlistId\": \"\",\n  \"addTrueRemoveFalse\": true\n}"
            },
            "url": {
              "raw": "{{baseUrl}}/api/integration/projectlist/assign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "projectlist",
                "assign"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Affinity",
      "item": [
        {
          "name": "GET Affinity Daily Import",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/api/integration/affinity/daily?listId={{listId}}&defaultListId={{defaultListId}}&includeOrgNotes={{includeOrgNotes}}&processAllEntries={{processAllEntries}}&stageCode={{stageCode}}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "affinity",
                "daily"
              ],
              "query": [
                {
                  "key": "listId",
                  "value": "{{listId}}"
                },
                {
                  "key": "defaultListId",
                  "value": "{{defaultListId}}"
                },
                {
                  "key": "includeOrgNotes",
                  "value": "{{includeOrgNotes}}"
                },
                {
                  "key": "processAllEntries",
                  "value": "{{processAllEntries}}"
                },
                {
                  "key": "stageCode",
                  "value": "{{stageCode}}"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "GET Affinity Import Single Org",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/api/integration/affinity/neworg?orgId={{orgId}}&listId={{listId}}&includeOrgNotes={{includeOrgNotes}}&stageCode={{stageCode}}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "affinity",
                "neworg"
              ],
              "query": [
                {
                  "key": "orgId",
                  "value": "{{orgId}}"
                },
                {
                  "key": "listId",
                  "value": "{{listId}}"
                },
                {
                  "key": "includeOrgNotes",
                  "value": "{{includeOrgNotes}}"
                },
                {
                  "key": "stageCode",
                  "value": "{{stageCode}}"
                }
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Misc",
      "item": [
        {
          "name": "POST Research Person",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"fullName\": \"Koen Schuite\",\n  \"companyName\": \"Postal Music Group\",\n  \"linkedinUrl\": \"https://www.linkedin.com/in/koen-schuite-942037225/\",\n  \"type\": \"founder\"\n}"
            },
            "url": {
              "raw": "{{baseUrl}}/api/integration/research/person",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "research",
                "person"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST Process Message (Pseudo Email)",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"projectId\": \"{{projectId}}\",\n  \"content\": \"Email content here...\"\n}"
            },
            "url": {
              "raw": "{{baseUrl}}/api/integration/processmessage",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "processmessage"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST Create Project From HTML",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"companyName\": \"ExampleCo\",\n  \"companyWebsite\": \"https://example.com\",\n  \"content\": \"<html><body><h1>Hello</h1></body></html>\"\n}"
            },
            "url": {
              "raw": "{{baseUrl}}/api/integration/project/fromhtml",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "project",
                "fromhtml"
              ]
            }
          },
          "response": []
        },
        {
          "name": "POST Chat",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "{{apiKey}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"query\": \"Summarize the latest analysis\",\n  \"sessionId\": \"\",\n  \"projectId\": \"{{projectId}}\",\n  \"analysisId\": \"{{analysisId}}\"\n}"
            },
            "url": {
              "raw": "{{baseUrl}}/api/integration/chat/askquestion",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "integration",
                "chat",
                "askquestion"
              ]
            }
          },
          "response": []
        }
      ]
    }
  ],
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "type": "text/javascript",
        "requests": {},
        "exec": [
          "// Default baseUrl if missing",
          "if (!pm.environment.get('baseUrl') && !pm.collectionVariables.get('baseUrl')) {",
          "  pm.environment.set('baseUrl', 'https://api.kruncher.ai');",
          "}"
        ]
      }
    },
    {
      "listen": "test",
      "script": {
        "type": "text/javascript",
        "packages": {},
        "requests": {},
        "exec": [
          ""
        ]
      }
    }
  ],
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.kruncher.ai"
    },
    {
      "key": "apiKey",
      "value": ""
    },
    {
      "key": "projectId",
      "value": ""
    },
    {
      "key": "analysisId",
      "value": ""
    },
    {
      "key": "externalId",
      "value": ""
    },
    {
      "key": "kruncherId",
      "value": ""
    },
    {
      "key": "keywords",
      "value": ""
    },
    {
      "key": "stageCode",
      "value": "inbox"
    },
    {
      "key": "orgId",
      "value": ""
    },
    {
      "key": "listId",
      "value": "45461"
    },
    {
      "key": "defaultListId",
      "value": "45461"
    },
    {
      "key": "includeOrgNotes",
      "value": "true"
    },
    {
      "key": "processAllEntries",
      "value": "false"
    }
  ]
}