{"info":{"_postman_id":"ae2a232d-669d-4724-b744-45fc5657d32b","name":"DeedPlotter AI Partner API","description":"<html><head></head><body><p>The DeedPlotter AI Partner API provides programmatic access to create projects, process legal descriptions, and generate geometry files for integration with your tech stack.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>All Partner API endpoints require API key authentication using the <code>x-api-key</code> header.To get started:</p>\n<ol>\n<li><p>Contact the DeedPlotter team at <a href=\"https://mailto:support@deedplotter.ai\">support@deedplotter.ai</a> to request API key access</p>\n</li>\n<li><p>Include your API key in the <code>x-api-key</code> header for all requests</p>\n</li>\n<li><p>API keys are scoped to your user account and organization</p>\n</li>\n</ol>\n<p><code>x-api-key: your-api-key-here</code></p>\n<h2 id=\"base-url\">Base URL</h2>\n<p><code>https://api.deedplotter.ai/api/v1/partner</code></p>\n<h2 id=\"quick-start-workflow\">Quick Start Workflow</h2>\n<ol>\n<li><p>Create Project - <code>POST /projects</code></p>\n</li>\n<li><p>Add Documents - <code>POST /projects/{projectId}/documents/from-legal-description</code> or <code>/projects/{projectId}/documents/from-file</code></p>\n</li>\n<li><p>Get Results - <code>GET /projects/{projectId}</code> to retrieve processed legal descriptions and download URLs</p>\n</li>\n</ol>\n<h2 id=\"key-features\">Key Features</h2>\n<ul>\n<li><p>Projects: Group related documents and generate combined boundary files at the project level</p>\n</li>\n<li><p>Document Plotting: Upload files or legal description text to your project for processing</p>\n</li>\n<li><p>GeoJSON &amp; DXF: GIS and CAD files for visualization and analysis</p>\n</li>\n</ul>\n<h2 id=\"response-format\">Response Format</h2>\n<p>All endpoints return responses with essential boundary data and download URLs for integration with your systems.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"34921559","collectionId":"ae2a232d-669d-4724-b744-45fc5657d32b","publishedId":"2sAYdfpqXu","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-09-06T13:29:13.000Z"},"item":[{"name":"V1","item":[{"name":"Projects","item":[{"name":"Create Project","id":"cfbcb0e7-82f3-4ca4-81d5-d91a61a40e78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"API Project Test2\", // The name of the project - Required\r\n    \"address\": \"\", // The address of the project. This will be overriden if the useAiAddress property is set to true\r\n    \"useAiAddress\": true, // A flag to instruct the AI to attempt to associate the project to an address derived from the first uploaded legal description - will default to the center of the USA if unable to derive an address - Defaults to false\r\n    \"latitude\": 39.8283, // The latitutde to serve as the starting point for all generated GeoJSON. This will default to 39.8283 if not included. Will be overriden if useAiAddress is set to true.\r\n    \"longitude\": -98.5795 // The latitutde to serve as the starting point for all generated GeoJSON. This will default to -98.5795 if not included. Will be overriden if useAiAddress is set to true.\r\n}","options":{"raw":{"language":"json"}}},"url":"{{ApiUrl}}/v1/partner/projects","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{vault:PartnerApiKey}}"}]},"isInherited":true,"source":{"_postman_id":"ae2a232d-669d-4724-b744-45fc5657d32b","id":"ae2a232d-669d-4724-b744-45fc5657d32b","name":"DeedPlotter AI Partner API","type":"collection"}},"urlObject":{"path":["v1","partner","projects"],"host":["{{ApiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"70a481f6-50d5-45b1-ad75-6314be2e4323","name":"200 - OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"API Project Test 3\", // The name of the project - Required\r\n    \"address\": \"\", // The address of the project. This will be overriden if the useAiAddress property is set to true\r\n    \"useAiAddress\": true, // A flag to instruct the AI to attempt to associate the project to an address derived from the first uploaded legal description - will default to the center of the USA if unable to derive an address - Defaults to false\r\n    \"latitude\": 39.8283, // The latitutde to serve as the starting point for all generated GeoJSON. This will default to 39.8283 if not included. Will be overriden if useAiAddress is set to true.\r\n    \"longitude\": -98.5795 // The latitutde to serve as the starting point for all generated GeoJSON. This will default to -98.5795 if not included. Will be overriden if useAiAddress is set to true.\r\n}","options":{"raw":{"language":"json"}}},"url":"https://deed-plotter-ai-api-dev-dua6bwgzcgg7gabc.eastus-01.azurewebsites.net/api/v1/partner/projects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"message\": \"POST Request successful.\",\n    \"result\": {\n        \"id\": 5986,\n        \"name\": \"API Project Test 3\",\n        \"address\": \"\",\n        \"latitude\": 39.8283,\n        \"longitude\": -98.5795,\n        \"created\": \"2025-09-10T15:37:31.9437331Z\",\n        \"geoJsonUrl\": null,\n        \"dxfUrl\": null,\n        \"documents\": []\n    }\n}"}],"_postman_id":"cfbcb0e7-82f3-4ca4-81d5-d91a61a40e78"},{"name":"Get Projects","id":"7cd32b9f-b4d7-450a-b7d1-20b73f552c8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{ApiUrl}}/v1/partner/projects","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{vault:PartnerApiKey}}"}]},"isInherited":true,"source":{"_postman_id":"ae2a232d-669d-4724-b744-45fc5657d32b","id":"ae2a232d-669d-4724-b744-45fc5657d32b","name":"DeedPlotter AI Partner API","type":"collection"}},"urlObject":{"path":["v1","partner","projects"],"host":["{{ApiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"9b180522-04cc-441e-be8b-059f92065648","name":"200 - OK","originalRequest":{"method":"GET","header":[],"url":"https://deed-plotter-ai-api-dev-dua6bwgzcgg7gabc.eastus-01.azurewebsites.net/api/v1/partner/projects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"message\": \"GET Request successful.\",\n    \"result\": [\n        {\n            \"id\": 5944,\n            \"name\": \"API Project Test\",\n            \"created\": \"2025-06-25T13:57:05.52\"\n        },\n        {\n            \"id\": 5943,\n            \"name\": \"Example Project\",\n            \"created\": \"2025-06-25T13:34:21.507\"\n        }\n    ]\n}"}],"_postman_id":"7cd32b9f-b4d7-450a-b7d1-20b73f552c8c"},{"name":"Get Project","id":"54525d74-14ab-4e53-9511-c001ed7fcab9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{ApiUrl}}/v1/partner/projects/5944","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{vault:PartnerApiKey}}"}]},"isInherited":true,"source":{"_postman_id":"ae2a232d-669d-4724-b744-45fc5657d32b","id":"ae2a232d-669d-4724-b744-45fc5657d32b","name":"DeedPlotter AI Partner API","type":"collection"}},"urlObject":{"path":["v1","partner","projects","5944"],"host":["{{ApiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"633138c2-50d0-431f-bbb0-87427e6cf2ef","name":"200 - OK","originalRequest":{"method":"GET","header":[],"url":"https://deed-plotter-ai-api-dev-dua6bwgzcgg7gabc.eastus-01.azurewebsites.net/api/api/v1/partner/projects/5944"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"message\": \"GET Request successful.\",\n    \"result\": {\n        \"id\": 5944,\n        \"name\": \"API Project Test\",\n        \"address\": \"\",\n        \"latitude\": 35.242,\n        \"longitude\": -87.334,\n        \"created\": \"2025-08-25T13:57:05.52\",\n        \"geoJsonUrl\": \"https://deedplotteraiprod.blob.core.windows.net/geojsons/9cda1dde-540f-4713-889f-7b4f92f94711.geojson\",\n        \"dxfUrl\": \"https://deedplotteraiprod.blob.core.windows.net/dxfs/bbc8a89c-3b33-458c-8d6c-4c828ca5ae41.dxf\",\n        \"documents\": [\n            {\n                \"id\": 11424,\n                \"name\": \"From Text Test\",\n                \"created\": \"2025-08-25T14:05:45.35\",\n                \"includedInProject\": true,\n                \"legalDescriptions\": [\n                    {\n                        \"id\": 19378,\n                        \"name\": \"9.9 Acre Parcel, Lawrence County\",\n                        \"geoJsonUrl\": \"https://deedplotteraiprod.blob.core.windows.net/geojsons/c6097e72-2938-4897-9821-bc4188b1841b.geojson\",\n                        \"dxfUrl\": \"https://deedplotteraiprod.blob.core.windows.net/dxfs/ef4824c7-afeb-47db-83f2-d7f19105536d.dxf\",\n                        \"startPointLatitude\": 35.242,\n                        \"startPointLongitude\": -87.334,\n                        \"perimeter\": 3248.58,\n                        \"nonClosure\": null,\n                        \"area\": 330302.198564,\n                        \"boundaryClosurePercent\": 99.77682,\n                        \"boundaryClosureLength\": 7.250177,\n                        \"calls\": [\n                            {\n                                \"id\": 241324,\n                                \"order\": 1,\n                                \"abbreviation\": \"POB\",\n                                \"bearingDegrees\": null,\n                                \"bearingMinutes\": null,\n                                \"bearingSeconds\": null,\n                                \"bearingPrimaryDirection\": null,\n                                \"bearingSecondaryDirection\": null,\n                                \"bearingDistance\": null,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241325,\n                                \"order\": 2,\n                                \"abbreviation\": \"C1\",\n                                \"bearingDegrees\": 79,\n                                \"bearingMinutes\": 55,\n                                \"bearingSeconds\": 34,\n                                \"bearingPrimaryDirection\": \"S\",\n                                \"bearingSecondaryDirection\": \"E\",\n                                \"bearingDistance\": 128.87,\n                                \"arcRadius\": 6883.96,\n                                \"arcLength\": 128.2,\n                                \"arcDirection\": \"Left\",\n                                \"arcCentralAngleDegrees\": 1,\n                                \"arcCentralAngleMinutes\": 6,\n                                \"arcCentralAngleSeconds\": 28\n                            },\n                            {\n                                \"id\": 241326,\n                                \"order\": 3,\n                                \"abbreviation\": \"C2\",\n                                \"bearingDegrees\": 30,\n                                \"bearingMinutes\": 47,\n                                \"bearingSeconds\": 56,\n                                \"bearingPrimaryDirection\": \"S\",\n                                \"bearingSecondaryDirection\": \"E\",\n                                \"bearingDistance\": 111.12,\n                                \"arcRadius\": 459.25,\n                                \"arcLength\": 111.12,\n                                \"arcDirection\": \"Left\",\n                                \"arcCentralAngleDegrees\": 12,\n                                \"arcCentralAngleMinutes\": 25,\n                                \"arcCentralAngleSeconds\": 5\n                            },\n                            {\n                                \"id\": 241327,\n                                \"order\": 4,\n                                \"abbreviation\": \"C3\",\n                                \"bearingDegrees\": 53,\n                                \"bearingMinutes\": 56,\n                                \"bearingSeconds\": 29,\n                                \"bearingPrimaryDirection\": \"S\",\n                                \"bearingSecondaryDirection\": \"E\",\n                                \"bearingDistance\": 108.57,\n                                \"arcRadius\": 1136.25,\n                                \"arcLength\": 108.57,\n                                \"arcDirection\": \"Left\",\n                                \"arcCentralAngleDegrees\": 5,\n                                \"arcCentralAngleMinutes\": 28,\n                                \"arcCentralAngleSeconds\": 30\n                            },\n                            {\n                                \"id\": 241328,\n                                \"order\": 5,\n                                \"abbreviation\": \"C4\",\n                                \"bearingDegrees\": 88,\n                                \"bearingMinutes\": 27,\n                                \"bearingSeconds\": 5,\n                                \"bearingPrimaryDirection\": \"S\",\n                                \"bearingSecondaryDirection\": \"E\",\n                                \"bearingDistance\": 133.83,\n                                \"arcRadius\": 1221.35,\n                                \"arcLength\": 133.9,\n                                \"arcDirection\": \"Left\",\n                                \"arcCentralAngleDegrees\": 6,\n                                \"arcCentralAngleMinutes\": 16,\n                                \"arcCentralAngleSeconds\": 53\n                            },\n                            {\n                                \"id\": 241329,\n                                \"order\": 6,\n                                \"abbreviation\": \"C5\",\n                                \"bearingDegrees\": 53,\n                                \"bearingMinutes\": 31,\n                                \"bearingSeconds\": 54,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"E\",\n                                \"bearingDistance\": 105.01,\n                                \"arcRadius\": 2051.65,\n                                \"arcLength\": 105.02,\n                                \"arcDirection\": \"Right\",\n                                \"arcCentralAngleDegrees\": 2,\n                                \"arcCentralAngleMinutes\": 55,\n                                \"arcCentralAngleSeconds\": 42\n                            },\n                            {\n                                \"id\": 241330,\n                                \"order\": 7,\n                                \"abbreviation\": \"C6\",\n                                \"bearingDegrees\": 51,\n                                \"bearingMinutes\": 44,\n                                \"bearingSeconds\": 35,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"E\",\n                                \"bearingDistance\": 107.96,\n                                \"arcRadius\": 2204.25,\n                                \"arcLength\": 107.97,\n                                \"arcDirection\": \"Left\",\n                                \"arcCentralAngleDegrees\": 3,\n                                \"arcCentralAngleMinutes\": 46,\n                                \"arcCentralAngleSeconds\": 23\n                            },\n                            {\n                                \"id\": 241331,\n                                \"order\": 8,\n                                \"abbreviation\": \"C7\",\n                                \"bearingDegrees\": 79,\n                                \"bearingMinutes\": 43,\n                                \"bearingSeconds\": 33,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"E\",\n                                \"bearingDistance\": 105.31,\n                                \"arcRadius\": 2017.8,\n                                \"arcLength\": 105.37,\n                                \"arcDirection\": \"Left\",\n                                \"arcCentralAngleDegrees\": 12,\n                                \"arcCentralAngleMinutes\": 59,\n                                \"arcCentralAngleSeconds\": 26\n                            },\n                            {\n                                \"id\": 241332,\n                                \"order\": 9,\n                                \"abbreviation\": \"C8\",\n                                \"bearingDegrees\": 77,\n                                \"bearingMinutes\": 52,\n                                \"bearingSeconds\": 1,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"E\",\n                                \"bearingDistance\": 86.69,\n                                \"arcRadius\": 4426.35,\n                                \"arcLength\": 86.69,\n                                \"arcDirection\": \"Left\",\n                                \"arcCentralAngleDegrees\": 1,\n                                \"arcCentralAngleMinutes\": 7,\n                                \"arcCentralAngleSeconds\": 45\n                            },\n                            {\n                                \"id\": 241333,\n                                \"order\": 10,\n                                \"abbreviation\": \"L9\",\n                                \"bearingDegrees\": 77,\n                                \"bearingMinutes\": 6,\n                                \"bearingSeconds\": 27,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"E\",\n                                \"bearingDistance\": 148.91,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241334,\n                                \"order\": 11,\n                                \"abbreviation\": \"C10\",\n                                \"bearingDegrees\": 77,\n                                \"bearingMinutes\": 17,\n                                \"bearingSeconds\": 53,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"E\",\n                                \"bearingDistance\": 104.12,\n                                \"arcRadius\": 3121.65,\n                                \"arcLength\": 104.12,\n                                \"arcDirection\": \"Right\",\n                                \"arcCentralAngleDegrees\": 1,\n                                \"arcCentralAngleMinutes\": 54,\n                                \"arcCentralAngleSeconds\": 40\n                            },\n                            {\n                                \"id\": 241335,\n                                \"order\": 12,\n                                \"abbreviation\": \"C11\",\n                                \"bearingDegrees\": 77,\n                                \"bearingMinutes\": 46,\n                                \"bearingSeconds\": 55,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"E\",\n                                \"bearingDistance\": 59.36,\n                                \"arcRadius\": 1306.4,\n                                \"arcLength\": 59.36,\n                                \"arcDirection\": \"Right\",\n                                \"arcCentralAngleDegrees\": 2,\n                                \"arcCentralAngleMinutes\": 36,\n                                \"arcCentralAngleSeconds\": 8\n                            },\n                            {\n                                \"id\": 241336,\n                                \"order\": 13,\n                                \"abbreviation\": \"L12\",\n                                \"bearingDegrees\": 10,\n                                \"bearingMinutes\": 51,\n                                \"bearingSeconds\": 13,\n                                \"bearingPrimaryDirection\": \"S\",\n                                \"bearingSecondaryDirection\": \"W\",\n                                \"bearingDistance\": 293.5,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241337,\n                                \"order\": 14,\n                                \"abbreviation\": \"L13\",\n                                \"bearingDegrees\": 82,\n                                \"bearingMinutes\": 27,\n                                \"bearingSeconds\": 24,\n                                \"bearingPrimaryDirection\": \"S\",\n                                \"bearingSecondaryDirection\": \"E\",\n                                \"bearingDistance\": 142.82,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241338,\n                                \"order\": 15,\n                                \"abbreviation\": \"L14\",\n                                \"bearingDegrees\": 17,\n                                \"bearingMinutes\": 36,\n                                \"bearingSeconds\": 14,\n                                \"bearingPrimaryDirection\": \"S\",\n                                \"bearingSecondaryDirection\": \"W\",\n                                \"bearingDistance\": 344.55,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241339,\n                                \"order\": 16,\n                                \"abbreviation\": \"L15\",\n                                \"bearingDegrees\": 78,\n                                \"bearingMinutes\": 58,\n                                \"bearingSeconds\": 7,\n                                \"bearingPrimaryDirection\": \"S\",\n                                \"bearingSecondaryDirection\": \"W\",\n                                \"bearingDistance\": 231.0,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241340,\n                                \"order\": 17,\n                                \"abbreviation\": \"L16\",\n                                \"bearingDegrees\": 50,\n                                \"bearingMinutes\": 35,\n                                \"bearingSeconds\": 11,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"W\",\n                                \"bearingDistance\": 759.0,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241341,\n                                \"order\": 18,\n                                \"abbreviation\": \"L17\",\n                                \"bearingDegrees\": 56,\n                                \"bearingMinutes\": 25,\n                                \"bearingSeconds\": 22,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"W\",\n                                \"bearingDistance\": 277.39,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241342,\n                                \"order\": 19,\n                                \"abbreviation\": \"L18\",\n                                \"bearingDegrees\": 51,\n                                \"bearingMinutes\": 14,\n                                \"bearingSeconds\": 46,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"W\",\n                                \"bearingDistance\": 0.57,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            }\n                        ]\n                    }\n                ]\n            },\n            {\n                \"id\": 11429,\n                \"name\": \"Mortgage Foreclosure Deed - Colbert AL\",\n                \"created\": \"2025-08-27T14:48:16.143\",\n                \"includedInProject\": true,\n                \"legalDescriptions\": [\n                    {\n                        \"id\": 19383,\n                        \"name\": \"2-acre tract in SE 1/4 of NE 1/4 Sec 35\",\n                        \"geoJsonUrl\": \"https://deedplotteraiprod.blob.core.windows.net/geojsons/b815225c-7c51-40fb-9661-3c85ecdf6d7b.geojson\",\n                        \"dxfUrl\": \"https://deedplotteraiprod.blob.core.windows.net/dxfs/10fa876c-072d-4b6a-a300-01a3ca56b299.dxf\",\n                        \"startPointLatitude\": 35.242,\n                        \"startPointLongitude\": -87.334,\n                        \"perimeter\": 1826.8,\n                        \"nonClosure\": null,\n                        \"area\": 87710.161462,\n                        \"boundaryClosurePercent\": 99.994294,\n                        \"boundaryClosureLength\": 0.104246,\n                        \"calls\": [\n                            {\n                                \"id\": 241501,\n                                \"order\": 1,\n                                \"abbreviation\": \"POC\",\n                                \"bearingDegrees\": null,\n                                \"bearingMinutes\": null,\n                                \"bearingSeconds\": null,\n                                \"bearingPrimaryDirection\": null,\n                                \"bearingSecondaryDirection\": null,\n                                \"bearingDistance\": null,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241502,\n                                \"order\": 2,\n                                \"abbreviation\": \"CL1\",\n                                \"bearingDegrees\": 0,\n                                \"bearingMinutes\": 52,\n                                \"bearingSeconds\": 0,\n                                \"bearingPrimaryDirection\": \"S\",\n                                \"bearingSecondaryDirection\": \"W\",\n                                \"bearingDistance\": 318.8,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241503,\n                                \"order\": 3,\n                                \"abbreviation\": \"POB\",\n                                \"bearingDegrees\": null,\n                                \"bearingMinutes\": null,\n                                \"bearingSeconds\": null,\n                                \"bearingPrimaryDirection\": null,\n                                \"bearingSecondaryDirection\": null,\n                                \"bearingDistance\": null,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241504,\n                                \"order\": 4,\n                                \"abbreviation\": \"L1\",\n                                \"bearingDegrees\": 0,\n                                \"bearingMinutes\": 52,\n                                \"bearingSeconds\": 0,\n                                \"bearingPrimaryDirection\": \"S\",\n                                \"bearingSecondaryDirection\": \"W\",\n                                \"bearingDistance\": 711.9,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241505,\n                                \"order\": 5,\n                                \"abbreviation\": \"L2\",\n                                \"bearingDegrees\": 21,\n                                \"bearingMinutes\": 32,\n                                \"bearingSeconds\": 0,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"W\",\n                                \"bearingDistance\": 142.9,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241506,\n                                \"order\": 6,\n                                \"abbreviation\": \"L3\",\n                                \"bearingDegrees\": 24,\n                                \"bearingMinutes\": 47,\n                                \"bearingSeconds\": 0,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"W\",\n                                \"bearingDistance\": 117.5,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241507,\n                                \"order\": 7,\n                                \"abbreviation\": \"L4\",\n                                \"bearingDegrees\": 31,\n                                \"bearingMinutes\": 26,\n                                \"bearingSeconds\": 0,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"W\",\n                                \"bearingDistance\": 125.2,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241508,\n                                \"order\": 8,\n                                \"abbreviation\": \"L5\",\n                                \"bearingDegrees\": 39,\n                                \"bearingMinutes\": 2,\n                                \"bearingSeconds\": 0,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"W\",\n                                \"bearingDistance\": 87.5,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241509,\n                                \"order\": 9,\n                                \"abbreviation\": \"L6\",\n                                \"bearingDegrees\": 44,\n                                \"bearingMinutes\": 7,\n                                \"bearingSeconds\": 0,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"E\",\n                                \"bearingDistance\": 206.0,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241510,\n                                \"order\": 10,\n                                \"abbreviation\": \"L7\",\n                                \"bearingDegrees\": 42,\n                                \"bearingMinutes\": 20,\n                                \"bearingSeconds\": 0,\n                                \"bearingPrimaryDirection\": \"N\",\n                                \"bearingSecondaryDirection\": \"W\",\n                                \"bearingDistance\": 207.0,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            },\n                            {\n                                \"id\": 241511,\n                                \"order\": 11,\n                                \"abbreviation\": \"L8\",\n                                \"bearingDegrees\": 89,\n                                \"bearingMinutes\": 8,\n                                \"bearingSeconds\": 0,\n                                \"bearingPrimaryDirection\": \"S\",\n                                \"bearingSecondaryDirection\": \"E\",\n                                \"bearingDistance\": 228.8,\n                                \"arcRadius\": null,\n                                \"arcLength\": null,\n                                \"arcDirection\": null,\n                                \"arcCentralAngleDegrees\": null,\n                                \"arcCentralAngleMinutes\": null,\n                                \"arcCentralAngleSeconds\": null\n                            }\n                        ]\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"3028e0a3-d7ed-4df3-b28c-73c6a431f231","name":"404 - Not Found","originalRequest":{"method":"GET","header":[],"url":"{{ApiUrl}}/v1/partner/projects/5944"},"_postman_previewlanguage":"json","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"isError\": true,\n    \"responseException\": {\n        \"exceptionMessage\": \"Project not found\"\n    }\n}"}],"_postman_id":"54525d74-14ab-4e53-9511-c001ed7fcab9"}],"id":"7b322aa8-3ffa-4bbd-9679-9ee385f01f30","description":"<p>Projects organize your documents and legal descriptions.</p>\n<p>Each project has the container DXF and GeoJSON files from all included documents and legal descriptions.</p>\n","_postman_id":"7b322aa8-3ffa-4bbd-9679-9ee385f01f30","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{vault:PartnerApiKey}}"}]},"isInherited":true,"source":{"_postman_id":"ae2a232d-669d-4724-b744-45fc5657d32b","id":"ae2a232d-669d-4724-b744-45fc5657d32b","name":"DeedPlotter AI Partner API","type":"collection"}}},{"name":"Documents","item":[{"name":"Create Document From Legal Description","id":"f6af5f21-5941-4288-9ee9-079d4f256161","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"documentName\": \"From Text Test\",\r\n    \"includeInProject\": true,\r\n    \"legalDescription\": \"Being a parcel of land in the Second Civil District of Lawrence County recorded in Record Book 710 Page 75, being a portion of Tax Parcel 121 069.00 which is more particularly described below: Beginning at a now half-inch iron rod set with cap inscribed, \\\"C MCGILL RLS 2699\\\" as the northeast corner of Cory David Kelly, Record Book 696, Page 604 in the south margin of Tennessee Street; thence along the right-of-way of Tennessee Street along a curve to the left with an Arc Length of 128.2, a Radius of 6883.96, Chord Bearing of S 79°55'34\\\" E, Chord Length of 128.87, and a Delta Angle of 01°06'28\\\" to a point; thence along a curve to the left with an Arc Length of 111.12, Radius of 459.25, Chord Bearing of S 30°47'56\\\" E, Chord Length of 111.12, and a Delta Angle of 12°25'05\\\" to a point; thence along a curve to the left with an Arc Length of 108.57, Radius of 1136.25, Chord Bearing of S 53°56'29\\\" E, Chord Length of 108.57, and a Delta Angle of 05°28'30\\\" to a point; thence along a curve to the left with an Arc Length of 133.90, Radius of 1221.35, Chord Bearing of S 88°27'05\\\" E, Chord Length of 133.83, and a Delta Angle of 06°16'53\\\" to a point; thence along a curve to the right with an Arc Length of 105.02, Radius of 2051.65, Chord Bearing of N 53°31'54\\\" E, Chord Length of 105.01, and a Delta Angle of 02°55'42\\\" to a point; thence along a curve to the left with an Arc Length of 107.97, Radius of 2204.25, Chord Bearing of N 51°44'35\\\" E, Chord Length of 107.96, and a Delta Angle of 03°46'23\\\" to a point; thence along a curve to the left with an Arc Length of 105.37, Radius of 2017.80, Chord Bearing of N 79°43'33\\\" E, Chord Length of 105.31, and a Delta Angle of 12°59'26\\\" to a point; thence along a curve to the left with an Arc Length of 86.69, Radius of 4426.35, Chord Bearing of N 77°52'01\\\" E, Chord Length of 86.69, and a Delta Angle of 01°07'45\\\" to a point; thence N 77°06'27\\\" E 148.91 to a point; thence along a curve to the right with an Arc Length of 104.12, Radius of 3121.65, Chord Bearing of N 77°17'53\\\" E, Chord Length of 104.12, and a Delta Angle of 01°54'40\\\" to a point; thence along a curve to the right with an Arc Length of 59.36, Radius of 1306.40, Chord Bearing of N 77°46'55\\\" E, Chord Length of 59.36, and a Delta Angle of 02°36'08\\\" to a half-inch iron rod set with cap inscribed, \\\"C MCGILL RLS 2699\\\" as the northwest corner of Jerry and Sherry West, Record Book 246, Page 652; thence leaving Tennessee Street with the west line of West S 10°51'13\\\" W 293.50 to a pipe found at a fence corner; thence continuing with West to the fence S 82°27'24\\\" E 142.82 to a pipe found at fence corner; thence continuing with West S 17°36'14\\\" W 344.55 to a point in a spring draining to the west; thence with the spring S 78°58'07\\\" W 231.00 to a point in the line; thence continuing with the spring N 50°35'11\\\" W 759.00 to a point in the drain; thence continuing with the spring N 56°25'22\\\" W 277.39 to a found fence post; thence N 51°14'46\\\" W 0.57 to the Point of Beginning, consisting of 9.9 acres as per survey of Clifford McGill RLS 2699 dated 2/3/2003.\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{ApiUrl}}/v1/partner/projects/5944/documents/from-legal-description","description":"<p>Convert a legal description into a structured document, including parcel data and exportable files.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{vault:PartnerApiKey}}"}]},"isInherited":true,"source":{"_postman_id":"ae2a232d-669d-4724-b744-45fc5657d32b","id":"ae2a232d-669d-4724-b744-45fc5657d32b","name":"DeedPlotter AI Partner API","type":"collection"}},"urlObject":{"path":["v1","partner","projects","5944","documents","from-legal-description"],"host":["{{ApiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8ada8ee0-cd3b-4548-9d7e-b35246f70052","name":"200 - OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"documentName\": \"From Text Test\",\r\n    \"includeInProject\": true,\r\n    \"legalDescription\": \"Being a parcel of land in the Second Civil District of Lawrence County recorded in Record Book 710 Page 75, being a portion of Tax Parcel 121 069.00 which is more particularly described below: Beginning at a now half-inch iron rod set with cap inscribed, \\\"C MCGILL RLS 2699\\\" as the northeast corner of Cory David Kelly, Record Book 696, Page 604 in the south margin of Tennessee Street; thence along the right-of-way of Tennessee Street along a curve to the left with an Arc Length of 128.2, a Radius of 6883.96, Chord Bearing of S 79°55'34\\\" E, Chord Length of 128.87, and a Delta Angle of 01°06'28\\\" to a point; thence along a curve to the left with an Arc Length of 111.12, Radius of 459.25, Chord Bearing of S 30°47'56\\\" E, Chord Length of 111.12, and a Delta Angle of 12°25'05\\\" to a point; thence along a curve to the left with an Arc Length of 108.57, Radius of 1136.25, Chord Bearing of S 53°56'29\\\" E, Chord Length of 108.57, and a Delta Angle of 05°28'30\\\" to a point; thence along a curve to the left with an Arc Length of 133.90, Radius of 1221.35, Chord Bearing of S 88°27'05\\\" E, Chord Length of 133.83, and a Delta Angle of 06°16'53\\\" to a point; thence along a curve to the right with an Arc Length of 105.02, Radius of 2051.65, Chord Bearing of N 53°31'54\\\" E, Chord Length of 105.01, and a Delta Angle of 02°55'42\\\" to a point; thence along a curve to the left with an Arc Length of 107.97, Radius of 2204.25, Chord Bearing of N 51°44'35\\\" E, Chord Length of 107.96, and a Delta Angle of 03°46'23\\\" to a point; thence along a curve to the left with an Arc Length of 105.37, Radius of 2017.80, Chord Bearing of N 79°43'33\\\" E, Chord Length of 105.31, and a Delta Angle of 12°59'26\\\" to a point; thence along a curve to the left with an Arc Length of 86.69, Radius of 4426.35, Chord Bearing of N 77°52'01\\\" E, Chord Length of 86.69, and a Delta Angle of 01°07'45\\\" to a point; thence N 77°06'27\\\" E 148.91 to a point; thence along a curve to the right with an Arc Length of 104.12, Radius of 3121.65, Chord Bearing of N 77°17'53\\\" E, Chord Length of 104.12, and a Delta Angle of 01°54'40\\\" to a point; thence along a curve to the right with an Arc Length of 59.36, Radius of 1306.40, Chord Bearing of N 77°46'55\\\" E, Chord Length of 59.36, and a Delta Angle of 02°36'08\\\" to a half-inch iron rod set with cap inscribed, \\\"C MCGILL RLS 2699\\\" as the northwest corner of Jerry and Sherry West, Record Book 246, Page 652; thence leaving Tennessee Street with the west line of West S 10°51'13\\\" W 293.50 to a pipe found at a fence corner; thence continuing with West to the fence S 82°27'24\\\" E 142.82 to a pipe found at fence corner; thence continuing with West S 17°36'14\\\" W 344.55 to a point in a spring draining to the west; thence with the spring S 78°58'07\\\" W 231.00 to a point in the line; thence continuing with the spring N 50°35'11\\\" W 759.00 to a point in the drain; thence continuing with the spring N 56°25'22\\\" W 277.39 to a found fence post; thence N 51°14'46\\\" W 0.57 to the Point of Beginning, consisting of 9.9 acres as per survey of Clifford McGill RLS 2699 dated 2/3/2003.\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://deed-plotter-ai-api-dev-dua6bwgzcgg7gabc.eastus-01.azurewebsites.net/api/v1/partner/projects/5944/documents/from-legal-description"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"message\": \"POST Request successful.\",\n    \"result\": {\n        \"id\": 11511,\n        \"name\": \"From Text Test\",\n        \"created\": \"2025-09-10T15:39:25.8617918Z\",\n        \"includedInProject\": true,\n        \"legalDescriptions\": [\n            {\n                \"id\": 19542,\n                \"name\": \"9.9 Acre Parcel, Lawrence County, TN\",\n                \"geoJsonUrl\": \"https://deedplotteraiprod.blob.core.windows.net/geojsons/c86aa1be-9538-49d8-94f8-84e355c63ee3.geojson\",\n                \"dxfUrl\": \"https://deedplotteraiprod.blob.core.windows.net/dxfs/e2ba7c61-8285-4a90-b8f1-ba20787fb989.dxf\",\n                \"startPointLatitude\": 35.242,\n                \"startPointLongitude\": -87.334,\n                \"perimeter\": 3248.58,\n                \"nonClosure\": null,\n                \"area\": 330302.19856424554,\n                \"boundaryClosurePercent\": 99.77682013021243,\n                \"boundaryClosureLength\": 7.25017661394497,\n                \"calls\": [\n                    {\n                        \"id\": 245870,\n                        \"order\": 1,\n                        \"abbreviation\": \"POB\",\n                        \"bearingDegrees\": null,\n                        \"bearingMinutes\": null,\n                        \"bearingSeconds\": null,\n                        \"bearingPrimaryDirection\": null,\n                        \"bearingSecondaryDirection\": null,\n                        \"bearingDistance\": null,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245871,\n                        \"order\": 2,\n                        \"abbreviation\": \"C1\",\n                        \"bearingDegrees\": 79,\n                        \"bearingMinutes\": 55,\n                        \"bearingSeconds\": 34,\n                        \"bearingPrimaryDirection\": \"S\",\n                        \"bearingSecondaryDirection\": \"E\",\n                        \"bearingDistance\": 128.87,\n                        \"arcRadius\": 6883.96,\n                        \"arcLength\": 128.2,\n                        \"arcDirection\": \"Left\",\n                        \"arcCentralAngleDegrees\": 1,\n                        \"arcCentralAngleMinutes\": 6,\n                        \"arcCentralAngleSeconds\": 28\n                    },\n                    {\n                        \"id\": 245872,\n                        \"order\": 3,\n                        \"abbreviation\": \"C2\",\n                        \"bearingDegrees\": 30,\n                        \"bearingMinutes\": 47,\n                        \"bearingSeconds\": 56,\n                        \"bearingPrimaryDirection\": \"S\",\n                        \"bearingSecondaryDirection\": \"E\",\n                        \"bearingDistance\": 111.12,\n                        \"arcRadius\": 459.25,\n                        \"arcLength\": 111.12,\n                        \"arcDirection\": \"Left\",\n                        \"arcCentralAngleDegrees\": 12,\n                        \"arcCentralAngleMinutes\": 25,\n                        \"arcCentralAngleSeconds\": 5\n                    },\n                    {\n                        \"id\": 245873,\n                        \"order\": 4,\n                        \"abbreviation\": \"C3\",\n                        \"bearingDegrees\": 53,\n                        \"bearingMinutes\": 56,\n                        \"bearingSeconds\": 29,\n                        \"bearingPrimaryDirection\": \"S\",\n                        \"bearingSecondaryDirection\": \"E\",\n                        \"bearingDistance\": 108.57,\n                        \"arcRadius\": 1136.25,\n                        \"arcLength\": 108.57,\n                        \"arcDirection\": \"Left\",\n                        \"arcCentralAngleDegrees\": 5,\n                        \"arcCentralAngleMinutes\": 28,\n                        \"arcCentralAngleSeconds\": 30\n                    },\n                    {\n                        \"id\": 245874,\n                        \"order\": 5,\n                        \"abbreviation\": \"C4\",\n                        \"bearingDegrees\": 88,\n                        \"bearingMinutes\": 27,\n                        \"bearingSeconds\": 5,\n                        \"bearingPrimaryDirection\": \"S\",\n                        \"bearingSecondaryDirection\": \"E\",\n                        \"bearingDistance\": 133.83,\n                        \"arcRadius\": 1221.35,\n                        \"arcLength\": 133.9,\n                        \"arcDirection\": \"Left\",\n                        \"arcCentralAngleDegrees\": 6,\n                        \"arcCentralAngleMinutes\": 16,\n                        \"arcCentralAngleSeconds\": 53\n                    },\n                    {\n                        \"id\": 245875,\n                        \"order\": 6,\n                        \"abbreviation\": \"C5\",\n                        \"bearingDegrees\": 53,\n                        \"bearingMinutes\": 31,\n                        \"bearingSeconds\": 54,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"E\",\n                        \"bearingDistance\": 105.01,\n                        \"arcRadius\": 2051.65,\n                        \"arcLength\": 105.02,\n                        \"arcDirection\": \"Right\",\n                        \"arcCentralAngleDegrees\": 2,\n                        \"arcCentralAngleMinutes\": 55,\n                        \"arcCentralAngleSeconds\": 42\n                    },\n                    {\n                        \"id\": 245876,\n                        \"order\": 7,\n                        \"abbreviation\": \"C6\",\n                        \"bearingDegrees\": 51,\n                        \"bearingMinutes\": 44,\n                        \"bearingSeconds\": 35,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"E\",\n                        \"bearingDistance\": 107.96,\n                        \"arcRadius\": 2204.25,\n                        \"arcLength\": 107.97,\n                        \"arcDirection\": \"Left\",\n                        \"arcCentralAngleDegrees\": 3,\n                        \"arcCentralAngleMinutes\": 46,\n                        \"arcCentralAngleSeconds\": 23\n                    },\n                    {\n                        \"id\": 245877,\n                        \"order\": 8,\n                        \"abbreviation\": \"C7\",\n                        \"bearingDegrees\": 79,\n                        \"bearingMinutes\": 43,\n                        \"bearingSeconds\": 33,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"E\",\n                        \"bearingDistance\": 105.31,\n                        \"arcRadius\": 2017.8,\n                        \"arcLength\": 105.37,\n                        \"arcDirection\": \"Left\",\n                        \"arcCentralAngleDegrees\": 12,\n                        \"arcCentralAngleMinutes\": 59,\n                        \"arcCentralAngleSeconds\": 26\n                    },\n                    {\n                        \"id\": 245878,\n                        \"order\": 9,\n                        \"abbreviation\": \"C8\",\n                        \"bearingDegrees\": 77,\n                        \"bearingMinutes\": 52,\n                        \"bearingSeconds\": 1,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"E\",\n                        \"bearingDistance\": 86.69,\n                        \"arcRadius\": 4426.35,\n                        \"arcLength\": 86.69,\n                        \"arcDirection\": \"Left\",\n                        \"arcCentralAngleDegrees\": 1,\n                        \"arcCentralAngleMinutes\": 7,\n                        \"arcCentralAngleSeconds\": 45\n                    },\n                    {\n                        \"id\": 245879,\n                        \"order\": 10,\n                        \"abbreviation\": \"L9\",\n                        \"bearingDegrees\": 77,\n                        \"bearingMinutes\": 6,\n                        \"bearingSeconds\": 27,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"E\",\n                        \"bearingDistance\": 148.91,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245880,\n                        \"order\": 11,\n                        \"abbreviation\": \"C10\",\n                        \"bearingDegrees\": 77,\n                        \"bearingMinutes\": 17,\n                        \"bearingSeconds\": 53,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"E\",\n                        \"bearingDistance\": 104.12,\n                        \"arcRadius\": 3121.65,\n                        \"arcLength\": 104.12,\n                        \"arcDirection\": \"Right\",\n                        \"arcCentralAngleDegrees\": 1,\n                        \"arcCentralAngleMinutes\": 54,\n                        \"arcCentralAngleSeconds\": 40\n                    },\n                    {\n                        \"id\": 245881,\n                        \"order\": 12,\n                        \"abbreviation\": \"C11\",\n                        \"bearingDegrees\": 77,\n                        \"bearingMinutes\": 46,\n                        \"bearingSeconds\": 55,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"E\",\n                        \"bearingDistance\": 59.36,\n                        \"arcRadius\": 1306.4,\n                        \"arcLength\": 59.36,\n                        \"arcDirection\": \"Right\",\n                        \"arcCentralAngleDegrees\": 2,\n                        \"arcCentralAngleMinutes\": 36,\n                        \"arcCentralAngleSeconds\": 8\n                    },\n                    {\n                        \"id\": 245882,\n                        \"order\": 13,\n                        \"abbreviation\": \"L12\",\n                        \"bearingDegrees\": 10,\n                        \"bearingMinutes\": 51,\n                        \"bearingSeconds\": 13,\n                        \"bearingPrimaryDirection\": \"S\",\n                        \"bearingSecondaryDirection\": \"W\",\n                        \"bearingDistance\": 293.5,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245883,\n                        \"order\": 14,\n                        \"abbreviation\": \"L13\",\n                        \"bearingDegrees\": 82,\n                        \"bearingMinutes\": 27,\n                        \"bearingSeconds\": 24,\n                        \"bearingPrimaryDirection\": \"S\",\n                        \"bearingSecondaryDirection\": \"E\",\n                        \"bearingDistance\": 142.82,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245884,\n                        \"order\": 15,\n                        \"abbreviation\": \"L14\",\n                        \"bearingDegrees\": 17,\n                        \"bearingMinutes\": 36,\n                        \"bearingSeconds\": 14,\n                        \"bearingPrimaryDirection\": \"S\",\n                        \"bearingSecondaryDirection\": \"W\",\n                        \"bearingDistance\": 344.55,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245885,\n                        \"order\": 16,\n                        \"abbreviation\": \"L15\",\n                        \"bearingDegrees\": 78,\n                        \"bearingMinutes\": 58,\n                        \"bearingSeconds\": 7,\n                        \"bearingPrimaryDirection\": \"S\",\n                        \"bearingSecondaryDirection\": \"W\",\n                        \"bearingDistance\": 231.0,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245886,\n                        \"order\": 17,\n                        \"abbreviation\": \"L16\",\n                        \"bearingDegrees\": 50,\n                        \"bearingMinutes\": 35,\n                        \"bearingSeconds\": 11,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"W\",\n                        \"bearingDistance\": 759.0,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245887,\n                        \"order\": 18,\n                        \"abbreviation\": \"L17\",\n                        \"bearingDegrees\": 56,\n                        \"bearingMinutes\": 25,\n                        \"bearingSeconds\": 22,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"W\",\n                        \"bearingDistance\": 277.39,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245888,\n                        \"order\": 19,\n                        \"abbreviation\": \"L18\",\n                        \"bearingDegrees\": 51,\n                        \"bearingMinutes\": 14,\n                        \"bearingSeconds\": 46,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"W\",\n                        \"bearingDistance\": 0.57,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"2418ee94-b268-4556-9b4e-a417bd3d9d4e","name":"402 - Out of Credits","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"documentName\": \"From Text Test\",  //The document name\r\n    \"includeInProject\": true, // If the new document should be automatically included in project-wide GeoJSON generations\r\n    \"legalDescription\": \"Being a parcel of land in the Second Civil District of Lawrence County recorded in Record Book 710 Page 75, being a portion of Tax Parcel 121 069.00 which is more particularly described below: Beginning at a now half-inch iron rod set with cap inscribed, \\\"C MCGILL RLS 2699\\\" as the northeast corner of Cory David Kelly, Record Book 696, Page 604 in the south margin of Tennessee Street; thence along the right-of-way of Tennessee Street along a curve to the left with an Arc Length of 128.2, a Radius of 6883.96, Chord Bearing of S 79°55'34\\\" E, Chord Length of 128.87, and a Delta Angle of 01°06'28\\\" to a point; thence along a curve to the left with an Arc Length of 111.12, Radius of 459.25, Chord Bearing of S 30°47'56\\\" E, Chord Length of 111.12, and a Delta Angle of 12°25'05\\\" to a point; thence along a curve to the left with an Arc Length of 108.57, Radius of 1136.25, Chord Bearing of S 53°56'29\\\" E, Chord Length of 108.57, and a Delta Angle of 05°28'30\\\" to a point; thence along a curve to the left with an Arc Length of 133.90, Radius of 1221.35, Chord Bearing of S 88°27'05\\\" E, Chord Length of 133.83, and a Delta Angle of 06°16'53\\\" to a point; thence along a curve to the right with an Arc Length of 105.02, Radius of 2051.65, Chord Bearing of N 53°31'54\\\" E, Chord Length of 105.01, and a Delta Angle of 02°55'42\\\" to a point; thence along a curve to the left with an Arc Length of 107.97, Radius of 2204.25, Chord Bearing of N 51°44'35\\\" E, Chord Length of 107.96, and a Delta Angle of 03°46'23\\\" to a point; thence along a curve to the left with an Arc Length of 105.37, Radius of 2017.80, Chord Bearing of N 79°43'33\\\" E, Chord Length of 105.31, and a Delta Angle of 12°59'26\\\" to a point; thence along a curve to the left with an Arc Length of 86.69, Radius of 4426.35, Chord Bearing of N 77°52'01\\\" E, Chord Length of 86.69, and a Delta Angle of 01°07'45\\\" to a point; thence N 77°06'27\\\" E 148.91 to a point; thence along a curve to the right with an Arc Length of 104.12, Radius of 3121.65, Chord Bearing of N 77°17'53\\\" E, Chord Length of 104.12, and a Delta Angle of 01°54'40\\\" to a point; thence along a curve to the right with an Arc Length of 59.36, Radius of 1306.40, Chord Bearing of N 77°46'55\\\" E, Chord Length of 59.36, and a Delta Angle of 02°36'08\\\" to a half-inch iron rod set with cap inscribed, \\\"C MCGILL RLS 2699\\\" as the northwest corner of Jerry and Sherry West, Record Book 246, Page 652; thence leaving Tennessee Street with the west line of West S 10°51'13\\\" W 293.50 to a pipe found at a fence corner; thence continuing with West to the fence S 82°27'24\\\" E 142.82 to a pipe found at fence corner; thence continuing with West S 17°36'14\\\" W 344.55 to a point in a spring draining to the west; thence with the spring S 78°58'07\\\" W 231.00 to a point in the line; thence continuing with the spring N 50°35'11\\\" W 759.00 to a point in the drain; thence continuing with the spring N 56°25'22\\\" W 277.39 to a found fence post; thence N 51°14'46\\\" W 0.57 to the Point of Beginning, consisting of 9.9 acres as per survey of Clifford McGill RLS 2699 dated 2/3/2003.\" //The legal description text\r\n}","options":{"raw":{"language":"json"}}},"url":"{{ApiUrl}}/v1/partner/projects/5944/documents/from-legal-description"},"status":"Payment Required","code":402,"_postman_previewlanguage":"json","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"statusCode\": 402,\n    \"isError\": true,\n    \"responseException\": {\n        \"exceptionMessage\": \"You are Out of Tutorial Credits\"\n    }\n}"}],"_postman_id":"f6af5f21-5941-4288-9ee9-079d4f256161"},{"name":"Create Document From File","id":"bcc69864-a35f-4986-b91b-e038d5998e44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","description":"<p>The file containing the legal description (a deed for example). Accepted file types are PDF, PNG, JPEG, TIF, TXT and Docx</p>\n","type":"file","uuid":"11673740-56fa-4847-b67d-c8361666e994","src":"postman-cloud:///1f083541-f99f-43c0-9901-5df388ff0f2b"},{"key":"includeInProject","value":"true","description":"<p>If the new document should be automatically included in project-wide GeoJSON generations</p>\n","type":"text","uuid":"a65dee17-3bb6-4cd1-a5a3-699df427db82"}]},"url":"{{ApiUrl}}/v1/partner/projects/5944/documents/from-file","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{vault:PartnerApiKey}}"}]},"isInherited":true,"source":{"_postman_id":"ae2a232d-669d-4724-b744-45fc5657d32b","id":"ae2a232d-669d-4724-b744-45fc5657d32b","name":"DeedPlotter AI Partner API","type":"collection"}},"urlObject":{"path":["v1","partner","projects","5944","documents","from-file"],"host":["{{ApiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ee19e6d4-b5a9-457b-9b07-700fe43cbddc","name":"200 - OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","description":"The file containing the legal description (a deed for example). Accepted file types are PDF, PNG, JPEG, TIF, TXT and Docx","type":"file","uuid":"11673740-56fa-4847-b67d-c8361666e994","src":"postman-cloud:///1f083541-f99f-43c0-9901-5df388ff0f2b"},{"key":"includeInProject","value":"true","description":"If the new document should be automatically included in project-wide GeoJSON generations","type":"text","uuid":"a65dee17-3bb6-4cd1-a5a3-699df427db82"}]},"url":"https://deed-plotter-ai-api-dev-dua6bwgzcgg7gabc.eastus-01.azurewebsites.net/api/api/api/v1/partner/projects/5944/documents/from-file"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"message\": \"POST Request successful.\",\n    \"result\": {\n        \"id\": 11512,\n        \"name\": \"CB&S Bank Mortgage Foreclosure Deed 2022\",\n        \"created\": \"2025-09-10T15:45:04.1891387Z\",\n        \"includedInProject\": true,\n        \"legalDescriptions\": [\n            {\n                \"id\": 19543,\n                \"name\": \"2.0 Acre Tract in SE 1/4 of NE 1/4 Sec 35\",\n                \"geoJsonUrl\": \"https://deedplotteraiprod.blob.core.windows.net/geojsons/5f74b75b-8f86-4a19-a866-f905b3973804.geojson\",\n                \"dxfUrl\": \"https://deedplotteraiprod.blob.core.windows.net/dxfs/1427244a-95e2-4112-a66f-4c1c31110475.dxf\",\n                \"startPointLatitude\": 35.242,\n                \"startPointLongitude\": -87.334,\n                \"perimeter\": 1826.8,\n                \"nonClosure\": null,\n                \"area\": 87710.16146163653,\n                \"boundaryClosurePercent\": 99.99429351984793,\n                \"boundaryClosureLength\": 0.104245979417963,\n                \"calls\": [\n                    {\n                        \"id\": 245889,\n                        \"order\": 1,\n                        \"abbreviation\": \"POC\",\n                        \"bearingDegrees\": null,\n                        \"bearingMinutes\": null,\n                        \"bearingSeconds\": null,\n                        \"bearingPrimaryDirection\": null,\n                        \"bearingSecondaryDirection\": null,\n                        \"bearingDistance\": null,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245890,\n                        \"order\": 2,\n                        \"abbreviation\": \"CL1\",\n                        \"bearingDegrees\": 0,\n                        \"bearingMinutes\": 52,\n                        \"bearingSeconds\": 0,\n                        \"bearingPrimaryDirection\": \"S\",\n                        \"bearingSecondaryDirection\": \"W\",\n                        \"bearingDistance\": 318.8,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245891,\n                        \"order\": 3,\n                        \"abbreviation\": \"POB\",\n                        \"bearingDegrees\": null,\n                        \"bearingMinutes\": null,\n                        \"bearingSeconds\": null,\n                        \"bearingPrimaryDirection\": null,\n                        \"bearingSecondaryDirection\": null,\n                        \"bearingDistance\": null,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245892,\n                        \"order\": 4,\n                        \"abbreviation\": \"L1\",\n                        \"bearingDegrees\": 0,\n                        \"bearingMinutes\": 52,\n                        \"bearingSeconds\": 0,\n                        \"bearingPrimaryDirection\": \"S\",\n                        \"bearingSecondaryDirection\": \"W\",\n                        \"bearingDistance\": 711.9,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245893,\n                        \"order\": 5,\n                        \"abbreviation\": \"L2\",\n                        \"bearingDegrees\": 21,\n                        \"bearingMinutes\": 32,\n                        \"bearingSeconds\": 0,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"W\",\n                        \"bearingDistance\": 142.9,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245894,\n                        \"order\": 6,\n                        \"abbreviation\": \"L3\",\n                        \"bearingDegrees\": 24,\n                        \"bearingMinutes\": 47,\n                        \"bearingSeconds\": 0,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"W\",\n                        \"bearingDistance\": 117.5,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245895,\n                        \"order\": 7,\n                        \"abbreviation\": \"L4\",\n                        \"bearingDegrees\": 31,\n                        \"bearingMinutes\": 26,\n                        \"bearingSeconds\": 0,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"W\",\n                        \"bearingDistance\": 125.2,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245896,\n                        \"order\": 8,\n                        \"abbreviation\": \"L5\",\n                        \"bearingDegrees\": 39,\n                        \"bearingMinutes\": 2,\n                        \"bearingSeconds\": 0,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"W\",\n                        \"bearingDistance\": 87.5,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245897,\n                        \"order\": 9,\n                        \"abbreviation\": \"L6\",\n                        \"bearingDegrees\": 44,\n                        \"bearingMinutes\": 7,\n                        \"bearingSeconds\": 0,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"E\",\n                        \"bearingDistance\": 206.0,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245898,\n                        \"order\": 10,\n                        \"abbreviation\": \"L7\",\n                        \"bearingDegrees\": 42,\n                        \"bearingMinutes\": 20,\n                        \"bearingSeconds\": 0,\n                        \"bearingPrimaryDirection\": \"N\",\n                        \"bearingSecondaryDirection\": \"W\",\n                        \"bearingDistance\": 207.0,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    },\n                    {\n                        \"id\": 245899,\n                        \"order\": 11,\n                        \"abbreviation\": \"L8\",\n                        \"bearingDegrees\": 89,\n                        \"bearingMinutes\": 8,\n                        \"bearingSeconds\": 0,\n                        \"bearingPrimaryDirection\": \"S\",\n                        \"bearingSecondaryDirection\": \"E\",\n                        \"bearingDistance\": 228.8,\n                        \"arcRadius\": null,\n                        \"arcLength\": null,\n                        \"arcDirection\": null,\n                        \"arcCentralAngleDegrees\": null,\n                        \"arcCentralAngleMinutes\": null,\n                        \"arcCentralAngleSeconds\": null\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"3e6280e5-23a7-420d-ae7c-62571622fe0c","name":"402 - Out of Credits","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","description":"The file containing the legal descirption (a deed for example). Accepted file types are PDF, PNG, JPEG, TIF, TXT and Docx","type":"file","uuid":"11673740-56fa-4847-b67d-c8361666e994","src":"postman-cloud:///1f083541-f99f-43c0-9901-5df388ff0f2b"},{"key":"includeInProject","value":"true","type":"text","uuid":"1b6dc040-f264-448e-be0b-453c2177de04"}]},"url":"{{ApiUrl}}/v1/partner/projects/5944/documents/from-file"},"status":"Payment Required","code":402,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 402,\n    \"isError\": true,\n    \"responseException\": {\n        \"exceptionMessage\": \"You are Out of Tutorial Credits\"\n    }\n}"}],"_postman_id":"bcc69864-a35f-4986-b91b-e038d5998e44"},{"name":"Include Document In Project","id":"d292e01d-0922-4990-9709-92bed2b53742","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{ApiUrl}}/v1/partner/projects/5944/documents//include","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{vault:PartnerApiKey}}"}]},"isInherited":true,"source":{"_postman_id":"ae2a232d-669d-4724-b744-45fc5657d32b","id":"ae2a232d-669d-4724-b744-45fc5657d32b","name":"DeedPlotter AI Partner API","type":"collection"}},"urlObject":{"path":["v1","partner","projects","5944","documents","","include"],"host":["{{ApiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"57c3965a-a960-462d-ab54-b35d9e0d7f5d","name":"200 - OK","originalRequest":{"method":"PUT","header":[],"url":"https://deed-plotter-ai-api-dev-dua6bwgzcgg7gabc.eastus-01.azurewebsites.net/api/v1/partner/projects/5944/documents//include"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"message\": \"PUT Request successful.\",\n    \"result\": true\n}"}],"_postman_id":"d292e01d-0922-4990-9709-92bed2b53742"},{"name":"Exclude Document From Project","id":"b179c013-b993-4173-866e-11b2bdf2b207","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{ApiUrl}}/v1/partner/projects/5944/documents//exclude","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{vault:PartnerApiKey}}"}]},"isInherited":true,"source":{"_postman_id":"ae2a232d-669d-4724-b744-45fc5657d32b","id":"ae2a232d-669d-4724-b744-45fc5657d32b","name":"DeedPlotter AI Partner API","type":"collection"}},"urlObject":{"path":["v1","partner","projects","5944","documents","","exclude"],"host":["{{ApiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f3144787-19dc-480b-a2d3-54098e1c045c","name":"200 - OK","originalRequest":{"method":"PUT","header":[],"url":"https://deed-plotter-ai-api-dev-dua6bwgzcgg7gabc.eastus-01.azurewebsites.net/api/v1/partner/projects/5944/documents//exclude"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"message\": \"PUT Request successful.\",\n    \"result\": true\n}"}],"_postman_id":"b179c013-b993-4173-866e-11b2bdf2b207"}],"id":"e15f0b84-76c9-4c12-86d0-cea96ee6c2a5","description":"<p>Documents are PDFs, images, or text containing legal descriptions. The API processes them with OCR and AI to extract and transform boundary information into Legal Descriptions.</p>\n","_postman_id":"e15f0b84-76c9-4c12-86d0-cea96ee6c2a5","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{vault:PartnerApiKey}}"}]},"isInherited":true,"source":{"_postman_id":"ae2a232d-669d-4724-b744-45fc5657d32b","id":"ae2a232d-669d-4724-b744-45fc5657d32b","name":"DeedPlotter AI Partner API","type":"collection"}}},{"name":"Legal Descriptions","item":[{"name":"Get Legal Description","id":"5619e447-478b-4e9c-926a-97d4a515c510","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{ApiUrl}}/v1/partner/legal-descriptions/","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{vault:PartnerApiKey}}"}]},"isInherited":true,"source":{"_postman_id":"ae2a232d-669d-4724-b744-45fc5657d32b","id":"ae2a232d-669d-4724-b744-45fc5657d32b","name":"DeedPlotter AI Partner API","type":"collection"}},"urlObject":{"path":["v1","partner","legal-descriptions",""],"host":["{{ApiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4d9f615d-713e-4272-9365-42a95a6f13da","name":"Get Legal Description","originalRequest":{"method":"GET","header":[],"url":"https://deed-plotter-ai-api-dev-dua6bwgzcgg7gabc.eastus-01.azurewebsites.net/api/v1/partner/legal-descriptions/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"message\": \"GET Request successful.\",\n    \"result\": {\n        \"id\": 1000000007,\n        \"name\": \"9.9 Acre Parcel, Lawrence County\",\n        \"geoJsonUrl\": \"https://deedplotterai.blob.core.windows.net/geojsons/e0d01842-3f21-4d6e-97d8-4c00ef6fc6e7.geojson\",\n        \"dxfUrl\": \"https://deedplotterai.blob.core.windows.net/dxfs/da34cbdc-9ef3-4abf-899b-427d468fccf4.dxf\",\n        \"startPointLatitude\": 35.999,\n        \"startPointLongitude\": -87.999,\n        \"perimeter\": 3248.58,\n        \"nonClosure\": null,\n        \"area\": 330302.198564,\n        \"boundaryClosurePercent\": 99.77682,\n        \"boundaryClosureLength\": 7.250177,\n        \"calls\": [\n            {\n                \"id\": 1000000172,\n                \"order\": 1,\n                \"abbreviation\": \"POB\",\n                \"bearingDegrees\": null,\n                \"bearingMinutes\": null,\n                \"bearingSeconds\": null,\n                \"bearingPrimaryDirection\": null,\n                \"bearingSecondaryDirection\": null,\n                \"bearingDistance\": null,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000173,\n                \"order\": 2,\n                \"abbreviation\": \"C1\",\n                \"bearingDegrees\": 79,\n                \"bearingMinutes\": 55,\n                \"bearingSeconds\": 34,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 128.87,\n                \"arcRadius\": 6883.96,\n                \"arcLength\": 128.2,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 1,\n                \"arcCentralAngleMinutes\": 6,\n                \"arcCentralAngleSeconds\": 28\n            },\n            {\n                \"id\": 1000000174,\n                \"order\": 3,\n                \"abbreviation\": \"C2\",\n                \"bearingDegrees\": 30,\n                \"bearingMinutes\": 47,\n                \"bearingSeconds\": 56,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 111.12,\n                \"arcRadius\": 459.25,\n                \"arcLength\": 111.12,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 12,\n                \"arcCentralAngleMinutes\": 25,\n                \"arcCentralAngleSeconds\": 5\n            },\n            {\n                \"id\": 1000000175,\n                \"order\": 4,\n                \"abbreviation\": \"C3\",\n                \"bearingDegrees\": 53,\n                \"bearingMinutes\": 56,\n                \"bearingSeconds\": 29,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 108.57,\n                \"arcRadius\": 1136.25,\n                \"arcLength\": 108.57,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 5,\n                \"arcCentralAngleMinutes\": 28,\n                \"arcCentralAngleSeconds\": 30\n            },\n            {\n                \"id\": 1000000176,\n                \"order\": 5,\n                \"abbreviation\": \"C4\",\n                \"bearingDegrees\": 88,\n                \"bearingMinutes\": 27,\n                \"bearingSeconds\": 5,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 133.83,\n                \"arcRadius\": 1221.35,\n                \"arcLength\": 133.9,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 6,\n                \"arcCentralAngleMinutes\": 16,\n                \"arcCentralAngleSeconds\": 53\n            },\n            {\n                \"id\": 1000000177,\n                \"order\": 6,\n                \"abbreviation\": \"C5\",\n                \"bearingDegrees\": 53,\n                \"bearingMinutes\": 31,\n                \"bearingSeconds\": 54,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 105.01,\n                \"arcRadius\": 2051.65,\n                \"arcLength\": 105.02,\n                \"arcDirection\": \"Right\",\n                \"arcCentralAngleDegrees\": 2,\n                \"arcCentralAngleMinutes\": 55,\n                \"arcCentralAngleSeconds\": 42\n            },\n            {\n                \"id\": 1000000178,\n                \"order\": 7,\n                \"abbreviation\": \"C6\",\n                \"bearingDegrees\": 51,\n                \"bearingMinutes\": 44,\n                \"bearingSeconds\": 35,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 107.96,\n                \"arcRadius\": 2204.25,\n                \"arcLength\": 107.97,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 3,\n                \"arcCentralAngleMinutes\": 46,\n                \"arcCentralAngleSeconds\": 23\n            },\n            {\n                \"id\": 1000000179,\n                \"order\": 8,\n                \"abbreviation\": \"C7\",\n                \"bearingDegrees\": 79,\n                \"bearingMinutes\": 43,\n                \"bearingSeconds\": 33,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 105.31,\n                \"arcRadius\": 2017.8,\n                \"arcLength\": 105.37,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 12,\n                \"arcCentralAngleMinutes\": 59,\n                \"arcCentralAngleSeconds\": 26\n            },\n            {\n                \"id\": 1000000180,\n                \"order\": 9,\n                \"abbreviation\": \"C8\",\n                \"bearingDegrees\": 77,\n                \"bearingMinutes\": 52,\n                \"bearingSeconds\": 1,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 86.69,\n                \"arcRadius\": 4426.35,\n                \"arcLength\": 86.69,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 1,\n                \"arcCentralAngleMinutes\": 7,\n                \"arcCentralAngleSeconds\": 45\n            },\n            {\n                \"id\": 1000000181,\n                \"order\": 10,\n                \"abbreviation\": \"L9\",\n                \"bearingDegrees\": 77,\n                \"bearingMinutes\": 6,\n                \"bearingSeconds\": 27,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 148.91,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000182,\n                \"order\": 11,\n                \"abbreviation\": \"C10\",\n                \"bearingDegrees\": 77,\n                \"bearingMinutes\": 17,\n                \"bearingSeconds\": 53,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 104.12,\n                \"arcRadius\": 3121.65,\n                \"arcLength\": 104.12,\n                \"arcDirection\": \"Right\",\n                \"arcCentralAngleDegrees\": 1,\n                \"arcCentralAngleMinutes\": 54,\n                \"arcCentralAngleSeconds\": 40\n            },\n            {\n                \"id\": 1000000183,\n                \"order\": 12,\n                \"abbreviation\": \"C11\",\n                \"bearingDegrees\": 77,\n                \"bearingMinutes\": 46,\n                \"bearingSeconds\": 55,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 59.36,\n                \"arcRadius\": 1306.4,\n                \"arcLength\": 59.36,\n                \"arcDirection\": \"Right\",\n                \"arcCentralAngleDegrees\": 2,\n                \"arcCentralAngleMinutes\": 36,\n                \"arcCentralAngleSeconds\": 8\n            },\n            {\n                \"id\": 1000000184,\n                \"order\": 13,\n                \"abbreviation\": \"L12\",\n                \"bearingDegrees\": 10,\n                \"bearingMinutes\": 51,\n                \"bearingSeconds\": 13,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 293.5,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000185,\n                \"order\": 14,\n                \"abbreviation\": \"L13\",\n                \"bearingDegrees\": 82,\n                \"bearingMinutes\": 27,\n                \"bearingSeconds\": 24,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 142.82,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000186,\n                \"order\": 15,\n                \"abbreviation\": \"L14\",\n                \"bearingDegrees\": 17,\n                \"bearingMinutes\": 36,\n                \"bearingSeconds\": 14,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 344.55,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000187,\n                \"order\": 16,\n                \"abbreviation\": \"L15\",\n                \"bearingDegrees\": 78,\n                \"bearingMinutes\": 58,\n                \"bearingSeconds\": 7,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 231,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000188,\n                \"order\": 17,\n                \"abbreviation\": \"L16\",\n                \"bearingDegrees\": 50,\n                \"bearingMinutes\": 35,\n                \"bearingSeconds\": 11,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 759,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000189,\n                \"order\": 18,\n                \"abbreviation\": \"L17\",\n                \"bearingDegrees\": 56,\n                \"bearingMinutes\": 25,\n                \"bearingSeconds\": 22,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 277.39,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000190,\n                \"order\": 19,\n                \"abbreviation\": \"L18\",\n                \"bearingDegrees\": 51,\n                \"bearingMinutes\": 14,\n                \"bearingSeconds\": 46,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 0.57,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"5619e447-478b-4e9c-926a-97d4a515c510"},{"name":"Move Legal Description","id":"61147fa9-7846-4e79-8f5d-017a0c61e772","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"startPointLatitude\": 35.2421,\r\n    \"startPointLongitude\": -87.3304\r\n}","options":{"raw":{"language":"json"}}},"url":"{{ApiUrl}}/v1/partner/legal-descriptions//move","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{vault:PartnerApiKey}}"}]},"isInherited":true,"source":{"_postman_id":"ae2a232d-669d-4724-b744-45fc5657d32b","id":"ae2a232d-669d-4724-b744-45fc5657d32b","name":"DeedPlotter AI Partner API","type":"collection"}},"urlObject":{"path":["v1","partner","legal-descriptions","","move"],"host":["{{ApiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"41965ded-6225-4597-9a59-288df5073c1a","name":"200 - OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"startPointLatitude\": 35.2421,\r\n    \"startPointLongitude\": -87.3304\r\n}","options":{"raw":{"language":"json"}}},"url":"{{ApiUrl}}/v1/partner/legal-descriptions//move"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"message\": \"PUT Request successful.\",\n    \"result\": {\n        \"id\": 1000000007,\n        \"name\": \"9.9 Acre Parcel, Lawrence County\",\n        \"geoJsonUrl\": \"https://deedplotterai.blob.core.windows.net/geojsons/dbb0de3c-2247-4649-a8d1-c1b4447f4eb6.geojson\",\n        \"dxfUrl\": \"https://deedplotterai.blob.core.windows.net/dxfs/911157a7-1356-4567-8591-713961dc4686.dxf\",\n        \"startPointLatitude\": 35.2421,\n        \"startPointLongitude\": -87.3304,\n        \"perimeter\": 3248.58,\n        \"nonClosure\": null,\n        \"area\": 330302.19856424554,\n        \"boundaryClosurePercent\": 99.77682013021243,\n        \"boundaryClosureLength\": 7.25017661394497,\n        \"rotateDegrees\": 90,\n        \"rotateMinutes\": null,\n        \"calls\": [\n            {\n                \"id\": 1000000172,\n                \"order\": 1,\n                \"abbreviation\": \"POB\",\n                \"bearingDegrees\": null,\n                \"bearingMinutes\": null,\n                \"bearingSeconds\": null,\n                \"bearingPrimaryDirection\": null,\n                \"bearingSecondaryDirection\": null,\n                \"bearingDistance\": null,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000173,\n                \"order\": 2,\n                \"abbreviation\": \"C1\",\n                \"bearingDegrees\": 79,\n                \"bearingMinutes\": 55,\n                \"bearingSeconds\": 34,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 128.87,\n                \"arcRadius\": 6883.96,\n                \"arcLength\": 128.2,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 1,\n                \"arcCentralAngleMinutes\": 6,\n                \"arcCentralAngleSeconds\": 28\n            },\n            {\n                \"id\": 1000000174,\n                \"order\": 3,\n                \"abbreviation\": \"C2\",\n                \"bearingDegrees\": 30,\n                \"bearingMinutes\": 47,\n                \"bearingSeconds\": 56,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 111.12,\n                \"arcRadius\": 459.25,\n                \"arcLength\": 111.12,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 12,\n                \"arcCentralAngleMinutes\": 25,\n                \"arcCentralAngleSeconds\": 5\n            },\n            {\n                \"id\": 1000000175,\n                \"order\": 4,\n                \"abbreviation\": \"C3\",\n                \"bearingDegrees\": 53,\n                \"bearingMinutes\": 56,\n                \"bearingSeconds\": 29,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 108.57,\n                \"arcRadius\": 1136.25,\n                \"arcLength\": 108.57,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 5,\n                \"arcCentralAngleMinutes\": 28,\n                \"arcCentralAngleSeconds\": 30\n            },\n            {\n                \"id\": 1000000176,\n                \"order\": 5,\n                \"abbreviation\": \"C4\",\n                \"bearingDegrees\": 88,\n                \"bearingMinutes\": 27,\n                \"bearingSeconds\": 5,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 133.83,\n                \"arcRadius\": 1221.35,\n                \"arcLength\": 133.9,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 6,\n                \"arcCentralAngleMinutes\": 16,\n                \"arcCentralAngleSeconds\": 53\n            },\n            {\n                \"id\": 1000000177,\n                \"order\": 6,\n                \"abbreviation\": \"C5\",\n                \"bearingDegrees\": 53,\n                \"bearingMinutes\": 31,\n                \"bearingSeconds\": 54,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 105.01,\n                \"arcRadius\": 2051.65,\n                \"arcLength\": 105.02,\n                \"arcDirection\": \"Right\",\n                \"arcCentralAngleDegrees\": 2,\n                \"arcCentralAngleMinutes\": 55,\n                \"arcCentralAngleSeconds\": 42\n            },\n            {\n                \"id\": 1000000178,\n                \"order\": 7,\n                \"abbreviation\": \"C6\",\n                \"bearingDegrees\": 51,\n                \"bearingMinutes\": 44,\n                \"bearingSeconds\": 35,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 107.96,\n                \"arcRadius\": 2204.25,\n                \"arcLength\": 107.97,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 3,\n                \"arcCentralAngleMinutes\": 46,\n                \"arcCentralAngleSeconds\": 23\n            },\n            {\n                \"id\": 1000000179,\n                \"order\": 8,\n                \"abbreviation\": \"C7\",\n                \"bearingDegrees\": 79,\n                \"bearingMinutes\": 43,\n                \"bearingSeconds\": 33,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 105.31,\n                \"arcRadius\": 2017.8,\n                \"arcLength\": 105.37,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 12,\n                \"arcCentralAngleMinutes\": 59,\n                \"arcCentralAngleSeconds\": 26\n            },\n            {\n                \"id\": 1000000180,\n                \"order\": 9,\n                \"abbreviation\": \"C8\",\n                \"bearingDegrees\": 77,\n                \"bearingMinutes\": 52,\n                \"bearingSeconds\": 1,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 86.69,\n                \"arcRadius\": 4426.35,\n                \"arcLength\": 86.69,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 1,\n                \"arcCentralAngleMinutes\": 7,\n                \"arcCentralAngleSeconds\": 45\n            },\n            {\n                \"id\": 1000000181,\n                \"order\": 10,\n                \"abbreviation\": \"L9\",\n                \"bearingDegrees\": 77,\n                \"bearingMinutes\": 6,\n                \"bearingSeconds\": 27,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 148.91,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000182,\n                \"order\": 11,\n                \"abbreviation\": \"C10\",\n                \"bearingDegrees\": 77,\n                \"bearingMinutes\": 17,\n                \"bearingSeconds\": 53,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 104.12,\n                \"arcRadius\": 3121.65,\n                \"arcLength\": 104.12,\n                \"arcDirection\": \"Right\",\n                \"arcCentralAngleDegrees\": 1,\n                \"arcCentralAngleMinutes\": 54,\n                \"arcCentralAngleSeconds\": 40\n            },\n            {\n                \"id\": 1000000183,\n                \"order\": 12,\n                \"abbreviation\": \"C11\",\n                \"bearingDegrees\": 77,\n                \"bearingMinutes\": 46,\n                \"bearingSeconds\": 55,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 59.36,\n                \"arcRadius\": 1306.4,\n                \"arcLength\": 59.36,\n                \"arcDirection\": \"Right\",\n                \"arcCentralAngleDegrees\": 2,\n                \"arcCentralAngleMinutes\": 36,\n                \"arcCentralAngleSeconds\": 8\n            },\n            {\n                \"id\": 1000000184,\n                \"order\": 13,\n                \"abbreviation\": \"L12\",\n                \"bearingDegrees\": 10,\n                \"bearingMinutes\": 51,\n                \"bearingSeconds\": 13,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 293.5,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000185,\n                \"order\": 14,\n                \"abbreviation\": \"L13\",\n                \"bearingDegrees\": 82,\n                \"bearingMinutes\": 27,\n                \"bearingSeconds\": 24,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 142.82,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000186,\n                \"order\": 15,\n                \"abbreviation\": \"L14\",\n                \"bearingDegrees\": 17,\n                \"bearingMinutes\": 36,\n                \"bearingSeconds\": 14,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 344.55,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000187,\n                \"order\": 16,\n                \"abbreviation\": \"L15\",\n                \"bearingDegrees\": 78,\n                \"bearingMinutes\": 58,\n                \"bearingSeconds\": 7,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 231,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000188,\n                \"order\": 17,\n                \"abbreviation\": \"L16\",\n                \"bearingDegrees\": 50,\n                \"bearingMinutes\": 35,\n                \"bearingSeconds\": 11,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 759,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000189,\n                \"order\": 18,\n                \"abbreviation\": \"L17\",\n                \"bearingDegrees\": 56,\n                \"bearingMinutes\": 25,\n                \"bearingSeconds\": 22,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 277.39,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000190,\n                \"order\": 19,\n                \"abbreviation\": \"L18\",\n                \"bearingDegrees\": 51,\n                \"bearingMinutes\": 14,\n                \"bearingSeconds\": 46,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 0.57,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"61147fa9-7846-4e79-8f5d-017a0c61e772"},{"name":"Rotate Legal Description","id":"c835547c-f849-43fb-b977-cc180dbfd58b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"rotateDegrees\": 8,\r\n    \"rotateMinutes\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{ApiUrl}}/v1/partner/legal-descriptions//rotate","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{vault:PartnerApiKey}}"}]},"isInherited":true,"source":{"_postman_id":"ae2a232d-669d-4724-b744-45fc5657d32b","id":"ae2a232d-669d-4724-b744-45fc5657d32b","name":"DeedPlotter AI Partner API","type":"collection"}},"urlObject":{"path":["v1","partner","legal-descriptions","","rotate"],"host":["{{ApiUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a6cf6fe1-69ed-4b9e-aaab-e5ed469460b0","name":"Rotate Legal Description","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"rotateDegrees\": 8,\r\n    \"rotateMinutes\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{ApiUrl}}/v1/partner/legal-descriptions//rotate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"message\": \"PUT Request successful.\",\n    \"result\": {\n        \"id\": 1000000007,\n        \"name\": \"9.9 Acre Parcel, Lawrence County\",\n        \"geoJsonUrl\": \"https://deedplotterai.blob.core.windows.net/geojsons/7c7a4f66-9bb3-4323-b330-7487fe95abb4.geojson\",\n        \"dxfUrl\": \"https://deedplotterai.blob.core.windows.net/dxfs/31a2919a-ad39-447b-8b8f-4d6419e9bcb4.dxf\",\n        \"startPointLatitude\": 35.2421,\n        \"startPointLongitude\": -87.3304,\n        \"perimeter\": 3248.58,\n        \"nonClosure\": null,\n        \"area\": 330302.1985642443,\n        \"boundaryClosurePercent\": 99.77682013021243,\n        \"boundaryClosureLength\": 7.25017661394497,\n        \"rotateDegrees\": 8,\n        \"rotateMinutes\": null,\n        \"calls\": [\n            {\n                \"id\": 1000000172,\n                \"order\": 1,\n                \"abbreviation\": \"POB\",\n                \"bearingDegrees\": null,\n                \"bearingMinutes\": null,\n                \"bearingSeconds\": null,\n                \"bearingPrimaryDirection\": null,\n                \"bearingSecondaryDirection\": null,\n                \"bearingDistance\": null,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000173,\n                \"order\": 2,\n                \"abbreviation\": \"C1\",\n                \"bearingDegrees\": 79,\n                \"bearingMinutes\": 55,\n                \"bearingSeconds\": 34,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 128.87,\n                \"arcRadius\": 6883.96,\n                \"arcLength\": 128.2,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 1,\n                \"arcCentralAngleMinutes\": 6,\n                \"arcCentralAngleSeconds\": 28\n            },\n            {\n                \"id\": 1000000174,\n                \"order\": 3,\n                \"abbreviation\": \"C2\",\n                \"bearingDegrees\": 30,\n                \"bearingMinutes\": 47,\n                \"bearingSeconds\": 56,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 111.12,\n                \"arcRadius\": 459.25,\n                \"arcLength\": 111.12,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 12,\n                \"arcCentralAngleMinutes\": 25,\n                \"arcCentralAngleSeconds\": 5\n            },\n            {\n                \"id\": 1000000175,\n                \"order\": 4,\n                \"abbreviation\": \"C3\",\n                \"bearingDegrees\": 53,\n                \"bearingMinutes\": 56,\n                \"bearingSeconds\": 29,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 108.57,\n                \"arcRadius\": 1136.25,\n                \"arcLength\": 108.57,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 5,\n                \"arcCentralAngleMinutes\": 28,\n                \"arcCentralAngleSeconds\": 30\n            },\n            {\n                \"id\": 1000000176,\n                \"order\": 5,\n                \"abbreviation\": \"C4\",\n                \"bearingDegrees\": 88,\n                \"bearingMinutes\": 27,\n                \"bearingSeconds\": 5,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 133.83,\n                \"arcRadius\": 1221.35,\n                \"arcLength\": 133.9,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 6,\n                \"arcCentralAngleMinutes\": 16,\n                \"arcCentralAngleSeconds\": 53\n            },\n            {\n                \"id\": 1000000177,\n                \"order\": 6,\n                \"abbreviation\": \"C5\",\n                \"bearingDegrees\": 53,\n                \"bearingMinutes\": 31,\n                \"bearingSeconds\": 54,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 105.01,\n                \"arcRadius\": 2051.65,\n                \"arcLength\": 105.02,\n                \"arcDirection\": \"Right\",\n                \"arcCentralAngleDegrees\": 2,\n                \"arcCentralAngleMinutes\": 55,\n                \"arcCentralAngleSeconds\": 42\n            },\n            {\n                \"id\": 1000000178,\n                \"order\": 7,\n                \"abbreviation\": \"C6\",\n                \"bearingDegrees\": 51,\n                \"bearingMinutes\": 44,\n                \"bearingSeconds\": 35,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 107.96,\n                \"arcRadius\": 2204.25,\n                \"arcLength\": 107.97,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 3,\n                \"arcCentralAngleMinutes\": 46,\n                \"arcCentralAngleSeconds\": 23\n            },\n            {\n                \"id\": 1000000179,\n                \"order\": 8,\n                \"abbreviation\": \"C7\",\n                \"bearingDegrees\": 79,\n                \"bearingMinutes\": 43,\n                \"bearingSeconds\": 33,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 105.31,\n                \"arcRadius\": 2017.8,\n                \"arcLength\": 105.37,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 12,\n                \"arcCentralAngleMinutes\": 59,\n                \"arcCentralAngleSeconds\": 26\n            },\n            {\n                \"id\": 1000000180,\n                \"order\": 9,\n                \"abbreviation\": \"C8\",\n                \"bearingDegrees\": 77,\n                \"bearingMinutes\": 52,\n                \"bearingSeconds\": 1,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 86.69,\n                \"arcRadius\": 4426.35,\n                \"arcLength\": 86.69,\n                \"arcDirection\": \"Left\",\n                \"arcCentralAngleDegrees\": 1,\n                \"arcCentralAngleMinutes\": 7,\n                \"arcCentralAngleSeconds\": 45\n            },\n            {\n                \"id\": 1000000181,\n                \"order\": 10,\n                \"abbreviation\": \"L9\",\n                \"bearingDegrees\": 77,\n                \"bearingMinutes\": 6,\n                \"bearingSeconds\": 27,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 148.91,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000182,\n                \"order\": 11,\n                \"abbreviation\": \"C10\",\n                \"bearingDegrees\": 77,\n                \"bearingMinutes\": 17,\n                \"bearingSeconds\": 53,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 104.12,\n                \"arcRadius\": 3121.65,\n                \"arcLength\": 104.12,\n                \"arcDirection\": \"Right\",\n                \"arcCentralAngleDegrees\": 1,\n                \"arcCentralAngleMinutes\": 54,\n                \"arcCentralAngleSeconds\": 40\n            },\n            {\n                \"id\": 1000000183,\n                \"order\": 12,\n                \"abbreviation\": \"C11\",\n                \"bearingDegrees\": 77,\n                \"bearingMinutes\": 46,\n                \"bearingSeconds\": 55,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 59.36,\n                \"arcRadius\": 1306.4,\n                \"arcLength\": 59.36,\n                \"arcDirection\": \"Right\",\n                \"arcCentralAngleDegrees\": 2,\n                \"arcCentralAngleMinutes\": 36,\n                \"arcCentralAngleSeconds\": 8\n            },\n            {\n                \"id\": 1000000184,\n                \"order\": 13,\n                \"abbreviation\": \"L12\",\n                \"bearingDegrees\": 10,\n                \"bearingMinutes\": 51,\n                \"bearingSeconds\": 13,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 293.5,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000185,\n                \"order\": 14,\n                \"abbreviation\": \"L13\",\n                \"bearingDegrees\": 82,\n                \"bearingMinutes\": 27,\n                \"bearingSeconds\": 24,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"E\",\n                \"bearingDistance\": 142.82,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000186,\n                \"order\": 15,\n                \"abbreviation\": \"L14\",\n                \"bearingDegrees\": 17,\n                \"bearingMinutes\": 36,\n                \"bearingSeconds\": 14,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 344.55,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000187,\n                \"order\": 16,\n                \"abbreviation\": \"L15\",\n                \"bearingDegrees\": 78,\n                \"bearingMinutes\": 58,\n                \"bearingSeconds\": 7,\n                \"bearingPrimaryDirection\": \"S\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 231,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000188,\n                \"order\": 17,\n                \"abbreviation\": \"L16\",\n                \"bearingDegrees\": 50,\n                \"bearingMinutes\": 35,\n                \"bearingSeconds\": 11,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 759,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000189,\n                \"order\": 18,\n                \"abbreviation\": \"L17\",\n                \"bearingDegrees\": 56,\n                \"bearingMinutes\": 25,\n                \"bearingSeconds\": 22,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 277.39,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            },\n            {\n                \"id\": 1000000190,\n                \"order\": 19,\n                \"abbreviation\": \"L18\",\n                \"bearingDegrees\": 51,\n                \"bearingMinutes\": 14,\n                \"bearingSeconds\": 46,\n                \"bearingPrimaryDirection\": \"N\",\n                \"bearingSecondaryDirection\": \"W\",\n                \"bearingDistance\": 0.57,\n                \"arcRadius\": null,\n                \"arcLength\": null,\n                \"arcDirection\": null,\n                \"arcCentralAngleDegrees\": null,\n                \"arcCentralAngleMinutes\": null,\n                \"arcCentralAngleSeconds\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"c835547c-f849-43fb-b977-cc180dbfd58b"}],"id":"302ddf0b-75a7-4219-a7ff-fa800ba5e5dd","description":"<p>Legal descriptions are individual boundaries extracted from documents. Each gets its own DXF and GeoJSON files.</p>\n","_postman_id":"302ddf0b-75a7-4219-a7ff-fa800ba5e5dd","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{vault:PartnerApiKey}}"}]},"isInherited":true,"source":{"_postman_id":"ae2a232d-669d-4724-b744-45fc5657d32b","id":"ae2a232d-669d-4724-b744-45fc5657d32b","name":"DeedPlotter AI Partner API","type":"collection"}}}],"id":"a0101eff-cabb-483b-9671-274190dcc9c7","description":"<p>Basic functionality around creating projects, creating documents within projects (legal descriptions), and legal description placement.</p>\n","_postman_id":"a0101eff-cabb-483b-9671-274190dcc9c7","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{vault:PartnerApiKey}}"}]},"isInherited":true,"source":{"_postman_id":"ae2a232d-669d-4724-b744-45fc5657d32b","id":"ae2a232d-669d-4724-b744-45fc5657d32b","name":"DeedPlotter AI Partner API","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{vault:PartnerApiKey}}"}]}},"event":[{"listen":"prerequest","script":{"id":"47b2767c-21e7-4dd7-92ca-444862911230","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"09dd1880-9ad8-4eff-a4ef-3ed339fff111","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"ProjectId","value":"5944","type":"string"},{"key":"LegalDescriptionId","value":"","type":"default"},{"key":"DocumentId","value":"","type":"default"}]}