{"info":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","description":"<html><head></head><body><p>The PreciseFP API is organized around REST. It's designed with resource-oriented URLs, and uses HTTP codes to indicate success and error responses. We use standard HTTP features, like HTTP authentication and HTTP verbs, which are understood by off-the-shelf HTTP clients. JSON is returned by all API responses, including errors.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>To use our API you need to generate an access token in your PreciseFP settings or via oAuth. Please contact us to enable your API access.</p>\n<h1 id=\"error-codes\">Error Codes</h1>\n<p>| 200 | Successful -- The request was successful.<br>| 201 | Created -- The resource was created.<br>| 204 | No content -- The request was successful and returned an empty response.<br>| 401 | Unauthorized -- Invalid credentials.<br>| 403 | Forbidden -- The authenticated user does not have access to the resource.<br>| 404 | Not Found -- The specified resource could not be found.<br>| 405 | Method Not Allowed -- You tried to access a resource with an invalid method.<br>| 422 | Unprocessable Entity -- The request parameters are invalid.<br>| 429 | Too Many Requests -- You reached your request limit. Please try again later.<br>| 500 | Internal Server Error -- We had a problem with our server. Try again later.<br>| 503 | Service Unavailable -- We're temporarily offline for maintenance. Please try again later.</p>\n<h1 id=\"rate-limit\">Rate limit</h1>\n<p>The rate limit is 60 per minute.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Error Codes","slug":"error-codes"},{"content":"Rate limit","slug":"rate-limit"}],"owner":"6125750","collectionId":"9becfdc1-3041-401e-9446-12ff1338edc0","publishedId":"UyrDEFnd","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"7BA835"},"publishDate":"2022-04-27T08:45:48.000Z"},"item":[{"name":"Accounts","item":[{"name":"Get Accounts","id":"5e5ebc43-65a3-4b07-9f44-70833a44de9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/accounts?sort=-id&limit=50&offset=0&query=&type=&pipeline=","description":"<p>Returns a collection of accounts.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts"],"host":["app.precisefp.com"],"query":[{"description":{"content":"<p>Sort results by: id, type, quality, pipeline, favorited, archived, created_at, updated_at, client.first_name, client.last_name, client.email, coclient.first_name, coclient.last_name, coclient.email</p>\n","type":"text/plain"},"key":"sort","value":"-id"},{"description":{"content":"<p>Limit results</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Offset results</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"description":{"content":"<p>Search client/co-client first name, last name or email</p>\n","type":"text/plain"},"key":"query","value":""},{"description":{"content":"<p>Filter results by: client, prospect, favorite, archived, all</p>\n","type":"text/plain"},"key":"type","value":""},{"description":{"content":"<p>Filter results by pipeline id</p>\n","type":"text/plain"},"key":"pipeline","value":""}],"variable":[]}},"response":[{"id":"00fad9f0-8b2a-4138-a429-23476e86dee5","name":"Get accounts","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.precisefp.com/api/v3/accounts?sort=-id&limit=50&offset=0&query=&type=&pipeline=","protocol":"https","host":["app.precisefp.com"],"path":["api","v3","accounts"],"query":[{"key":"sort","value":"-id","description":"Sort results by: id, type, quality, pipeline, favorited, archived, created_at, updated_at, client.first_name, client.last_name, client.email, coclient.first_name, coclient.last_name, coclient.email"},{"key":"limit","value":"50","description":"Limit results"},{"key":"offset","value":"0","description":"Offset results"},{"key":"query","value":"","description":"Search client/co-client first name, last name or email"},{"key":"type","value":"","description":"Filter results by: client, prospect, favorite, archived, all"},{"key":"pipeline","value":"","description":"Filter results by pipeline id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [                                        // List of account records\n        {\n            \"id\": 218,                                // The account ID.\n            \"type\": \"client\",                         // The account type. Can be client or prospect\n            \"client\": {                               // Data for the main client of the account\n                \"id\": 299,                            // The ID for the main client of the account\n                \"first_name\": \"John\",                 // The first name\n                \"last_name\": \"Doe\",                   // The last name\n                \"email\": \"johndoe@precisefp.com\",     // The email address\n                \"phone\": {                            // The mobile phone\n                    \"country\": \"US\",                  // 2 letter representation of the phone number's country\n                    \"code\": \"+1\",                     // The country calling code\n                    \"number\": \"3123211212\"            // The phone number\n                },\n                \"status\": \"new\"                       // The security status of this client. Can be new, active, or blocked\n            },\n            \"coclient\": {                             // Data for the co-client of the account\n                \"id\": 300,                            // The ID for the main client of the account\n                \"first_name\": \"Jane\",                 // The first name\n                \"last_name\": \"Doe\",                   // The last name\n                \"email\": \"jane.doe@precisefp.com\",    // The email address\n                \"phone\": {                            // The mobile phone\n                    \"country\": \"US\",                  // 2 letter representation of the phone number's country\n                    \"code\": \"+1\",                     // The country calling code\n                    \"number\": \"3123211414\"            // The phone number\n                },\n                \"status\": \"new\"                       // The security status of this client. Can be new, active, or blocked\n            },\n            \"quality\": {                              // Data quality information\n                \"score\": 12,                          // Data quality score. From 0 to 100\n                \"rules\": [                            // Data quality rules. Each rule contains a message and a boolean that specifies if the rule is valid or not\n                    {\n                        \"message\": \"Email specified\",\n                        \"valid\": true\n                    },\n                    {\n                        \"message\": \"Mobile phone specified\",\n                        \"valid\": true\n                    },\n                    {\n                        \"message\": \"Birthdate not specified\",\n                        \"valid\": false\n                    },\n                    {\n                        \"message\": \"Risk score not specified\",\n                        \"valid\": false\n                    },\n                    {\n                        \"message\": \"Financial goals not specified\",\n                        \"valid\": false\n                    },\n                    {\n                        \"message\": \"Income information not specified\",\n                        \"valid\": false\n                    },\n                    {\n                        \"message\": \"Fixed expenses not specified\",\n                        \"valid\": false\n                    },\n                    {\n                        \"message\": \"Variable expenses not specified\",\n                        \"valid\": false\n                    },\n                    {\n                        \"message\": \"Tax related expenses not specified\",\n                        \"valid\": false\n                    },\n                    {\n                        \"message\": \"Insurance information not specified\",\n                        \"valid\": false\n                    },\n                    {\n                        \"message\": \"Retirement plan information not specified\",\n                        \"valid\": false\n                    },\n                    {\n                        \"message\": \"Asset information not specified\",\n                        \"valid\": false\n                    },\n                    {\n                        \"message\": \"Liability information not specified\",\n                        \"valid\": false\n                    },\n                    {\n                        \"message\": \"Estate planning information not specified\",\n                        \"valid\": false\n                    },\n                    {\n                        \"message\": \"Gender not specified\",\n                        \"valid\": false\n                    }\n                ]\n            },\n            \"pipeline\": {                                                                                       // Pipeline data for the account\n                \"id\": \"33e1d4b2-7243-4028-ad67-9bf4c171b057\",                                                   // Pipeline ID\n                \"title\": \"Onboard\",                                                                             // Pipeline title\n                \"description\": \"Gather the information required to understand your client's wants and needs.\",  // Pipeline description\n                \"icon\": \"i_users_cog\"                                                                           // Pipeline icon. See /config/icons\n            },\n            \"favorited\": false,                                                                                 // If the account is favorited\n            \"archived\": false,                                                                                  // If the account is archived\n            \"created_at\": \"2022-04-14 10:47:54\",                                                                // When the account was created\n            \"updated_at\": \"2022-04-14 10:47:54\"                                                                 // When the account was last updated\n        },\n        {\n            \"id\": 23,\n            \"type\": \"prospect\",\n            \"client\": {\n                \"id\": 111,\n                \"first_name\": \"Steve\",\n                \"last_name\": \"Smith\",\n                \"email\": \"steve.smith@precisefp.com\",\n                \"phone\": {\n                    \"code\": \"+1\",\n                    \"number\": \"3123121232\",\n                    \"country\": \"US\",\n                    \"ext\": null\n                },\n                \"status\": \"active\"\n            },\n            \"coclient\": {\n                \"id\": 112,\n                \"first_name\": \"Sarah\",\n                \"last_name\": \"Smith\",\n                \"email\": \"sarah.smith@precisefp.com\",\n                \"phone\": {\n                    \"code\": \"+1\",\n                    \"number\": \"3123121232\",\n                    \"country\": \"US\",\n                    \"ext\": null\n                },\n                \"status\": \"active\"\n            },\n            \"quality\": {\n                \"score\": 90,\n                \"rules\": [\n                    {\n                        \"message\": \"Email specified\",\n                        \"valid\": true\n                    },\n                    {\n                        \"message\": \"Mobile phone specified\",\n                        \"valid\": true\n                    },\n                    {\n                        \"message\": \"Birthdate specified\",\n                        \"valid\": true\n                    },\n                    {\n                        \"message\": \"Risk score specified\",\n                        \"valid\": true\n                    },\n                    {\n                        \"message\": \"Financial goals not specified\",\n                        \"valid\": false\n                    }\n                ]\n            },\n            \"pipeline\": {\n                \"id\": \"36eb5aff-48d0-4d1d-865b-713c6acf5f49\",\n                \"icon\": \"i_award\",\n                \"title\": \"Acquire\",\n                \"description\": \"Convert your prospects to clients.\"\n            },\n            \"favorited\": false,\n            \"archived\": false,\n            \"created_at\": \"2021-03-02 16:47:00\",\n            \"updated_at\": \"2022-03-22 12:50:44\"\n        },\n        {\n            \"id\": 22,\n            \"type\": \"prospect\",\n            \"client\": {\n                \"id\": 109,\n                \"first_name\": \"Adam\",\n                \"last_name\": \"Rogers\",\n                \"email\": \"adam.rogers@precisefp.com\",\n                \"phone\": {\n                    \"country\": null,\n                    \"code\": null,\n                    \"number\": null\n                },\n                \"status\": \"new\"\n            },\n            \"coclient\": {\n                \"id\": 110,\n                \"first_name\": \"Anna\",\n                \"last_name\": \"Rogers\",\n                \"email\": \"anna.rogers@precisefp.com\",\n                \"phone\": {\n                    \"code\": \"+1\",\n                    \"number\": \"3213122132\",\n                    \"country\": \"US\",\n                    \"ext\": null\n                },\n                \"status\": \"new\"\n            },\n            \"quality\": {\n                \"score\": 48,\n                \"rules\": [\n                    {\n                        \"message\": \"Email specified\",\n                        \"valid\": true\n                    },\n                    {\n                        \"message\": \"Mobile phone not specified\",\n                        \"valid\": false\n                    },\n                    {\n                        \"message\": \"Birthdate specified\",\n                        \"valid\": true\n                    },\n                    {\n                        \"message\": \"Risk score not specified\",\n                        \"valid\": false\n                    },\n                    {\n                        \"message\": \"Financial goals not specified\",\n                        \"valid\": false\n                    }\n                ]\n            },\n            \"pipeline\": {\n                \"id\": \"6146f90a-7e07-4728-8a01-6b057a182901\",\n                \"icon\": \"i_comments\",\n                \"title\": \"Re-engage\",\n                \"description\": \"Re-start communication with prospects slipping away.\"\n            },\n            \"favorited\": false,\n            \"archived\": false,\n            \"created_at\": \"2020-09-08 11:49:38\",\n            \"updated_at\": \"2021-11-25 13:10:02\"\n        }\n    ],\n    \"params\": {                                  // List parameters\n        \"limit\": \"50\",                           // Max records returned (defaults to 50)\n        \"offset\": 3,                             // The offset for the next chunk of results\n        \"sort\": \"-id\",                           // The field used for sorting (the dash represents a descending sort)\n        \"query\": null,                           // The search query used\n        \"type\": null,                            // The type filter used\n        \"pipeline\": null,                        // The pipeline filter used\n        \"total\": 3                               // The total amount of existing records\n    }\n}"}],"_postman_id":"5e5ebc43-65a3-4b07-9f44-70833a44de9d"},{"name":"Create Account","event":[{"listen":"prerequest","script":{"id":"9db54998-b7fb-4e7c-abea-8545fb976a81","exec":["/* Strip comments from json body */\r","if (pm?.request?.body?.options?.raw?.language === 'json') {\r","    const rawData = pm.request.body.toString();\r","    const strippedData = rawData.replace(\r","        /\\\\\"|\"(?:\\\\\"|[^\"])*\"|(\\/\\/.*|\\/\\*[\\s\\S]*?\\*\\/)/g,\r","        (m, g) => g ? \"\" : m\r","    );\r","    pm.request.body.update(JSON.stringify(JSON.parse(strippedData)));\r","    pm.request.headers.add('Content-Type: application/json');\r","}"],"type":"text/javascript"}}],"id":"b6db56e1-2767-499e-9928-38c82f3bd3e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"CLIENT\",                         // The type of account. CLIENT or PROSPECT (required)\r\n    \"client\": {                               // Data for the main client of the account (required)\r\n        \"first_name\": \"John\",                 // The first name (required)\r\n        \"last_name\": \"Doe\",                   // The last name  (required)\r\n        \"email\": \"jon.doer@precisefp.com\",    // The email address (required)\r\n        \"phone\": {                            // The mobile phone number (optional)\r\n            \"country\": \"US\",                  // 2 letter country code (optional)\r\n            \"code\":\"+1\",                      // Country calling code\r\n            \"number\": \"3213211212\"            // Phone number\r\n        }\r\n    },\r\n    \"coclient\": {                             // Data for the co-client of the account (optional)\r\n        \"first_name\": \"Jane\",                 // The first name \r\n        \"last_name\": \"Dore\",                   // The last name\r\n        \"email\": \"jane.doers@precisefp.com\",    // The email address\r\n        \"phone\": {                            // The mobile phone number\r\n            \"country\": \"US\",                  // 2 letter country code\r\n            \"code\":\"+1\",                      // Country calling code\r\n            \"number\": \"3213211414\"            // Phone number\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts","description":"<p>Creates a new account record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"b4a642ec-0dee-46c7-a7ac-e021771da987","name":"Create Account","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"CLIENT\",                         // The type of account. CLIENT or PROSPECT (required)\r\n    \"client\": {                               // Data for the main client of the account (required)\r\n        \"first_name\": \"John\",                 // The first name (required)\r\n        \"last_name\": \"Doe\",                   // The last name  (required)\r\n        \"email\": \"john.doe@precisefp.com\",    // The email address (required)\r\n        \"phone\": {                            // The mobile phone number (optional)\r\n            \"country\": \"US\",                  // 2 letter country code (optional)\r\n            \"code\":\"+1\",                      // Country calling code\r\n            \"number\": \"3213211212\"            // Phone number\r\n        }\r\n    },\r\n    \"coclient\": {                             // Data for the co-client of the account (optional)\r\n        \"first_name\": \"Jane\",                 // The first name \r\n        \"last_name\": \"Doe\",                   // The last name\r\n        \"email\": \"jane.doe@precisefp.com\",    // The email address\r\n        \"phone\": {                            // The mobile phone number\r\n            \"country\": \"US\",                  // 2 letter country code\r\n            \"code\":\"+1\",                      // Country calling code\r\n            \"number\": \"3213211414\"            // Phone number\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 218,                                // The account ID\n    \"type\": \"client\",                         // The account type. Can be client or prospect\n    \"client\": {                               // Data for the main client of the account\n        \"id\": 299,                            // The ID for the main client of the account\n        \"first_name\": \"John\",                 // The first name\n        \"last_name\": \"Doe\",                   // The last name\n        \"email\": \"john.doe@precisefp.com\",    // The email address\n        \"phone\": {                            // The mobile phone\n            \"country\": \"US\",                  // 2 letter representation of the phone number's country\n            \"code\": \"+1\",                     // The country calling code\n            \"number\": \"3123211212\"            // The phone number\n        },\n        \"status\": \"new\"                       // The security status of this client. Can be new, active, or blocked\n    },\n    \"coclient\": {                             // Data for the co-client of the account\n        \"id\": 300,                            // The ID for the main client of the account\n        \"first_name\": \"Jane\",                 // The first name\n        \"last_name\": \"Doe\",                   // The last name\n        \"email\": \"jane.doe@precisefp.com\",    // The email address\n        \"phone\": {                            // The mobile phone\n            \"country\": \"US\",                  // 2 letter representation of the phone number's country\n            \"code\": \"+1\",                     // The country calling code\n            \"number\": \"3123211414\"            // The phone number\n        },\n        \"status\": \"new\"                       // The security status of this client. Can be new, active, or blocked\n    },\n    \"quality\": {                              // Data quality information\n        \"score\": 12,                          // Data quality score. From 0 to 100\n        \"rules\": [                            // Data quality rules. Each rule contains a message and a boolean that specifies if the rule is valid or not\n            {\n                \"message\": \"Email specified\",\n                \"valid\": true\n            },\n            {\n                \"message\": \"Mobile phone specified\",\n                \"valid\": true\n            },\n            {\n                \"message\": \"Birthdate not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Risk score not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Financial goals not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Income information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Fixed expenses not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Variable expenses not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Tax related expenses not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Insurance information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Retirement plan information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Asset information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Liability information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Estate planning information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Gender not specified\",\n                \"valid\": false\n            }\n        ]\n    },\n    \"pipeline\": {                                                                                       // Pipeline data for the account\n        \"id\": \"33e1d4b2-7243-4028-ad67-9bf4c171b057\",                                                   // Pipeline ID\n        \"title\": \"Onboard\",                                                                             // Pipeline title\n        \"description\": \"Gather the information required to understand your client's wants and needs.\",  // Pipeline description\n        \"icon\": \"i_users_cog\"                                                                           // Pipeline icon. See /config/icons\n    },\n    \"favorited\": false,                                                                                 // If the account is favorited\n    \"archived\": false,                                                                                  // If the account is archived\n    \"created_at\": \"2022-04-14 10:47:54\",                                                                // When the account was created\n    \"updated_at\": \"2022-04-14 10:47:54\"                                                                 // When the account was last updated\n}"}],"_postman_id":"b6db56e1-2767-499e-9928-38c82f3bd3e6"},{"name":"Get Account","id":"fd3c940c-f9b0-47ed-ac61-76b4efcab274","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}","description":"<p>Returns one, specific account.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"dfb5c471-1a52-4886-babd-6527bd97d941","name":"Get Account","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 218,                                // The account ID\n    \"type\": \"client\",                         // The account type. Can be client or prospect\n    \"client\": {                               // Data for the main client of the account\n        \"id\": 299,                            // The ID for the main client of the account\n        \"first_name\": \"John\",                 // The first name\n        \"last_name\": \"Doe\",                   // The last name\n        \"email\": \"john.doe@precisefp.com\",    // The email address\n        \"phone\": {                            // The mobile phone\n            \"country\": \"US\",                  // 2 letter representation of the phone number's country\n            \"code\": \"+1\",                     // The country calling code\n            \"number\": \"3123211212\"            // The phone number\n        },\n        \"status\": \"new\"                       // The security status of this client. Can be new, active, or blocked\n    },\n    \"coclient\": {                             // Data for the co-client of the account\n        \"id\": 300,                            // The ID for the main client of the account\n        \"first_name\": \"Jane\",                 // The first name\n        \"last_name\": \"Doe\",                   // The last name\n        \"email\": \"jane.doe@precisefp.com\",    // The email address\n        \"phone\": {                            // The mobile phone\n            \"country\": \"US\",                  // 2 letter representation of the phone number's country\n            \"code\": \"+1\",                     // The country calling code\n            \"number\": \"3123211414\"            // The phone number\n        },\n        \"status\": \"new\"                       // The security status of this client. Can be new, active, or blocked\n    },\n    \"quality\": {                              // Data quality information\n        \"score\": 12,                          // Data quality score. From 0 to 100\n        \"rules\": [                            // Data quality rules. Each rule contains a message and a boolean that specifies if the rule is valid or not\n            {\n                \"message\": \"Email specified\",\n                \"valid\": true\n            },\n            {\n                \"message\": \"Mobile phone specified\",\n                \"valid\": true\n            },\n            {\n                \"message\": \"Birthdate not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Risk score not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Financial goals not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Income information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Fixed expenses not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Variable expenses not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Tax related expenses not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Insurance information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Retirement plan information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Asset information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Liability information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Estate planning information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Gender not specified\",\n                \"valid\": false\n            }\n        ]\n    },\n    \"pipeline\": {                                                                                       // Pipeline data for the account\n        \"id\": \"33e1d4b2-7243-4028-ad67-9bf4c171b057\",                                                   // Pipeline ID\n        \"title\": \"Onboard\",                                                                             // Pipeline title\n        \"description\": \"Gather the information required to understand your client's wants and needs.\",  // Pipeline description\n        \"icon\": \"i_users_cog\"                                                                           // Pipeline icon. See /config/icons\n    },\n    \"favorited\": false,                                                                                 // If the account is favorited\n    \"archived\": false,                                                                                  // If the account is archived\n    \"created_at\": \"2022-04-14 10:47:54\",                                                                // When the account was created\n    \"updated_at\": \"2022-04-14 10:47:54\"                                                                 // When the account was last updated\n}"}],"_postman_id":"fd3c940c-f9b0-47ed-ac61-76b4efcab274"},{"name":"Update Account","event":[{"listen":"prerequest","script":{"id":"5642782c-32a8-4517-ac6f-e64897a71584","exec":["/* Strip comments from json body */\r","if (pm?.request?.body?.options?.raw?.language === 'json') {\r","    const rawData = pm.request.body.toString();\r","    const strippedData = rawData.replace(\r","        /\\\\\"|\"(?:\\\\\"|[^\"])*\"|(\\/\\/.*|\\/\\*[\\s\\S]*?\\*\\/)/g,\r","        (m, g) => g ? \"\" : m\r","    );\r","    pm.request.body.update(JSON.stringify(JSON.parse(strippedData)));\r","    pm.request.headers.add('Content-Type: application/json');\r","}"],"type":"text/javascript"}}],"id":"f5c63874-0968-42ab-b60f-29404a5a122e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"CLIENT\",                         // The account type. Can be CLIENT or PROSPECT\r\n    \"client\": {                               // Data for the main client of the account\r\n        \"first_name\": \"John\",                 // The first name\r\n        \"last_name\": \"Doe\",                   // The last name\r\n        \"email\": \"john.doe4125@precisefp.com\",    // The email address\r\n        \"phone\": {                            // The mobile phone\r\n            \"country\": \"US\",                  // 2 letter representation of the phone number's country\r\n            \"code\": \"+1\",                     // The country calling code\r\n            \"number\": \"3123211212\"            // The phone number\r\n        }\r\n    },\r\n    \"coclient\": {                             // Data for the co-client of the account\r\n        \"first_name\": \"Jane\",                 // The first name\r\n        \"last_name\": \"Doe\",                   // The last name\r\n        \"email\": \"jane.doe81245@precisefp.com\",    // The email address\r\n        \"phone\": {                            // The mobile phone\r\n            \"country\": \"US\",                  // 2 letter representation of the phone number's country\r\n            \"code\": \"+1\",                     // The country calling code\r\n            \"number\": \"3123211414\"            // The phone number\r\n        }\r\n    },\r\n    \"pipeline\": {                                                                                       // Pipeline data for the account\r\n        \"id\": \"33e1d4b2-7243-4028-ad67-9bf4c171b057\"                                                    // Pipeline ID\r\n    },\r\n    \"favorited\": false,                                                                                 // If the account is favorited\r\n    \"archived\": false                                                                                   // If the account is archived\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}","description":"<p>Updates an account record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"43e13f43-2a7d-4068-9ec1-4ef51af55a5b","name":"Update Account","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"CLIENT\",                         // The account type. Can be CLIENT or PROSPECT\r\n    \"client\": {                               // Data for the main client of the account\r\n        \"first_name\": \"John\",                 // The first name\r\n        \"last_name\": \"Doe\",                   // The last name\r\n        \"email\": \"john.doe@precisefp.com\",    // The email address\r\n        \"phone\": {                            // The mobile phone\r\n            \"country\": \"US\",                  // 2 letter representation of the phone number's country\r\n            \"code\": \"+1\",                     // The country calling code\r\n            \"number\": \"3123211212\"            // The phone number\r\n        }\r\n    },\r\n    \"coclient\": {                             // Data for the co-client of the account\r\n        \"first_name\": \"Jane\",                 // The first name\r\n        \"last_name\": \"Doe\",                   // The last name\r\n        \"email\": \"jane.doe@precisefp.com\",    // The email address\r\n        \"phone\": {                            // The mobile phone\r\n            \"country\": \"US\",                  // 2 letter representation of the phone number's country\r\n            \"code\": \"+1\",                     // The country calling code\r\n            \"number\": \"3123211414\"            // The phone number\r\n        }\r\n    },\r\n    \"pipeline\": {                                                                                       // Pipeline data for the account\r\n        \"id\": \"33e1d4b2-7243-4028-ad67-9bf4c171b057\"                                                    // Pipeline ID\r\n    },\r\n    \"favorited\": false,                                                                                 // If the account is favorited\r\n    \"archived\": false                                                                                   // If the account is archived\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60","description":"","type":"text"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 218,                                // The account ID\n    \"type\": \"client\",                         // The account type. Can be client or prospect\n    \"client\": {                               // Data for the main client of the account\n        \"id\": 299,                            // The ID for the main client of the account\n        \"first_name\": \"John\",                 // The first name\n        \"last_name\": \"Doe\",                   // The last name\n        \"email\": \"john.doe@precisefp.com\",    // The email address\n        \"phone\": {                            // The mobile phone\n            \"country\": \"US\",                  // 2 letter representation of the phone number's country\n            \"code\": \"+1\",                     // The country calling code\n            \"number\": \"3123211212\"            // The phone number\n        },\n        \"status\": \"new\"                       // The security status of this client. Can be new, active, or blocked\n    },\n    \"coclient\": {                             // Data for the co-client of the account\n        \"id\": 300,                            // The ID for the main client of the account\n        \"first_name\": \"Jane\",                 // The first name\n        \"last_name\": \"Doe\",                   // The last name\n        \"email\": \"jane.doe@precisefp.com\",    // The email address\n        \"phone\": {                            // The mobile phone\n            \"country\": \"US\",                  // 2 letter representation of the phone number's country\n            \"code\": \"+1\",                     // The country calling code\n            \"number\": \"3123211414\"            // The phone number\n        },\n        \"status\": \"new\"                       // The security status of this client. Can be new, active, or blocked\n    },\n    \"quality\": {                              // Data quality information\n        \"score\": 12,                          // Data quality score. From 0 to 100\n        \"rules\": [                            // Data quality rules. Each rule contains a message and a boolean that specifies if the rule is valid or not\n            {\n                \"message\": \"Email specified\",\n                \"valid\": true\n            },\n            {\n                \"message\": \"Mobile phone specified\",\n                \"valid\": true\n            },\n            {\n                \"message\": \"Birthdate not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Risk score not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Financial goals not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Income information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Fixed expenses not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Variable expenses not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Tax related expenses not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Insurance information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Retirement plan information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Asset information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Liability information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Estate planning information not specified\",\n                \"valid\": false\n            },\n            {\n                \"message\": \"Gender not specified\",\n                \"valid\": false\n            }\n        ]\n    },\n    \"pipeline\": {                                                                                       // Pipeline data for the account\n        \"id\": \"33e1d4b2-7243-4028-ad67-9bf4c171b057\",                                                   // Pipeline ID\n        \"title\": \"Onboard\",                                                                             // Pipeline title\n        \"description\": \"Gather the information required to understand your client's wants and needs.\",  // Pipeline description\n        \"icon\": \"i_users_cog\"                                                                           // Pipeline icon. See /config/icons\n    },\n    \"favorited\": false,                                                                                 // If the account is favorited\n    \"archived\": false,                                                                                  // If the account is archived\n    \"created_at\": \"2022-04-14 10:47:54\",                                                                // When the account was created\n    \"updated_at\": \"2022-04-14 10:47:54\"                                                                 // When the account was last updated\n}"}],"_postman_id":"f5c63874-0968-42ab-b60f-29404a5a122e"},{"name":"Delete Account","id":"9fbdbe97-a649-4250-9b92-5b14710f3811","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"password\": \"your_password_here\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}","description":"<p>Deletes an account record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"508bf18f-3688-42f6-b01e-0a872789ad5a","name":"Delete Account","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"password\": \"your_password_here\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9fbdbe97-a649-4250-9b92-5b14710f3811"},{"name":"Get Activity","id":"8f569d7e-0c82-4f97-acdb-ae21081c1dcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/activity?sort=-created_at&limit=50&offset=0&type","description":"<p>Returns an account's activity timeline.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","activity"],"host":["app.precisefp.com"],"query":[{"description":{"content":"<p>Sort by: type, created_at</p>\n","type":"text/plain"},"key":"sort","value":"-created_at"},{"description":{"content":"<p>Limit results</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Offset results</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"description":{"content":"<p>Filter results by activity type</p>\n","type":"text/plain"},"key":"type","value":null}],"variable":[]}},"response":[{"id":"e98016bf-1122-4eb4-a692-240e6dbcb709","name":"Get Activity","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/activity?sort=-created_at&limit=50&offset=0&type","protocol":"https","host":["app.precisefp.com"],"path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","activity"],"query":[{"key":"sort","value":"-created_at","description":"Sort by: type, created_at"},{"key":"limit","value":"50","description":"Limit results"},{"key":"offset","value":"0","description":"Offset results"},{"key":"type","value":null,"description":"Filter results by activity type"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [                                                                          // List of activity records\n        {\n            \"id\": 34174,                                                                // Activity id\n            \"type\": \"account.staged\",                                                   // Activity type. See config/activities\n            \"icon\": \"i_user_tag\",                                                       // Activity icon. See config/icons\n            \"description\": \"John Doe was moved to the Onboard pipeline stage\",          // Activity description\n            \"options\": {                                                                // Extra information for this activity record\n                \"author\": \"Charles Advisor\",                                            // The activity author\n                \"name\": \"John Doe\",                                                     // The client name affected\n                \"stage\": \"Onboard\"                                                      // The destination pipeline stage\n            },\n            \"created_at\": \"2022-04-14 11:57:56\"                                         // The activity creation date\n        },\n        {\n            \"id\": 34082,\n            \"type\": \"account.updated\",\n            \"icon\": \"i_user_check\",\n            \"description\": \"John Doe's profile was updated\",\n            \"options\": {\n                \"author\": \"Charles Advisor\",\n                \"name\": \"John Doe\"\n            },\n            \"created_at\": \"2022-04-12 12:42:21\"\n        },\n        {\n            \"id\": 3408261,\n            \"type\": \"account.created\",\n            \"icon\": \"i_user_plus\",\n            \"description\": \"John Doe was created as a Prospect\",\n            \"options\": {\n                \"author\": \"Charles Advisor\",\n                \"name\": \"John Doe\",\n                \"type\": \"prospect\"\n            },\n            \"created_at\": \"2022-04-12 12:41:52\"\n        }\n    ],\n    \"params\": {                                  // List of parameters\n        \"limit\": \"50\",                           // Max records returned (defaults to 50)\n        \"offset\": 4,                             // The offset for the next chunk of results\n        \"sort\": \"-created_at\",                   // The field used for sorting (the dash represents a descending sort)\n        \"type\": null,                            // The type filter used\n        \"total\": 4                               // The total amount of existing records\n    }\n}"}],"_postman_id":"8f569d7e-0c82-4f97-acdb-ae21081c1dcf"},{"name":"Get Profile","id":"b79e4407-aded-4d43-b6aa-a7cb2dc94508","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/profile","description":"<p>Returns an account's profile data.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","profile"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"2286244b-1ccf-4e00-8ec3-e5e45de25768","name":"Get Profile","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/profile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"[                                                                  // List of data fields from this account's profile\n    {                                                              // Profile field record\n        \"id\": \"70ffaf47-a92a-4fde-95a5-71816fbc84c0\",              // Profile field id\n        \"dataset_id\": \"ffca48cd-45ae-4695-9388-c10aa99f13e8\",      // The dataset field id this record belongs to. See config/dataset for field structure.\n        \"member_id\": 299,                                          // The client/co-client member id this record belongs to. If null, this record belongs to the household.\n        \"row_id\": \"94e6dc3b-d854-4686-8ea4-57c5d8ad732a\",          // The row id this record belongs to\n        \"type\": \"STRING\",                                          // The type of data this record holds\n        \"value\": \"John\"                                            // The data value for this record\n    },\n    {\n        \"id\": \"0213e30e-ae9f-46da-a151-fe20c201c554\",\n        \"dataset_id\": \"90cc0d96-1c41-483a-aeba-5dcbff12f3e7\",\n        \"member_id\": 299,\n        \"row_id\": \"94e6dc3b-d854-4686-8ea4-57c5d8ad732a\",\n        \"type\": \"STRING\",\n        \"value\": \"Doe\"\n    },\n    {\n        \"id\": \"2c0984da-a2e7-44bd-b73f-e97d0b47b2b2\",\n        \"dataset_id\": \"95edc940-5263-4517-986f-783d56077110\",\n        \"member_id\": 299,\n        \"row_id\": \"94e6dc3b-d854-4686-8ea4-57c5d8ad732a\",\n        \"type\": \"STRING\",\n        \"value\": \"john.doe@precisefp.com\"\n    },\n    {\n        \"id\": \"b9e40f60-b45d-4684-81fe-a539db1ef491\",\n        \"dataset_id\": \"a09c63ec-b551-4c98-9214-7f5210c7d54d\",\n        \"member_id\": 299,\n        \"row_id\": \"94e6dc3b-d854-4686-8ea4-57c5d8ad732a\",\n        \"type\": \"STRING\",\n        \"value\": \" John   Doe\"\n    }\n]"}],"_postman_id":"b79e4407-aded-4d43-b6aa-a7cb2dc94508"},{"name":"Update Profile","event":[{"listen":"prerequest","script":{"id":"9fd8a856-b55a-440e-8d64-9f9ba8be8ab4","exec":["/* Strip comments from json body */\r","if (pm?.request?.body?.options?.raw?.language === 'json') {\r","    const rawData = pm.request.body.toString();\r","    const strippedData = rawData.replace(\r","        /\\\\\"|\"(?:\\\\\"|[^\"])*\"|(\\/\\/.*|\\/\\*[\\s\\S]*?\\*\\/)/g,\r","        (m, g) => g ? \"\" : m\r","    );\r","    pm.request.body.update(JSON.stringify(JSON.parse(strippedData)));\r","    pm.request.headers.add('Content-Type: application/json');\r","}"],"type":"text/javascript","packages":{}}}],"id":"63286f46-27bf-487a-b07f-0eafb9871d08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"profile\": [\r\n        { //When updating a field that already exists in the profile, only the id and value are required.\r\n            \"id\": \"70ffaf47-a92a-4fde-95a5-71816fbc84c0\",           // Profile field id to update.\r\n            \"value\": \"John\"                                         // The data value for this field.\r\n        },\r\n        { //When updating a field that does not exist in the profile, the dataset_id, member_id, row_id and value are required.\r\n            \"dataset_id\": \"90cc0d96-1c41-483a-aeba-5dcbff12f3e7\",   // The id of the element in the dataset. See Config/Get Dataset.\r\n            \"member_id\": 372,                                       // The account member id the field belongs to. \r\n                                                                    // Set to null when the dataset element belongs to a household page.\r\n            \"row_id\": null,                                         // The row if the field belongs to.\r\n                                                                    // Set to null when the dataset element belongs to a single row group. \r\n                                                                    // Set to a valid UUID when updating/creating a field in a dataset \r\n                                                                    // element belonging to a multiple row group.\r\n            \"value\": \"Doe\"                                          // The value of the field. Find the corresponding dataset element in\r\n                                                                    // Config/Get Dataset to find to learn about accepted value formats and \r\n                                                                    // validation.\r\n        },\r\n        {\r\n            \"id\": \"2c0984da-a2e7-44bd-b73f-e97d0b47b2b2\",\r\n            \"dataset_id\": \"95edc940-5263-4517-986f-783d56077110\",\r\n            \"member_id\": 299,\r\n            \"row_id\": \"94e6dc3b-d854-4686-8ea4-57c5d8ad732a\",\r\n            \"value\": \"john.doe@precisefp.com\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/profile","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","profile"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"e5972307-7cea-403b-ae20-45d1522c85cf","name":"Update Profile","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"profile\": [\r\n        { //When updating a field that already exists in the profile, only the id and value are required.\r\n            \"id\": \"70ffaf47-a92a-4fde-95a5-71816fbc84c0\",           // Profile field id to update.\r\n            \"value\": \"John\"                                         // The data value for this field.\r\n        },\r\n        { //When updating a field that does not exist in the profile, the dataset_id, member_id, row_id and value are required.\r\n            \"dataset_id\": \"90cc0d96-1c41-483a-aeba-5dcbff12f3e7\",   // The id of the element in the dataset. See Config/Get Dataset.\r\n            \"member_id\": 299,                                       // The account member id the field belongs to. \r\n                                                                    // Set to null when the dataset element belongs to a household page.\r\n            \"row_id\": \"94e6dc3b-d854-4686-8ea4-57c5d8ad732a\",       // Set to null when the dataset element belongs to a single row group. \r\n                                                                    // Set to a valid UUID when updating/creating a field in a dataset \r\n                                                                    // element belonging to a multiple row group.\r\n            \"value\": \"Doe\"                                          // The value of the field. Find the corresponding dataset element in\r\n                                                                    // Config/Get Dataset to find to learn about accepted value formats and \r\n                                                                    // validation.\r\n        },\r\n        {\r\n            \"id\": \"2c0984da-a2e7-44bd-b73f-e97d0b47b2b2\",\r\n            \"dataset_id\": \"95edc940-5263-4517-986f-783d56077110\",\r\n            \"member_id\": 299,\r\n            \"row_id\": \"94e6dc3b-d854-4686-8ea4-57c5d8ad732a\",\r\n            \"value\": \"john.doe@precisefp.com\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/profile"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text","uuid":"61d2c438-6e74-430e-9be7-08f406095430"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"profile\": [\r\n        { //When updating a field that already exists in the profile, only the id and value are required.\r\n            \"id\": \"70ffaf47-a92a-4fde-95a5-71816fbc84c0\",           // Profile field id to update.\r\n            \"value\": \"John\"                                         // The data value for this field.\r\n        },\r\n        { //When updating a field that does not exist in the profile, the dataset_id, member_id, row_id and value are required.\r\n            \"dataset_id\": \"90cc0d96-1c41-483a-aeba-5dcbff12f3e7\",   // The id of the element in the dataset. See Config/Get Dataset.\r\n            \"member_id\": 372,                                       // The account member id the field belongs to. \r\n                                                                    // Set to null when the dataset element belongs to a household page.\r\n            \"row_id\": null,                                         // The row if the field belongs to.\r\n                                                                    // Set to null when the dataset element belongs to a single row group. \r\n                                                                    // Set to a valid UUID when updating/creating a field in a dataset \r\n                                                                    // element belonging to a multiple row group.\r\n            \"value\": \"Doe\"                                          // The value of the field. Find the corresponding dataset element in\r\n                                                                    // Config/Get Dataset to find to learn about accepted value formats and \r\n                                                                    // validation.\r\n        },\r\n        {\r\n            \"id\": \"2c0984da-a2e7-44bd-b73f-e97d0b47b2b2\",\r\n            \"dataset_id\": \"95edc940-5263-4517-986f-783d56077110\",\r\n            \"member_id\": 299,\r\n            \"row_id\": \"94e6dc3b-d854-4686-8ea4-57c5d8ad732a\",\r\n            \"value\": \"john.doe@precisefp.com\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"63286f46-27bf-487a-b07f-0eafb9871d08"},{"name":"Get Household Data","id":"bea0c269-f67f-42f7-b585-91b1c2c49128","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/4427/household","description":"<p>Returns an account's household data.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","4427","household"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"2a7eff77-6902-4d52-a7ee-227ce207c57f","name":"Get Household Data","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/household"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"Household\": {                                       // The household information for this account. See config/classifications for field structure\n        \"Notes\": \"Household information\",                // Household field and value\n        \"AdditionalInfo\": \"Additional information\",      // Household field and value\n        \"TotalTaxes\": null,                              // Household field and value\n        \"Networth\": \"1560000.0000\"                       // Household field and value\n    }\n}"}],"_postman_id":"bea0c269-f67f-42f7-b585-91b1c2c49128"},{"name":"Update Household Data","event":[{"listen":"prerequest","script":{"id":"07ad7225-46e3-41b1-96df-a317bd655009","exec":["/* Strip comments from json body */\r","if (pm?.request?.body?.options?.raw?.language === 'json') {\r","    const rawData = pm.request.body.toString();\r","    const strippedData = rawData.replace(\r","        /\\\\\"|\"(?:\\\\\"|[^\"])*\"|(\\/\\/.*|\\/\\*[\\s\\S]*?\\*\\/)/g,\r","        (m, g) => g ? \"\" : m\r","    );\r","    pm.request.body.update(JSON.stringify(JSON.parse(strippedData)));\r","    pm.request.headers.add('Content-Type: application/json');\r","}"],"type":"text/javascript"}}],"id":"f7e36f92-8ea4-4754-9fa4-64c9830766fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Household\": {                                       // The household information for this account. See config/classifications for field structure\r\n        \"Notes\": \"Updated household information\",        // Household field and value\r\n        \"TotalTaxes\": \"100000.0000\"                      // Household field and value\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/household","description":"<p>Updates an account's household data.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","household"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"f164b903-f2a7-4de8-9497-80d047adfeb8","name":"Update Household Data","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Household\": {                                       // The household information for this account. See config/classifications for field structure\r\n        \"Notes\": \"Updated household information\",        // Household field and value\r\n        \"TotalTaxes\": \"100000.0000\"                      // Household field and value\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/household"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"Household\": {                                       // The household information for this account. See config/classifications for field structure\n        \"Notes\": \"Updated household information\",        // Household field and value\n        \"AdditionalInfo\": \"Additional information\",      // Household field and value\n        \"TotalTaxes\": \"100000.0000\",                     // Household field and value\n        \"Networth\": \"1560000.0000\"                       // Household field and value\n    }\n}"}],"_postman_id":"f7e36f92-8ea4-4754-9fa4-64c9830766fd"},{"name":"Get Persons","id":"1b841800-dc60-4d1b-9272-7110afd7fe1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/persons","description":"<p>Returns an account's person list.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","persons"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"d8e10594-0b0a-4cf9-bd40-66242ce76b35","name":"Get Persons","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/persons"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"Person\": [                                                          // The person list for this account. See config/classifications for field structure\n        {\n            \"_id\": \"94b0a70c-31c9-4786-acfc-5f7c2e1e5d6e||client\",       // The unique id for the person record\n            \"_group\": \"client\",                                          // The group id for the person record\n            \"FullName\": \" John  F  Doe\",                                 // Person field and value\n            \"FirstName\": \"John\",                                         // Person field and value\n            \"MiddleName\": \"F\",                                           // Person field and value\n            \"LastName\": \"Doe\",                                           // Person field and value\n            \"Gender\": [                                                  // Person field and value\n                \"M\"\n            ],\n            \"Birthdate\": \"1975-05-17 00:00:00\",                          // Person field and value\n            \"Age\": \"46\",                                                 // Person field and value\n            \"MaritalStatus\": \"married\",                                  // Person field and value\n            \"Citizenship\": {                                             // Person field and value\n                \"address1\": null,\n                \"address2\": null,\n                \"city\": null,\n                \"zip\": null,\n                \"state\": null,\n                \"country\": \"US\"\n            },\n            \"Email\": \"john.doe@precisefp.com\",                            // Person field and value\n            \"MobilePhone\": \"+13123121232\",                                // Person field and value\n            \"HomePhone\": null,                                            // Person field and value\n            \"WorkPhone\": null,                                            // Person field and value\n            \"Address\": {                                                  // Person field and value\n                \"address1\": \"Smith Street 3123\",\n                \"address2\": null,\n                \"city\": \"Atlanta\",\n                \"zip\": \"0108\",\n                \"state\": \"GA\",\n                \"country\": \"US\"\n            },\n            \"DriversLicenseNumber\": null,                                  // Person field and value\n            \"DriversLicenseIssueDate\": null,                               // Person field and value\n            \"DriversLicenseExpireDate\": null,                              // Person field and value\n            \"DriversLicenseJurisdiction\": null,                            // Person field and value\n            \"RiskScore\": null,                                             // Person field and value\n            \"Employer\": null,                                              // Person field and value\n            \"EmploymentPosition\": null,                                    // Person field and value\n            \"EmploymentYears\": null,                                       // Person field and value\n            \"EmploymentAddress\": null,                                     // Person field and value\n            \"EmploymentSalary\": null,                                      // Person field and value\n            \"EmploymentCommissions\": null,                                 // Person field and value\n            \"IncomeEmploymentTotal\": null,                                 // Person field and value\n            \"IncomeSelfEmployment\": null,                                  // Person field and value\n            \"IncomePensionsAndAnnuities\": null,                            // Person field and value\n            \"IncomeSocialSecurity\": null,                                  // Person field and value\n            \"IncomeCashDividends\": null,                                   // Person field and value\n            \"IncomeInterest\": null,                                        // Person field and value\n            \"IncomeOther\": null,                                           // Person field and value\n            \"IncomeTotal\": null,                                           // Person field and value\n            \"HasOutstandingStockOptions\": null,                            // Person field and value\n            \"PlannedRetirementAge\": null,                                  // Person field and value\n            \"IsDependent\": null,                                           // Person field and value\n            \"CollegeType\": null,                                           // Person field and value\n            \"CollegeStartYear\": null,                                      // Person field and value\n            \"CollegeEndYear\": null                                         // Person field and value\n        },\n        {\n            \"_id\": \"94b0a70c-31c9-4786-acfc-5f7c2e1e5d6e||coclient\",\n            \"_group\": \"coclient\",\n            \"FullName\": \" Jane   Doe\",\n            \"FirstName\": \"Jane\",\n            \"MiddleName\": null,\n            \"LastName\": \"Doe\",\n            \"Gender\": [\n                \"M\"\n            ],\n            \"Birthdate\": \"1990-05-19 00:00:00\",\n            \"Age\": \"31\",\n            \"MaritalStatus\": null,\n            \"Citizenship\": null,\n            \"Email\": \"jane.doe@precisefp.com\",\n            \"MobilePhone\": \"+13123121414\",\n            \"HomePhone\": null,\n            \"WorkPhone\": null,\n            \"Address\": null,\n            \"DriversLicenseNumber\": null,\n            \"DriversLicenseIssueDate\": null,\n            \"DriversLicenseExpireDate\": null,\n            \"DriversLicenseJurisdiction\": null,\n            \"RiskScore\": null,\n            \"Employer\": null,\n            \"EmploymentPosition\": null,\n            \"EmploymentYears\": null,\n            \"EmploymentAddress\": null,\n            \"EmploymentSalary\": null,\n            \"EmploymentCommissions\": null,\n            \"IncomeEmploymentTotal\": null,\n            \"IncomeSelfEmployment\": null,\n            \"IncomePensionsAndAnnuities\": null,\n            \"IncomeSocialSecurity\": null,\n            \"IncomeCashDividends\": null,\n            \"IncomeInterest\": null,\n            \"IncomeOther\": null,\n            \"IncomeTotal\": null,\n            \"HasOutstandingStockOptions\": null,\n            \"PlannedRetirementAge\": null,\n            \"IsDependent\": null,\n            \"CollegeType\": null,\n            \"CollegeStartYear\": null,\n            \"CollegeEndYear\": null\n        },\n        {\n            \"_id\": \"858eaa38-5191-4a1c-9f1f-1fcd4f47291c|94e6dc3b-d854-4686-8ea4-57c5d8ad732a|71876096-aa84-4fe5-9362-77e3296c6680\",\n            \"_group\": \"71876096-aa84-4fe5-9362-77e3296c6680\",\n            \"FullName\": \" John   Doe Jr.\",\n            \"FirstName\": \"John\",\n            \"MiddleName\": null,\n            \"LastName\": \"Doe Jr.\",\n            \"Gender\": [\n                \"M\"\n            ],\n            \"Birthdate\": \"2017-05-19 00:00:00\",\n            \"Age\": \"4\",\n            \"MaritalStatus\": null,\n            \"Citizenship\": null,\n            \"Email\": null,\n            \"MobilePhone\": \"+13123121232\",\n            \"HomePhone\": null,\n            \"WorkPhone\": null,\n            \"Address\": null,\n            \"DriversLicenseNumber\": null,\n            \"DriversLicenseIssueDate\": null,\n            \"DriversLicenseExpireDate\": null,\n            \"DriversLicenseJurisdiction\": null,\n            \"RiskScore\": null,\n            \"Employer\": null,\n            \"EmploymentPosition\": null,\n            \"EmploymentYears\": null,\n            \"EmploymentAddress\": null,\n            \"EmploymentSalary\": null,\n            \"EmploymentCommissions\": null,\n            \"IncomeEmploymentTotal\": null,\n            \"IncomeSelfEmployment\": null,\n            \"IncomePensionsAndAnnuities\": null,\n            \"IncomeSocialSecurity\": null,\n            \"IncomeCashDividends\": null,\n            \"IncomeInterest\": null,\n            \"IncomeOther\": null,\n            \"IncomeTotal\": null,\n            \"HasOutstandingStockOptions\": null,\n            \"PlannedRetirementAge\": null,\n            \"IsDependent\": [\n                \"yes\"\n            ],\n            \"CollegeType\": null,\n            \"CollegeStartYear\": null,\n            \"CollegeEndYear\": null\n        }\n    ]\n}"}],"_postman_id":"1b841800-dc60-4d1b-9272-7110afd7fe1a"},{"name":"Create Person","event":[{"listen":"prerequest","script":{"id":"c78734d0-c321-45fd-9eb7-10ef22bc6e39","exec":["/* Strip comments from json body */\r","if (pm?.request?.body?.options?.raw?.language === 'json') {\r","    const rawData = pm.request.body.toString();\r","    const strippedData = rawData.replace(\r","        /\\\\\"|\"(?:\\\\\"|[^\"])*\"|(\\/\\/.*|\\/\\*[\\s\\S]*?\\*\\/)/g,\r","        (m, g) => g ? \"\" : m\r","    );\r","    pm.request.body.update(JSON.stringify(JSON.parse(strippedData)));\r","    pm.request.headers.add('Content-Type: application/json');\r","}"],"type":"text/javascript"}}],"id":"8f315f3c-cf9c-477e-b95d-0ed5ce7f0d2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Person\": {                                               // The person record to create\r\n        \"_group\": \"2ea879f5-8cc2-4621-9014-87984aa693bd\",     // The group this person belongs to\r\n        \"FirstName\": \"Lisa\",                                  // Person field and value\r\n        \"MiddleName\": \"Maria\",                                // Person field and value\r\n        \"LastName\": \"Doe\"                                     // Person field and value\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/persons?debug=false","description":"<p>Creates a new person record in a specified account.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","persons"],"host":["app.precisefp.com"],"query":[{"description":{"content":"<p>Return debug information.</p>\n","type":"text/plain"},"key":"debug","value":"false"}],"variable":[]}},"response":[{"id":"96ebeed3-6fe3-4fc9-82bc-5d1547a5bc2f","name":"Create Person","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Person\": {                                               // The person record to create\r\n        \"_group\": \"2ea879f5-8cc2-4621-9014-87984aa693bd\",     // The group this person belongs to\r\n        \"FirstName\": \"Lisa\",                                  // Person field and value\r\n        \"MiddleName\": \"Maria\",                                // Person field and value\r\n        \"LastName\": \"Doe\"                                     // Person field and value\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/persons?debug=false","protocol":"https","host":["app.precisefp.com"],"path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","persons"],"query":[{"key":"debug","value":"false","description":"Return debug information."}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"Person\": {\n        \"_id\": \"858eaa38-5191-4a1c-9f1f-1fcd4f47291c|508af20e-c049-4dfb-95b9-ff16178c7002|2ea879f5-8cc2-4621-9014-87984aa693bd\", // The unique id for the person record\n        \"_group\": \"2ea879f5-8cc2-4621-9014-87984aa693bd\",                                                                        // The group id for the person record\n        \"FullName\": \" Lisa Maria Doe\",                                                                                           // Person field and value\n        \"FirstName\": \"Lisa\",                                                                                                     // Person field and value\n        \"MiddleName\": \"Maria\",                                                                                                   // Person field and value\n        \"LastName\": \"Doe\",                                                                                                       // Person field and value\n        \"Gender\": null,                                                                                                          // Person field and value\n        \"Birthdate\": null,                                                                                                       // Person field and value\n        \"Age\": null,                                                                                                             // Person field and value\n        \"MaritalStatus\": null,                                                                                                   // Person field and value\n        \"Citizenship\": null,                                                                                                     // Person field and value\n        \"Email\": null,                                                                                                           // Person field and value\n        \"MobilePhone\": null,                                                                                                     // Person field and value\n        \"HomePhone\": null,                                                                                                       // Person field and value\n        \"WorkPhone\": null,                                                                                                       // Person field and value\n        \"Address\": null,                                                                                                         // Person field and value\n        \"DriversLicenseNumber\": null,                                                                                            // Person field and value\n        \"DriversLicenseIssueDate\": null,                                                                                         // Person field and value\n        \"DriversLicenseExpireDate\": null,                                                                                        // Person field and value\n        \"DriversLicenseJurisdiction\": null,                                                                                      // Person field and value\n        \"RiskScore\": null,                                                                                                       // Person field and value\n        \"Employer\": null,                                                                                                        // Person field and value\n        \"EmploymentPosition\": null,                                                                                              // Person field and value\n        \"EmploymentYears\": null,                                                                                                 // Person field and value\n        \"EmploymentAddress\": null,                                                                                               // Person field and value\n        \"EmploymentSalary\": null,                                                                                                // Person field and value\n        \"EmploymentCommissions\": null,                                                                                           // Person field and value\n        \"IncomeEmploymentTotal\": null,                                                                                           // Person field and value\n        \"IncomeSelfEmployment\": null,                                                                                            // Person field and value\n        \"IncomePensionsAndAnnuities\": null,                                                                                      // Person field and value\n        \"IncomeSocialSecurity\": null,                                                                                            // Person field and value\n        \"IncomeCashDividends\": null,                                                                                             // Person field and value\n        \"IncomeInterest\": null,                                                                                                  // Person field and value\n        \"IncomeOther\": null,                                                                                                     // Person field and value\n        \"IncomeTotal\": null,                                                                                                     // Person field and value\n        \"HasOutstandingStockOptions\": null,                                                                                      // Person field and value\n        \"PlannedRetirementAge\": null,                                                                                            // Person field and value\n        \"IsDependent\": null,                                                                                                     // Person field and value\n        \"CollegeType\": null,                                                                                                     // Person field and value\n        \"CollegeStartYear\": null,                                                                                                // Person field and value\n        \"CollegeEndYear\": null                                                                                                   // Person field and value\n    }\n}"}],"_postman_id":"8f315f3c-cf9c-477e-b95d-0ed5ce7f0d2a"},{"name":"Get Person","id":"d8ff46d2-4711-4465-b2de-1a1ffd8e2aa3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/persons/{INSERT_PERSON_ID_HERE}","description":"<p>Returns and account's person record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","persons","{INSERT_PERSON_ID_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"43b790e8-f260-45d8-96fd-0a6aec21d01d","name":"Get Person","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/persons/{INSERT_PERSON_ID_HERE}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"Person\": {                                                      // The person record. See config/classifications for field structure\n        \"_id\": \"94b0a70c-31c9-4786-acfc-5f7c2e1e5d6e||client\",       // The unique id for the person record\n        \"_group\": \"client\",                                          // The group id for the person record\n        \"FullName\": \" John  F  Doe\",                                 // Person field and value\n        \"FirstName\": \"John\",                                         // Person field and value\n        \"MiddleName\": \"F\",                                           // Person field and value\n        \"LastName\": \"Doe\",                                           // Person field and value\n        \"Gender\": [                                                  // Person field and value\n            \"M\"\n        ],\n        \"Birthdate\": \"1975-05-17 00:00:00\",                          // Person field and value\n        \"Age\": \"46\",                                                 // Person field and value\n        \"MaritalStatus\": \"married\",                                  // Person field and value\n        \"Citizenship\": {                                             // Person field and value\n            \"address1\": null,\n            \"address2\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"state\": null,\n            \"country\": \"US\"\n        },\n        \"Email\": \"john.doe@precisefp.com\",                            // Person field and value\n        \"MobilePhone\": \"+13123121232\",                                // Person field and value\n        \"HomePhone\": null,                                            // Person field and value\n        \"WorkPhone\": null,                                            // Person field and value\n        \"Address\": {                                                  // Person field and value\n            \"address1\": \"Smith Street 3123\",\n            \"address2\": null,\n            \"city\": \"Atlanta\",\n            \"zip\": \"0108\",\n            \"state\": \"GA\",\n            \"country\": \"US\"\n        },\n        \"DriversLicenseNumber\": null,                                  // Person field and value\n        \"DriversLicenseIssueDate\": null,                               // Person field and value\n        \"DriversLicenseExpireDate\": null,                              // Person field and value\n        \"DriversLicenseJurisdiction\": null,                            // Person field and value\n        \"RiskScore\": null,                                             // Person field and value\n        \"Employer\": null,                                              // Person field and value\n        \"EmploymentPosition\": null,                                    // Person field and value\n        \"EmploymentYears\": null,                                       // Person field and value\n        \"EmploymentAddress\": null,                                     // Person field and value\n        \"EmploymentSalary\": null,                                      // Person field and value\n        \"EmploymentCommissions\": null,                                 // Person field and value\n        \"IncomeEmploymentTotal\": null,                                 // Person field and value\n        \"IncomeSelfEmployment\": null,                                  // Person field and value\n        \"IncomePensionsAndAnnuities\": null,                            // Person field and value\n        \"IncomeSocialSecurity\": null,                                  // Person field and value\n        \"IncomeCashDividends\": null,                                   // Person field and value\n        \"IncomeInterest\": null,                                        // Person field and value\n        \"IncomeOther\": null,                                           // Person field and value\n        \"IncomeTotal\": null,                                           // Person field and value\n        \"HasOutstandingStockOptions\": null,                            // Person field and value\n        \"PlannedRetirementAge\": null,                                  // Person field and value\n        \"IsDependent\": null,                                           // Person field and value\n        \"CollegeType\": null,                                           // Person field and value\n        \"CollegeStartYear\": null,                                      // Person field and value\n        \"CollegeEndYear\": null                                         // Person field and value\n    }\n}"}],"_postman_id":"d8ff46d2-4711-4465-b2de-1a1ffd8e2aa3"},{"name":"Update Person","event":[{"listen":"prerequest","script":{"id":"2be71b12-e470-4f36-a8a8-dac5469a462f","exec":["/* Strip comments from json body */\r","if (pm?.request?.body?.options?.raw?.language === 'json') {\r","    const rawData = pm.request.body.toString();\r","    const strippedData = rawData.replace(\r","        /\\\\\"|\"(?:\\\\\"|[^\"])*\"|(\\/\\/.*|\\/\\*[\\s\\S]*?\\*\\/)/g,\r","        (m, g) => g ? \"\" : m\r","    );\r","    pm.request.body.update(JSON.stringify(JSON.parse(strippedData)));\r","    pm.request.headers.add('Content-Type: application/json');\r","}"],"type":"text/javascript"}}],"id":"c0ab19b3-a69d-4ae4-93a8-1b87d6ef6139","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Person\": {                                                      // The person record. See config/classifications for field structure\r\n        \"_id\": \"94b0a70c-31c9-4786-acfc-5f7c2e1e5d6e||client\",       // The unique id for the person record\r\n        \"_group\": \"client\",                                          // The group id for the person record\r\n        \"FullName\": \" John  C  Doe\",                                 // Person field and value\r\n        \"FirstName\": \"John\",                                         // Person field and value\r\n        \"MiddleName\": \"C\",                                           // Person field and value\r\n        \"LastName\": \"Doe\",                                           // Person field and value\r\n        \"Gender\": [                                                  // Person field and value\r\n            \"M\"\r\n        ],\r\n        \"Birthdate\": \"1980-02-02 00:00:00\",                          // Person field and value\r\n        \"Age\": \"42\",                                                 // Person field and value\r\n        \"MaritalStatus\": \"married\",                                  // Person field and value\r\n        \"Citizenship\": {                                             // Person field and value\r\n            \"address1\": null,\r\n            \"address2\": null,\r\n            \"city\": null,\r\n            \"zip\": null,\r\n            \"state\": null,\r\n            \"country\": \"US\"\r\n        },\r\n        \"Email\": \"john.doe@precisefp.com\",                            // Person field and value\r\n        \"MobilePhone\": \"+13123121232\",                                // Person field and value\r\n        \"HomePhone\": \"+13213211313\",                                  // Person field and value\r\n        \"WorkPhone\": \"+13213211414\",                                  // Person field and value\r\n        \"Address\": {                                                  // Person field and value\r\n            \"address1\": \"Smith Street 3123\",\r\n            \"address2\": null,\r\n            \"city\": \"Atlanta\",\r\n            \"zip\": \"0108\",\r\n            \"state\": \"GA\",\r\n            \"country\": \"US\"\r\n        },\r\n        \"DriversLicenseNumber\": \"123456789\",                           // Person field and value\r\n        \"DriversLicenseIssueDate\": null,                               // Person field and value\r\n        \"DriversLicenseExpireDate\": null,                              // Person field and value\r\n        \"DriversLicenseJurisdiction\": \"GA\",                            // Person field and value\r\n        \"RiskScore\": \"57\",                                             // Person field and value\r\n        \"Employer\": \"Smith Company\",                                   // Person field and value\r\n        \"EmploymentPosition\": \"Analyst\",                               // Person field and value\r\n        \"EmploymentYears\": \"6\",                                        // Person field and value\r\n        \"EmploymentAddress\": \"Smith Street 2416\",                      // Person field and value\r\n        \"EmploymentSalary\": \"95000.000\",                               // Person field and value\r\n        \"EmploymentCommissions\": null,                                 // Person field and value\r\n        \"IncomeEmploymentTotal\": null,                                 // Person field and value\r\n        \"IncomeSelfEmployment\": null,                                  // Person field and value\r\n        \"IncomePensionsAndAnnuities\": null,                            // Person field and value\r\n        \"IncomeSocialSecurity\": null,                                  // Person field and value\r\n        \"IncomeCashDividends\": null,                                   // Person field and value\r\n        \"IncomeInterest\": null,                                        // Person field and value\r\n        \"IncomeOther\": null,                                           // Person field and value\r\n        \"IncomeTotal\": null,                                           // Person field and value\r\n        \"HasOutstandingStockOptions\": null,                            // Person field and value\r\n        \"PlannedRetirementAge\": null,                                  // Person field and value\r\n        \"IsDependent\": null,                                           // Person field and value\r\n        \"CollegeType\": null,                                           // Person field and value\r\n        \"CollegeStartYear\": null,                                      // Person field and value\r\n        \"CollegeEndYear\": null                                         // Person field and value\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/persons/{INSERT_PERSON_ID_HERE}?debug=false","description":"<p>Updates and account's person record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","persons","{INSERT_PERSON_ID_HERE}"],"host":["app.precisefp.com"],"query":[{"description":{"content":"<p>Return debug information.</p>\n","type":"text/plain"},"key":"debug","value":"false"}],"variable":[]}},"response":[{"id":"232965ec-725f-402d-9a38-72b38d0115b1","name":"Update Person","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Person\": {                                                      // The person record. See config/classifications for field structure\r\n        \"_id\": \"94b0a70c-31c9-4786-acfc-5f7c2e1e5d6e||client\",       // The unique id for the person record\r\n        \"_group\": \"client\",                                          // The group id for the person record\r\n        \"FullName\": \" John  C  Doe\",                                 // Person field and value\r\n        \"FirstName\": \"John\",                                         // Person field and value\r\n        \"MiddleName\": \"C\",                                           // Person field and value\r\n        \"LastName\": \"Doe\",                                           // Person field and value\r\n        \"Gender\": [                                                  // Person field and value\r\n            \"M\"\r\n        ],\r\n        \"Birthdate\": \"1980-02-02 00:00:00\",                          // Person field and value\r\n        \"Age\": \"42\",                                                 // Person field and value\r\n        \"MaritalStatus\": \"married\",                                  // Person field and value\r\n        \"Citizenship\": {                                             // Person field and value\r\n            \"address1\": null,\r\n            \"address2\": null,\r\n            \"city\": null,\r\n            \"zip\": null,\r\n            \"state\": null,\r\n            \"country\": \"US\"\r\n        },\r\n        \"Email\": \"john.doe@precisefp.com\",                            // Person field and value\r\n        \"MobilePhone\": \"+13123121232\",                                // Person field and value\r\n        \"HomePhone\": \"+13213211313\",                                  // Person field and value\r\n        \"WorkPhone\": \"+13213211414\",                                  // Person field and value\r\n        \"Address\": {                                                  // Person field and value\r\n            \"address1\": \"Smith Street 3123\",\r\n            \"address2\": null,\r\n            \"city\": \"Atlanta\",\r\n            \"zip\": \"0108\",\r\n            \"state\": \"GA\",\r\n            \"country\": \"US\"\r\n        },\r\n        \"DriversLicenseNumber\": \"123456789\",                           // Person field and value\r\n        \"DriversLicenseIssueDate\": null,                               // Person field and value\r\n        \"DriversLicenseExpireDate\": null,                              // Person field and value\r\n        \"DriversLicenseJurisdiction\": \"GA\",                            // Person field and value\r\n        \"RiskScore\": \"57\",                                             // Person field and value\r\n        \"Employer\": \"Smith Company\",                                   // Person field and value\r\n        \"EmploymentPosition\": \"Analyst\",                               // Person field and value\r\n        \"EmploymentYears\": \"6\",                                        // Person field and value\r\n        \"EmploymentAddress\": \"Smith Street 2416\",                      // Person field and value\r\n        \"EmploymentSalary\": \"95000.000\",                               // Person field and value\r\n        \"EmploymentCommissions\": null,                                 // Person field and value\r\n        \"IncomeEmploymentTotal\": null,                                 // Person field and value\r\n        \"IncomeSelfEmployment\": null,                                  // Person field and value\r\n        \"IncomePensionsAndAnnuities\": null,                            // Person field and value\r\n        \"IncomeSocialSecurity\": null,                                  // Person field and value\r\n        \"IncomeCashDividends\": null,                                   // Person field and value\r\n        \"IncomeInterest\": null,                                        // Person field and value\r\n        \"IncomeOther\": null,                                           // Person field and value\r\n        \"IncomeTotal\": null,                                           // Person field and value\r\n        \"HasOutstandingStockOptions\": null,                            // Person field and value\r\n        \"PlannedRetirementAge\": null,                                  // Person field and value\r\n        \"IsDependent\": null,                                           // Person field and value\r\n        \"CollegeType\": null,                                           // Person field and value\r\n        \"CollegeStartYear\": null,                                      // Person field and value\r\n        \"CollegeEndYear\": null                                         // Person field and value\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/persons/{INSERT_PERSON_ID_HERE}?debug=false","protocol":"https","host":["app.precisefp.com"],"path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","persons","{INSERT_PERSON_ID_HERE}"],"query":[{"key":"debug","value":"false","description":"Return debug information."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"Person\": {                                                      // The person record. See config/classifications for field structure\n        \"_id\": \"94b0a70c-31c9-4786-acfc-5f7c2e1e5d6e||client\",       // The unique id for the person record\n        \"_group\": \"client\",                                          // The group id for the person record\n        \"FullName\": \" John  C  Doe\",                                 // Person field and value\n        \"FirstName\": \"John\",                                         // Person field and value\n        \"MiddleName\": \"C\",                                           // Person field and value\n        \"LastName\": \"Doe\",                                           // Person field and value\n        \"Gender\": [                                                  // Person field and value\n            \"M\"\n        ],\n        \"Birthdate\": \"1980-02-02 00:00:00\",                          // Person field and value\n        \"Age\": \"42\",                                                 // Person field and value\n        \"MaritalStatus\": \"married\",                                  // Person field and value\n        \"Citizenship\": {                                             // Person field and value\n            \"address1\": null,\n            \"address2\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"state\": null,\n            \"country\": \"US\"\n        },\n        \"Email\": \"john.doe@precisefp.com\",                            // Person field and value\n        \"MobilePhone\": \"+13123121232\",                                // Person field and value\n        \"HomePhone\": \"+13213211313\",                                  // Person field and value\n        \"WorkPhone\": \"+13213211414\",                                  // Person field and value\n        \"Address\": {                                                  // Person field and value\n            \"address1\": \"Smith Street 3123\",\n            \"address2\": null,\n            \"city\": \"Atlanta\",\n            \"zip\": \"0108\",\n            \"state\": \"GA\",\n            \"country\": \"US\"\n        },\n        \"DriversLicenseNumber\": \"123456789\",                           // Person field and value\n        \"DriversLicenseIssueDate\": null,                               // Person field and value\n        \"DriversLicenseExpireDate\": null,                              // Person field and value\n        \"DriversLicenseJurisdiction\": \"GA\",                            // Person field and value\n        \"RiskScore\": \"57\",                                             // Person field and value\n        \"Employer\": \"Smith Company\",                                   // Person field and value\n        \"EmploymentPosition\": \"Analyst\",                               // Person field and value\n        \"EmploymentYears\": \"6\",                                        // Person field and value\n        \"EmploymentAddress\": \"Smith Street 2416\",                      // Person field and value\n        \"EmploymentSalary\": \"95000.0000\",                               // Person field and value\n        \"EmploymentCommissions\": null,                                 // Person field and value\n        \"IncomeEmploymentTotal\": null,                                 // Person field and value\n        \"IncomeSelfEmployment\": null,                                  // Person field and value\n        \"IncomePensionsAndAnnuities\": null,                            // Person field and value\n        \"IncomeSocialSecurity\": null,                                  // Person field and value\n        \"IncomeCashDividends\": null,                                   // Person field and value\n        \"IncomeInterest\": null,                                        // Person field and value\n        \"IncomeOther\": null,                                           // Person field and value\n        \"IncomeTotal\": null,                                           // Person field and value\n        \"HasOutstandingStockOptions\": null,                            // Person field and value\n        \"PlannedRetirementAge\": null,                                  // Person field and value\n        \"IsDependent\": null,                                           // Person field and value\n        \"CollegeType\": null,                                           // Person field and value\n        \"CollegeStartYear\": null,                                      // Person field and value\n        \"CollegeEndYear\": null                                         // Person field and value\n    }\n}"}],"_postman_id":"c0ab19b3-a69d-4ae4-93a8-1b87d6ef6139"},{"name":"Delete Person","id":"786c141b-0f91-4d73-9753-e9483c982104","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"password\": \"your_password_here\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/persons/{INSERT_PERSON_ID_HERE}","description":"<p>Deletes an account's person record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","persons","{INSERT_PERSON_ID_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"19e0cadd-c360-4235-8f33-7767f2126466","name":"Delete Person","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"password\": \"your_password_here\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/persons/{INSERT_PERSON_ID_HERE}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"786c141b-0f91-4d73-9753-e9483c982104"},{"name":"Get Secondary Contacts","event":[{"listen":"prerequest","script":{"id":"daa3261f-94ea-489f-a693-e07da3cd0e97","exec":[""],"type":"text/javascript"}}],"id":"ef926a92-91d9-4ca0-880a-eb2cc7cd510e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/secondary-contacts","description":"<p>Returns an account's secondary contacts.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","secondary-contacts"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"8dd99fca-410e-488a-b9a4-b7620e39ea32","name":"Get Secondary Contacts","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/secondary-contacts"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 51,                        // The secondary contact's ID\n        \"code\": \"nluymp\",                // The secondary contact's code\n        \"first_name\": \"Jane\",            // The first name\n        \"last_name\": \"Doe\",              // The last name\n        \"name\": \"Jane Doe\",              // The name\n        \"email\": \"test1@precisefp.com\",  // The email\n        \"phone\": {                       // The mobile phone\n            \"code\": \"+1\",                // The country calling code\n            \"number\": \"3123211212\",      // The phone number\n            \"country\": \"US\"              // 2 letter representation of the phone number's country\n        },\n        \"group\": null,                   // The secondary contact's group\n        \"team_contact_id\": null          // The master secondary contact ID - used when we want to\n                                         // import secondary contact from team\n    }\n]"}],"_postman_id":"ef926a92-91d9-4ca0-880a-eb2cc7cd510e"},{"name":"Create Secondary Contact","event":[{"listen":"prerequest","script":{"id":"daa3261f-94ea-489f-a693-e07da3cd0e97","exec":[""],"type":"text/javascript"}}],"id":"e72b3dad-2644-47ee-9fe1-487a91664f97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",           // The first name\n    \"last_name\": \"Doe\",             // The last name\n    \"email\": \"test@precisefp.com\",  // The email\n    \"phone\": {                      // The mobile phone\n        \"code\": \"+1\",               // The country calling code\n        \"number\": \"3123211212\",     // The phone number\n        \"country\": \"US\"             // 2 letter representation of the phone number's country\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/secondary-contacts","description":"<p>Creates secondary contact for an account.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","secondary-contacts"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"1e83988f-3d81-4080-aba9-c860d17d1180","name":"Create Secondary Contact","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",           // The first name\n    \"last_name\": \"Doe\",             // The last name\n    \"email\": \"test@precisefp.com\",  // The email\n    \"phone\": {                      // The mobile phone\n        \"code\": \"+1\",               // The country calling code\n        \"number\": \"3123211212\",     // The phone number\n        \"country\": \"US\"             // 2 letter representation of the phone number's country\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/secondary-contacts"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 53,                       // The secondary contact's ID\n    \"code\": \"aoto1b\",               // The secondary contact's code\n    \"first_name\": \"John\",           // The first name\n    \"last_name\": \"Doe\",             // The last name\n    \"name\": \"John Doe\",             // The name\n    \"email\": \"test@precisefp.com\",  // The email\n    \"phone\": {                      // The mobile phone\n        \"code\": \"+1\",               // The country calling code\n        \"number\": \"3123211212\",     // The phone number\n        \"country\": \"US\"             // 2 letter representation of the phone number's country\n    },\n    \"group\": null,                  //The secondary contact's group\n    \"team_contact_id\": null         // The master secondary contact ID - used when we want to\n                                    // import secondary contact from team\n}"}],"_postman_id":"e72b3dad-2644-47ee-9fe1-487a91664f97"},{"name":"Update Secondary Contact","event":[{"listen":"prerequest","script":{"id":"daa3261f-94ea-489f-a693-e07da3cd0e97","exec":[""],"type":"text/javascript","packages":{}}}],"id":"ec8f81fa-a5c7-4330-bc43-a2696da9d3a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"code\": \"nluymp\",                // The secondary contact's code\n    \"first_name\": \"Jane\",            // The first name\n    \"last_name\": \"Doe\",              // The last name\n    \"name\": \"Jane Doe\",              // The name\n    \"email\": \"test1@precisefp.com\",  // The email\n    \"phone\": {                       // The mobile phone\n        \"code\": \"+1\",                // The country calling code\n        \"number\": \"3123211212\",      // The phone number\n        \"country\": \"US\"              // 2 letter representation of the phone number's country\n    },\n    \"group\": null,                   // The secondary contact's group\n    \"team_contact_id\": null          // The master secondary contact ID - used when we want to\n                                     // import secondary contact from team\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/secondary-contacts/{{account_contact}}","description":"<p>Updates secondary contact.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","secondary-contacts","{{account_contact}}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"49063f42-8575-4f4f-b198-e583c5d2e33f","name":"Update Secondary Contact","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Jane\",            // The first name\n    \"last_name\": \"Doe\",              // The last name\n    \"name\": \"Jane Doe\",              // The name\n    \"email\": \"test1@precisefp.com\",  // The email\n    \"phone\": {                       // The mobile phone\n        \"code\": \"+1\",                // The country calling code\n        \"number\": \"3123211212\",      // The phone number\n        \"country\": \"US\"              // 2 letter representation of the phone number's country\n    },\n    \"group\": null,                   // The secondary contact's group\n    \"team_contact_id\": null          // The master secondary contact ID - used when we want to\n                                     // import secondary contact from team\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/secondary-contacts/{{account_contact}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 51,                          // The secondary contact's id\n    \"code\": \"nluymp\",                  // The secondary contact's code\n    \"first_name\": \"Jane\",              // The first name \n    \"last_name\": \"Doe\",                // The last name\n    \"name\": \"Jane Doe\",                // The full name\n    \"email\": \"test3@precisefp.com\",    // The email\n    \"phone\": {                         // The mobile phone\n        \"code\": \"+1\",                  // The country calling code\n        \"number\": \"3123211212\",        // The phone number\n        \"country\": \"US\"                // 2 letter representation of the phone number's country\n    },\n    \"group\": null,                     // The secondary contact's group\n    \"team_contact_id\": null            // The master secondary contact ID - used when we want to\n                                       // import secondary contact from team\n}"}],"_postman_id":"ec8f81fa-a5c7-4330-bc43-a2696da9d3a3"},{"name":"Delete Secondary Contact","event":[{"listen":"prerequest","script":{"id":"daa3261f-94ea-489f-a693-e07da3cd0e97","exec":[""],"type":"text/javascript"}}],"id":"968d6d3b-98a5-4629-892d-6ec850ab030c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"password\": \"password\" // Logged user's password\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/secondary-contacts/{{account_contact}}","description":"<p>Deletes secondary contact.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","accounts","{INSERT_ACCOUNT_ID_HERE}","secondary-contacts","{{account_contact}}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"55022399-fb97-4c58-b764-8b952359fec3","name":"Delete Secondary Contact","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"password\": \"password\" // Logged user's password\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/accounts/{INSERT_ACCOUNT_ID_HERE}/secondary-contacts/{{account_contact}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"968d6d3b-98a5-4629-892d-6ec850ab030c"}],"id":"6be52bf5-60e3-4a57-af0d-eaac9e6f198c","description":"<p>All endpoints related with client/prospect accounts.</p>\n","event":[{"listen":"prerequest","script":{"id":"10139e7d-eb5f-4d3b-955a-ede80c0cbe29","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dd066b72-b7be-419c-b5ce-93f8e0cd2a33","type":"text/javascript","exec":[""]}}],"_postman_id":"6be52bf5-60e3-4a57-af0d-eaac9e6f198c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}}},{"name":"Config","item":[{"name":"Get Account Activity","id":"a75e2f41-c493-4895-a28d-031699759fe9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/config/activities","description":"<p>Returns a collection with all possible activities.</p>\n<p>You may use this list to ensure your application supports all activities returned by the API.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","config","activities"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"f89fef72-8f6e-49f7-a7c5-df739033144a","name":"Get Account Activity","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/config/activities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{                                     // List of all possible activity types\n    \"account.created\": {              // Account activity type\n        \"icon\": \"i_user_plus\",        // Name of the icon associated with the activity. See config/icons\n        \"options\": [                  // List of attributes that will be available for this activity type\n            \"author\",\n            \"type\",\n            \"name\"\n        ]\n    },\n    \"account.updated\": {\n        \"icon\": \"i_user_check\",\n        \"options\": [\n            \"author\",\n            \"name\"\n        ]\n    },\n    \"account.deleted\": {\n        \"icon\": \"i_user_minus\",\n        \"options\": [\n            \"author\",\n            \"name\"\n        ]\n    },\n    \"account.coclient.created\": {\n        \"icon\": \"i_user_plus\",\n        \"options\": [\n            \"author\",\n            \"name\"\n        ]\n    },\n    \"account.coclient.deleted\": {\n        \"icon\": \"i_user_minus\",\n        \"options\": [\n            \"author\",\n            \"name\"\n        ]\n    },\n    \"account.converted\": {\n        \"icon\": \"i_user_tag\",\n        \"options\": [\n            \"author\",\n            \"type\",\n            \"name\"\n        ]\n    },\n    \"account.staged\": {\n        \"icon\": \"i_user_tag\",\n        \"options\": [\n            \"author\",\n            \"stage\",\n            \"name\"\n        ]\n    },\n    \"account.favorited\": {\n        \"icon\": \"i_star\",\n        \"options\": [\n            \"author\",\n            \"name\"\n        ]\n    },\n    \"account.unfavorited\": {\n        \"icon\": \"i_star\",\n        \"options\": [\n            \"author\",\n            \"name\"\n        ]\n    },\n    \"account.archived\": {\n        \"icon\": \"i_archive\",\n        \"options\": [\n            \"author\",\n            \"name\"\n        ]\n    },\n    \"account.unarchived\": {\n        \"icon\": \"i_archive\",\n        \"options\": [\n            \"author\",\n            \"name\"\n        ]\n    },\n    \"account.exported\": {\n        \"icon\": \"i_download\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"integration\"\n        ]\n    },\n    \"account.imported\": {\n        \"icon\": \"i_upload\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"integration\"\n        ]\n    },\n    \"account.access.blocked\": {\n        \"icon\": \"i_user_lock\",\n        \"options\": [\n            \"author\",\n            \"name\"\n        ]\n    },\n    \"account.access.reset\": {\n        \"icon\": \"i_user_shield\",\n        \"options\": [\n            \"author\",\n            \"name\"\n        ]\n    },\n    \"account.access.requested\": {\n        \"icon\": \"i_user_shield\",\n        \"options\": [\n            \"author\",\n            \"name\"\n        ]\n    },\n    \"formengagement.created\": {\n        \"icon\": \"i_engagement_plus\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"template\"\n        ]\n    },\n    \"formengagement.access.reopen\": {\n        \"icon\": \"i_engagement_plus\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"template\"\n        ]\n    },\n    \"formengagement.access.requested\": {\n        \"icon\": \"i_engagement_shield\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"template\"\n        ]\n    },\n    \"formengagement.opened\": {\n        \"icon\": \"i_engagement_tag\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"template\"\n        ]\n    },\n    \"formengagement.signed\": {\n        \"icon\": \"i_pen\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"template\"\n        ]\n    },\n    \"formengagement.unsigned\": {\n        \"icon\": \"i_pen\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"template\"\n        ]\n    },\n    \"formengagement.closed\": {\n        \"icon\": \"i_engagement_check\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"template\"\n        ]\n    },\n    \"formengagement.deleted\": {\n        \"icon\": \"i_engagement_minus\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"template\"\n        ]\n    },\n    \"pdfengagement.created\": {\n        \"icon\": \"i_engagement_plus\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"template\"\n        ]\n    },\n    \"pdfengagement.sent\": {\n        \"icon\": \"i_engagement_tag\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"template\"\n        ]\n    },\n    \"pdfengagement.opened\": {\n        \"icon\": \"i_engagement_tag\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"template\"\n        ]\n    },\n    \"pdfengagement.signed\": {\n        \"icon\": \"i_pen\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"template\"\n        ]\n    },\n    \"pdfengagement.unsigned\": {\n        \"icon\": \"i_pen\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"template\"\n        ]\n    },\n    \"pdfengagement.closed\": {\n        \"icon\": \"i_engagement_check\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"template\"\n        ]\n    },\n    \"pdfengagement.deleted\": {\n        \"icon\": \"i_engagement_minus\",\n        \"options\": [\n            \"author\",\n            \"name\",\n            \"template\"\n        ]\n    }\n}"}],"_postman_id":"a75e2f41-c493-4895-a28d-031699759fe9"},{"name":"Get Dataset","id":"dddec855-1c2d-467a-b4cc-7e4f303b02b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/config/dataset","description":"<p>Returns all panels, groups and elements that constitute the dataset.</p>\n<p>You may use this to ensure your application shows a correct account profile.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","config","dataset"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"4868d7a6-4d0b-4dc6-9a7c-0b575c621a89","name":"Get Dataset","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/config/dataset"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{                                                                                  // Structure of panels, groups and elements from the dataset\n    \"panels\": [                                                                    // The list of dataset panels\n        {\n            \"id\": \"8e5a59dd-c6ff-49b0-ac53-bff092d548b8\",                          // The panel ID\n            \"type\": \"INDIVIDUAL\",                                                  // The panel type. Can be INDIVIDUAL or ACCOUNT\n            \"title\": \"Client Details\",                                             // Title of the dataset panel\n            \"description\": null,                                                   // Description of the dataset panel\n            \"position\": 0                                                          // The order of the panel within the dataset\n        },\n        {\n            \"id\": \"caf092c2-3ee9-4adf-bf37-c8d3796a8e2e\",\n            \"type\": \"INDIVIDUAL\",\n            \"title\": \"Employment & Income\",\n            \"description\": \"\",\n            \"position\": 1\n        }\n    ],\n    \"groups\": [                                                                     // The list of dataset groups\n        {\n            \"id\": \"94229e22-0f87-4bb4-877e-cb133ef883bd\",                           // The group ID\n            \"panel_id\": \"8e5a59dd-c6ff-49b0-ac53-bff092d548b8\",                     // The panel ID this group belongs to\n            \"type\": \"SINGLE\",                                                       // The group type. Can be SINGLE or MULTIPLE \n            \"title\": \"Personal Details\",                                            // The group title\n            \"description\": null,                                                    // The group description\n            \"position\": 0                                                           // The order of the group within the panel\n        }\n    ],\n    \"elements\": [                                                                   // The list of dataset elements\n        {\n            \"id\": \"a09c63ec-b551-4c98-9214-7f5210c7d54d\",                           // The element id\n            \"group_id\": \"94229e22-0f87-4bb4-877e-cb133ef883bd\",                     // The group id this element belongs to\n            \"type\": \"STRING\",                                                       // The element type. Can be STRING, CURRENCY, NUMERIC, DATE, ARRAY, ADDRESS or FILE\n            \"title\": \"Full Name\",                                                   // The element title\n            \"description\": \"First, Middle and Last name combined\",                  // The element description                                    \n            \"size\": 50,                                                             // The element's size\n            \"position\": \"0,3\"                                                       // The element's position within the group\n        },\n        {\n            \"id\": \"ffca48cd-45ae-4695-9388-c10aa99f13e8\",\n            \"group_id\": \"94229e22-0f87-4bb4-877e-cb133ef883bd\",\n            \"type\": \"STRING\",\n            \"title\": \"First Name\",\n            \"description\": null,\n            \"size\": 25,\n            \"position\": \"0,0\"\n        },\n        {\n            \"id\": \"af4f22e0-f9de-47cd-9153-97fb8d58f506\",\n            \"group_id\": \"94229e22-0f87-4bb4-877e-cb133ef883bd\",\n            \"type\": \"STRING\",\n            \"title\": \"Last Name\",\n            \"description\": null,\n            \"size\": 25,\n            \"position\": \"1,0\"\n        }\n    ]\n}"}],"_postman_id":"dddec855-1c2d-467a-b4cc-7e4f303b02b6"},{"name":"Get Icons","id":"27d85a28-b37b-490a-b461-6fadf1abd4a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/config/icons","description":"<p>Returns a collection with all possible icon names.</p>\n<p>You mayu se this list to ensure your application supports the icons returned by the API.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","config","icons"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"8e656c8a-5024-441a-a21c-7d3516cbe9b8","name":"Get Icons","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/config/icons"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"}],"cookie":[],"responseTime":null,"body":"[                                 // List of all possible icons\n    \"i_archive\",\n    \"i_award\",\n    \"i_badge\",\n    \"i_building\",\n    \"i_bullseye\",\n    \"i_child\",\n    \"i_coins\",\n    \"i_comments\",\n    \"i_crown\",\n    \"i_diamond\",\n    \"i_dollar\",\n    \"i_download\",\n    \"i_engagement_check\",\n    \"i_engagement_minus\",\n    \"i_engagement_plus\",\n    \"i_engagement_shield\",\n    \"i_engagement_tag\",\n    \"i_envelope\",\n    \"i_female\",\n    \"i_globe\",\n    \"i_heart\",\n    \"i_lightbulb\",\n    \"i_male\",\n    \"i_medal\",\n    \"i_money\",\n    \"i_pen\",\n    \"i_pipeline\",\n    \"i_search\",\n    \"i_spade\",\n    \"i_star\",\n    \"i_umbrella\",\n    \"i_upload\",\n    \"i_user\",\n    \"i_user_check\",\n    \"i_user_clock\",\n    \"i_user_cog\",\n    \"i_user_friends\",\n    \"i_user_graduate\",\n    \"i_user_lock\",\n    \"i_user_minus\",\n    \"i_user_plus\",\n    \"i_user_shield\",\n    \"i_user_slash\",\n    \"i_user_tag\",\n    \"i_user_tie\",\n    \"i_user_times\",\n    \"i_users\",\n    \"i_users_cog\"\n]"}],"_postman_id":"27d85a28-b37b-490a-b461-6fadf1abd4a3"},{"name":"Get Classifications","id":"16249a38-e0c2-460e-baf1-95ec84c023dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/config/classifications","description":"<p>Returns a list of person and household classified fields from the Dataset.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","config","classifications"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"b5038d37-ad52-4f16-a823-6b63e4adc82d","name":"Get Classifications","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/config/classifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{                                                                                                         // Classification of dataset elements\n    \"Person\": {                                                                                           // List of elements classified as Person                              \n        \"_groups\": {                                                                                      // List of groups that allow records to be added/removed\n            \"71876096-aa84-4fe5-9362-77e3296c6680\": \"Family Members / Children\",\n            \"2ea879f5-8cc2-4621-9014-87984aa693bd\": \"Family Members / Other Family Members\"\n        },\n        \"FullName\": {                                                          // Person's attribute name\n            \"id\": \"Person.FullName\",                                           // The attribute's Id\n            \"elements\": [                                                      // List of elements classified under this attribute\n                {\n                    \"id\": \"a09c63ec-b551-4c98-9214-7f5210c7d54d\",              // The element's ID\n                    \"group\": \"94229e22-0f87-4bb4-877e-cb133ef883bd\",           // The group ID this element belongs to\n                    \"type\": \"READONLY\",                                        // The type of the element. Can be READONLY, STRING, PHONE, NUMERIC, CURRENCY, ADDRESS, DATE OR ARRAY\n                    \"options\": []                                              // The element's options                                 \n                },\n                {\n                    \"id\": \"0830f2ca-2446-455b-a019-913f1a260d3a\",\n                    \"group\": \"71876096-aa84-4fe5-9362-77e3296c6680\",\n                    \"type\": \"READONLY\",\n                    \"options\": []\n                },\n                {\n                    \"id\": \"62546dee-ce9c-47cc-921f-679ddcec7138\",\n                    \"group\": \"2ea879f5-8cc2-4621-9014-87984aa693bd\",\n                    \"type\": \"READONLY\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"FirstName\": {\n            \"id\": \"Person.FirstName\",\n            \"elements\": [\n                {\n                    \"id\": \"ffca48cd-45ae-4695-9388-c10aa99f13e8\",\n                    \"group\": \"94229e22-0f87-4bb4-877e-cb133ef883bd\",\n                    \"type\": \"STRING\",\n                    \"options\": []\n                },\n                {\n                    \"id\": \"2049bd6b-a095-441e-9aad-1b3efb6f9882\",\n                    \"group\": \"71876096-aa84-4fe5-9362-77e3296c6680\",\n                    \"type\": \"STRING\",\n                    \"options\": []\n                },\n                {\n                    \"id\": \"1d6ff66f-039d-4109-b406-db55f26398a6\",\n                    \"group\": \"2ea879f5-8cc2-4621-9014-87984aa693bd\",\n                    \"type\": \"STRING\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"MiddleName\": {\n            \"id\": \"Person.MiddleName\",\n            \"elements\": [\n                {\n                    \"id\": \"af4f22e0-f9de-47cd-9153-97fb8d58f506\",\n                    \"group\": \"94229e22-0f87-4bb4-877e-cb133ef883bd\",\n                    \"type\": \"STRING\",\n                    \"options\": []\n                },\n                {\n                    \"id\": \"735f35b7-d458-419c-8d28-43fadfdb2214\",\n                    \"group\": \"71876096-aa84-4fe5-9362-77e3296c6680\",\n                    \"type\": \"STRING\",\n                    \"options\": []\n                },\n                {\n                    \"id\": \"fa1056bf-06f5-4e44-9a8d-33e5d974327d\",\n                    \"group\": \"2ea879f5-8cc2-4621-9014-87984aa693bd\",\n                    \"type\": \"STRING\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"LastName\": {\n            \"id\": \"Person.LastName\",\n            \"elements\": [\n                {\n                    \"id\": \"90cc0d96-1c41-483a-aeba-5dcbff12f3e7\",\n                    \"group\": \"94229e22-0f87-4bb4-877e-cb133ef883bd\",\n                    \"type\": \"STRING\",\n                    \"options\": []\n                },\n                {\n                    \"id\": \"fcc82ef2-9e25-44e7-89a0-f01036be78c5\",\n                    \"group\": \"71876096-aa84-4fe5-9362-77e3296c6680\",\n                    \"type\": \"STRING\",\n                    \"options\": []\n                },\n                {\n                    \"id\": \"d891da9a-f70f-4294-8648-da20ad9d50ca\",\n                    \"group\": \"2ea879f5-8cc2-4621-9014-87984aa693bd\",\n                    \"type\": \"STRING\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"Gender\": {\n            \"id\": \"Person.Gender\",\n            \"elements\": [\n                {\n                    \"id\": \"62199f3f-da35-41b1-a5a1-bf69885c974a\",\n                    \"group\": \"94229e22-0f87-4bb4-877e-cb133ef883bd\",\n                    \"type\": \"ARRAY\",\n                    \"options\": [\n                        {\n                            \"label\": \"Male\",\n                            \"value\": \"M\"\n                        },\n                        {\n                            \"label\": \"Female\",\n                            \"value\": \"F\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"ce56030b-a6db-4344-8038-ccc417d6b7ca\",\n                    \"group\": \"71876096-aa84-4fe5-9362-77e3296c6680\",\n                    \"type\": \"ARRAY\",\n                    \"options\": [\n                        {\n                            \"label\": \"Male\",\n                            \"value\": \"M\"\n                        },\n                        {\n                            \"label\": \"Female\",\n                            \"value\": \"F\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"d1a7b5a1-69d3-41c8-9329-9358c589fef0\",\n                    \"group\": \"2ea879f5-8cc2-4621-9014-87984aa693bd\",\n                    \"type\": \"ARRAY\",\n                    \"options\": [\n                        {\n                            \"label\": \"Male\",\n                            \"value\": \"M\"\n                        },\n                        {\n                            \"label\": \"Female\",\n                            \"value\": \"F\"\n                        }\n                    ]\n                }\n            ]\n        },\n        \"Birthdate\": {\n            \"id\": \"Person.Birthdate\",\n            \"elements\": [\n                {\n                    \"id\": \"c8b8444c-b7a6-455a-9d1c-c21b4f1e28da\",\n                    \"group\": \"94229e22-0f87-4bb4-877e-cb133ef883bd\",\n                    \"type\": \"DATE\",\n                    \"options\": []\n                },\n                {\n                    \"id\": \"323c8f80-f99a-4bca-b7ac-f131bb2c3793\",\n                    \"group\": \"71876096-aa84-4fe5-9362-77e3296c6680\",\n                    \"type\": \"DATE\",\n                    \"options\": []\n                },\n                {\n                    \"id\": \"4307a820-20e9-48c9-be11-72d5950a89ce\",\n                    \"group\": \"2ea879f5-8cc2-4621-9014-87984aa693bd\",\n                    \"type\": \"DATE\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"Age\": {\n            \"id\": \"Person.Age\",\n            \"elements\": [\n                {\n                    \"id\": \"77c4ffea-cac1-4dcd-9ba0-bf8d6c774918\",\n                    \"group\": \"94229e22-0f87-4bb4-877e-cb133ef883bd\",\n                    \"type\": \"READONLY\",\n                    \"options\": []\n                },\n                {\n                    \"id\": \"2bca68bd-b61a-4566-9cd1-06a3c1bd6f86\",\n                    \"group\": \"71876096-aa84-4fe5-9362-77e3296c6680\",\n                    \"type\": \"READONLY\",\n                    \"options\": []\n                },\n                {\n                    \"id\": \"8fd6a284-1433-4011-909e-fff061fbfbe8\",\n                    \"group\": \"2ea879f5-8cc2-4621-9014-87984aa693bd\",\n                    \"type\": \"READONLY\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"MaritalStatus\": {\n            \"id\": \"Person.MaritalStatus\",\n            \"elements\": [\n                {\n                    \"id\": \"16c02420-308a-4e1c-9638-4e248cfcfd06\",\n                    \"group\": \"94229e22-0f87-4bb4-877e-cb133ef883bd\",\n                    \"type\": \"STRING\",\n                    \"options\": [\n                        {\n                            \"label\": \"Single\",\n                            \"value\": \"single\"\n                        },\n                        {\n                            \"label\": \"Married\",\n                            \"value\": \"married\"\n                        },\n                        {\n                            \"label\": \"Divorced\",\n                            \"value\": \"divorced\"\n                        },\n                        {\n                            \"label\": \"Widowed\",\n                            \"value\": \"widowed\"\n                        },\n                        {\n                            \"label\": \"Domestic Partner\",\n                            \"value\": \"partner\"\n                        }\n                    ]\n                }\n            ]\n        },\n        \"Citizenship\": {\n            \"id\": \"Person.Citizenship\",\n            \"elements\": [\n                {\n                    \"id\": \"ecc042d5-f5ee-4002-9c92-a4f76aea5be7\",\n                    \"group\": \"94229e22-0f87-4bb4-877e-cb133ef883bd\",\n                    \"type\": \"ADDRESS\",\n                    \"options\": {\n                        \"address1\": false,\n                        \"address2\": false,\n                        \"city\": false,\n                        \"state\": false,\n                        \"zip\": false,\n                        \"country\": true\n                    }\n                }\n            ]\n        },\n        \"Email\": {\n            \"id\": \"Person.Email\",\n            \"elements\": [\n                {\n                    \"id\": \"95edc940-5263-4517-986f-783d56077110\",\n                    \"group\": \"d979e0fc-3dfa-4ed2-a1e1-2825551252d0\",\n                    \"type\": \"STRING\",\n                    \"options\": []\n                },\n                {\n                    \"id\": \"c9725b7b-7776-4079-a599-76bd71951cf4\",\n                    \"group\": \"71876096-aa84-4fe5-9362-77e3296c6680\",\n                    \"type\": \"STRING\",\n                    \"options\": []\n                },\n                {\n                    \"id\": \"72d89b42-8ad5-403f-a5b6-4bee5b5f78be\",\n                    \"group\": \"2ea879f5-8cc2-4621-9014-87984aa693bd\",\n                    \"type\": \"STRING\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"MobilePhone\": {\n            \"id\": \"Person.MobilePhone\",\n            \"elements\": [\n                {\n                    \"id\": \"358842d4-3b40-4d8d-a37e-c21d6b3eade5\",\n                    \"group\": \"d979e0fc-3dfa-4ed2-a1e1-2825551252d0\",\n                    \"type\": \"PHONE\",\n                    \"options\": []\n                },\n                {\n                    \"id\": \"bf0081c4-e71c-4379-a475-22c8d6025a32\",\n                    \"group\": \"71876096-aa84-4fe5-9362-77e3296c6680\",\n                    \"type\": \"PHONE\",\n                    \"options\": []\n                },\n                {\n                    \"id\": \"a0554d83-6dd9-4d5b-a4fb-9eddad503b6b\",\n                    \"group\": \"2ea879f5-8cc2-4621-9014-87984aa693bd\",\n                    \"type\": \"PHONE\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"HomePhone\": {\n            \"id\": \"Person.HomePhone\",\n            \"elements\": [\n                {\n                    \"id\": \"24e081da-0846-47ca-835f-a12fa11506aa\",\n                    \"group\": \"d979e0fc-3dfa-4ed2-a1e1-2825551252d0\",\n                    \"type\": \"PHONE\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"WorkPhone\": {\n            \"id\": \"Person.WorkPhone\",\n            \"elements\": [\n                {\n                    \"id\": \"4636ffe0-1751-4dd2-a2b6-cc660225b20b\",\n                    \"group\": \"d979e0fc-3dfa-4ed2-a1e1-2825551252d0\",\n                    \"type\": \"PHONE\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"Address\": {\n            \"id\": \"Person.Address\",\n            \"elements\": [\n                {\n                    \"id\": \"4988da61-fd8b-4960-9872-58cdb87156c3\",\n                    \"group\": \"d979e0fc-3dfa-4ed2-a1e1-2825551252d0\",\n                    \"type\": \"ADDRESS\",\n                    \"options\": {\n                        \"address1\": true,\n                        \"address2\": false,\n                        \"city\": true,\n                        \"state\": true,\n                        \"zip\": true,\n                        \"country\": true\n                    }\n                },\n                {\n                    \"id\": \"9b650db8-8dce-409f-b472-c6ce1458790b\",\n                    \"group\": \"71876096-aa84-4fe5-9362-77e3296c6680\",\n                    \"type\": \"ADDRESS\",\n                    \"options\": {\n                        \"address1\": true,\n                        \"address2\": false,\n                        \"city\": true,\n                        \"state\": true,\n                        \"zip\": true,\n                        \"country\": true\n                    }\n                },\n                {\n                    \"id\": \"568670c2-016c-4cbf-a39d-16ceced7add9\",\n                    \"group\": \"2ea879f5-8cc2-4621-9014-87984aa693bd\",\n                    \"type\": \"ADDRESS\",\n                    \"options\": {\n                        \"address1\": true,\n                        \"address2\": false,\n                        \"city\": true,\n                        \"state\": true,\n                        \"zip\": true,\n                        \"country\": true\n                    }\n                }\n            ]\n        },\n        \"DriversLicenseNumber\": {\n            \"id\": \"Person.DriversLicenseNumber\",\n            \"elements\": [\n                {\n                    \"id\": \"a60503c7-bae6-4684-9032-a44cd1dd7ff7\",\n                    \"group\": \"233f3709-46c9-4e3f-b1fb-1150a4c02f87\",\n                    \"type\": \"STRING\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"DriversLicenseIssueDate\": {\n            \"id\": \"Person.DriversLicenseIssueDate\",\n            \"elements\": [\n                {\n                    \"id\": \"867e028b-2a7c-4fab-8490-e4e681bc2cb4\",\n                    \"group\": \"233f3709-46c9-4e3f-b1fb-1150a4c02f87\",\n                    \"type\": \"DATE\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"DriversLicenseExpireDate\": {\n            \"id\": \"Person.DriversLicenseExpireDate\",\n            \"elements\": [\n                {\n                    \"id\": \"b82cab63-6df3-4bb7-b5b4-a97efcf70f3a\",\n                    \"group\": \"233f3709-46c9-4e3f-b1fb-1150a4c02f87\",\n                    \"type\": \"DATE\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"DriversLicenseJurisdiction\": {\n            \"id\": \"Person.DriversLicenseJurisdiction\",\n            \"elements\": [\n                {\n                    \"id\": \"89522428-455b-4cf2-8139-e705f21f924c\",\n                    \"group\": \"233f3709-46c9-4e3f-b1fb-1150a4c02f87\",\n                    \"type\": \"ADDRESS\",\n                    \"options\": {\n                        \"address1\": false,\n                        \"address2\": false,\n                        \"city\": false,\n                        \"state\": true,\n                        \"zip\": false,\n                        \"country\": true\n                    }\n                }\n            ]\n        },\n        \"RiskScore\": {\n            \"id\": \"Person.RiskScore\",\n            \"elements\": [\n                {\n                    \"id\": \"36e27b00-4eb3-4d3c-8bfa-e5d17bd48e19\",\n                    \"group\": \"ceb7e593-c276-4f7f-9821-68d56c86a311\",\n                    \"type\": \"NUMERIC\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"Employer\": {\n            \"id\": \"Person.Employer\",\n            \"elements\": [\n                {\n                    \"id\": \"a6e74e16-cf85-4910-b809-ebd716741c2c\",\n                    \"group\": \"87cdafca-6be7-43d0-a9a0-33f45febbc30\",\n                    \"type\": \"STRING\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"EmploymentPosition\": {\n            \"id\": \"Person.EmploymentPosition\",\n            \"elements\": [\n                {\n                    \"id\": \"4487db9c-03c3-4c0d-8aa0-70ce0bb6bf01\",\n                    \"group\": \"87cdafca-6be7-43d0-a9a0-33f45febbc30\",\n                    \"type\": \"STRING\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"EmploymentYears\": {\n            \"id\": \"Person.EmploymentYears\",\n            \"elements\": [\n                {\n                    \"id\": \"0dabc7af-8e7b-4b3d-a32b-79d98577bfcd\",\n                    \"group\": \"87cdafca-6be7-43d0-a9a0-33f45febbc30\",\n                    \"type\": \"NUMERIC\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"EmploymentAddress\": {\n            \"id\": \"Person.EmploymentAddress\",\n            \"elements\": [\n                {\n                    \"id\": \"6a2eecfd-d8be-45f6-aa7b-eb7474e96bac\",\n                    \"group\": \"87cdafca-6be7-43d0-a9a0-33f45febbc30\",\n                    \"type\": \"ADDRESS\",\n                    \"options\": {\n                        \"address1\": true,\n                        \"address2\": false,\n                        \"city\": true,\n                        \"state\": true,\n                        \"zip\": true,\n                        \"country\": true\n                    }\n                }\n            ]\n        },\n        \"EmploymentSalary\": {\n            \"id\": \"Person.EmploymentSalary\",\n            \"elements\": [\n                {\n                    \"id\": \"acc01c41-f6b7-4a94-b6b5-675916066d52\",\n                    \"group\": \"87cdafca-6be7-43d0-a9a0-33f45febbc30\",\n                    \"type\": \"CURRENCY\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"EmploymentCommissions\": {\n            \"id\": \"Person.EmploymentCommissions\",\n            \"elements\": [\n                {\n                    \"id\": \"40e02ad2-b293-41f2-9b35-cf456ec4ad50\",\n                    \"group\": \"87cdafca-6be7-43d0-a9a0-33f45febbc30\",\n                    \"type\": \"CURRENCY\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"IncomeEmploymentTotal\": {\n            \"id\": \"Person.IncomeEmploymentTotal\",\n            \"elements\": [\n                {\n                    \"id\": \"22c3448c-0f4d-4490-93e9-89089220f6e9\",\n                    \"group\": \"b682643b-699a-4ce1-8607-a0d4fcdaeb6c\",\n                    \"type\": \"READONLY\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"IncomeSelfEmployment\": {\n            \"id\": \"Person.IncomeSelfEmployment\",\n            \"elements\": [\n                {\n                    \"id\": \"78000097-d899-4e0d-a281-f798a462394a\",\n                    \"group\": \"b682643b-699a-4ce1-8607-a0d4fcdaeb6c\",\n                    \"type\": \"CURRENCY\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"IncomePensionsAndAnnuities\": {\n            \"id\": \"Person.IncomePensionsAndAnnuities\",\n            \"elements\": [\n                {\n                    \"id\": \"c7445c0a-5ebf-4c1a-b3b7-b85968bc1872\",\n                    \"group\": \"b682643b-699a-4ce1-8607-a0d4fcdaeb6c\",\n                    \"type\": \"READONLY\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"IncomeSocialSecurity\": {\n            \"id\": \"Person.IncomeSocialSecurity\",\n            \"elements\": [\n                {\n                    \"id\": \"8ef95b51-2bbd-4652-b270-b9dd89c008e3\",\n                    \"group\": \"b682643b-699a-4ce1-8607-a0d4fcdaeb6c\",\n                    \"type\": \"CURRENCY\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"IncomeCashDividends\": {\n            \"id\": \"Person.IncomeCashDividends\",\n            \"elements\": [\n                {\n                    \"id\": \"81e2bb3e-041b-4aef-bc4f-ccc8be4350ef\",\n                    \"group\": \"b682643b-699a-4ce1-8607-a0d4fcdaeb6c\",\n                    \"type\": \"CURRENCY\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"IncomeInterest\": {\n            \"id\": \"Person.IncomeInterest\",\n            \"elements\": [\n                {\n                    \"id\": \"b40418f2-869f-453c-b9b1-7b83394a2d11\",\n                    \"group\": \"b682643b-699a-4ce1-8607-a0d4fcdaeb6c\",\n                    \"type\": \"CURRENCY\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"IncomeOther\": {\n            \"id\": \"Person.IncomeOther\",\n            \"elements\": [\n                {\n                    \"id\": \"07b4902a-1982-452a-a763-c34ee33aeb25\",\n                    \"group\": \"b682643b-699a-4ce1-8607-a0d4fcdaeb6c\",\n                    \"type\": \"CURRENCY\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"IncomeTotal\": {\n            \"id\": \"Person.IncomeTotal\",\n            \"elements\": [\n                {\n                    \"id\": \"ec6e4a60-9de0-44bc-aec8-727f9d82f67a\",\n                    \"group\": \"b682643b-699a-4ce1-8607-a0d4fcdaeb6c\",\n                    \"type\": \"READONLY\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"HasOutstandingStockOptions\": {\n            \"id\": \"Person.HasOutstandingStockOptions\",\n            \"elements\": [\n                {\n                    \"id\": \"2245bf86-be89-47f6-a780-081c77163f84\",\n                    \"group\": \"3d7f886d-427c-4455-ad35-f88a8599080c\",\n                    \"type\": \"ARRAY\",\n                    \"options\": [\n                        {\n                            \"label\": \"Yes\",\n                            \"value\": \"yes\"\n                        },\n                        {\n                            \"label\": \"No\",\n                            \"value\": \"no\"\n                        }\n                    ]\n                }\n            ]\n        },\n        \"PlannedRetirementAge\": {\n            \"id\": \"Person.PlannedRetirementAge\",\n            \"elements\": [\n                {\n                    \"id\": \"3f22618e-4295-4877-af85-73b44cfa5707\",\n                    \"group\": \"3d7f886d-427c-4455-ad35-f88a8599080c\",\n                    \"type\": \"NUMERIC\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"IsDependent\": {\n            \"id\": \"Person.IsDependent\",\n            \"elements\": [\n                {\n                    \"id\": \"54b8eff8-31ec-4136-80ba-16978564aee1\",\n                    \"group\": \"71876096-aa84-4fe5-9362-77e3296c6680\",\n                    \"type\": \"ARRAY\",\n                    \"options\": [\n                        {\n                            \"label\": \"Yes\",\n                            \"value\": \"yes\"\n                        },\n                        {\n                            \"label\": \"No\",\n                            \"value\": \"no\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"9b857df8-1e5b-42b4-b1c1-0ca3c87c4fc8\",\n                    \"group\": \"2ea879f5-8cc2-4621-9014-87984aa693bd\",\n                    \"type\": \"ARRAY\",\n                    \"options\": [\n                        {\n                            \"label\": \"Yes\",\n                            \"value\": \"yes\"\n                        },\n                        {\n                            \"label\": \"No\",\n                            \"value\": \"no\"\n                        }\n                    ]\n                }\n            ]\n        },\n        \"CollegeType\": {\n            \"id\": \"Person.CollegeType\",\n            \"elements\": [\n                {\n                    \"id\": \"e36dd588-fe36-4c7d-97fd-099e84ce5aa2\",\n                    \"group\": \"71876096-aa84-4fe5-9362-77e3296c6680\",\n                    \"type\": \"ARRAY\",\n                    \"options\": [\n                        {\n                            \"label\": \"Public\",\n                            \"value\": \"public\"\n                        },\n                        {\n                            \"label\": \"Private\",\n                            \"value\": \"private\"\n                        }\n                    ]\n                }\n            ]\n        },\n        \"CollegeStartYear\": {\n            \"id\": \"Person.CollegeStartYear\",\n            \"elements\": [\n                {\n                    \"id\": \"1f432f72-2398-43a1-8715-774aecb67e1f\",\n                    \"group\": \"71876096-aa84-4fe5-9362-77e3296c6680\",\n                    \"type\": \"NUMERIC\",\n                    \"options\": []\n                }\n            ]\n        },\n        \"CollegeEndYear\": {\n            \"id\": \"Person.CollegeEndYear\",\n            \"elements\": [\n                {\n                    \"id\": \"efaaaf93-8da8-4ecc-baa1-a2a1079fb333\",\n                    \"group\": \"71876096-aa84-4fe5-9362-77e3296c6680\",\n                    \"type\": \"NUMERIC\",\n                    \"options\": []\n                }\n            ]\n        }\n    },\n    \"Household\": {                                                              // List of elements classified as Household  \n        \"networth\": {                                                           // The attribute's title\n            \"id\": \"Household.networth\",                                         // The attribute's ID\n            \"elements\": [                                                       // List of elements classified under this attribute\n                {\n                    \"id\": \"023e39ab-9e20-42ee-beea-4bcf1525f29b\",               \n                    \"group\": \"61303854-7d06-475a-b620-f585bbfae643\",\n                    \"type\": \"READONLY\",\n                    \"options\": []\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"16249a38-e0c2-460e-baf1-95ec84c023dc"}],"id":"aac146c8-a67c-44f5-aaa0-70cbd3898387","description":"<p>All endpoints related with configuration and settings.</p>\n","_postman_id":"aac146c8-a67c-44f5-aaa0-70cbd3898387","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}}},{"name":"User","item":[{"name":"Get User","id":"0ba26256-693d-434a-8b15-de7ac8d06a09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user","description":"<p>Returns the current authenticated user along with his personal settings and available data.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","user"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"4cc96077-d46a-4806-b266-ce8912b21f9c","name":"Get User","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"55"}],"cookie":[],"responseTime":null,"body":"{                                                                                                                   \n    \"first_name\": \"Test \",                                                                                          // The first name of the User\n    \"last_name\": \"Advisor\",                                                                                         // The last name of the User\n    \"email\": \"testadvisor@precisefp.com\",                                                                           // The email of the User\n    \"phone\": {                                                                                                      // The mobile phone of the User\n        \"code\": \"+01\",                                                                                              // The country calling code\n        \"number\": \"3123121232\",                                                                                     // The phone number\n        \"country\": \"US\",                                                                                            // 2 letter representation of the phone number's country\n        \"ext\": null                                                                                                 // Extension of the phone number\n    },\n    \"photo\": \"https://app.precisefp.com/media/image/user/300467/uHGlK9SMvAQRooo0NXfqFgSRKyHj80WbXlVcjjmE.png\",      // Photo of the User\n    \"timezone\": \"Europe/Paris\",                                                                                     // Set timezone of the User account\n    \"currency\": \"EUR\",                                                                                              // Set default currency of the account\n    \"team\": {                                                                                                       // Currently selected Team of the User account\n        \"id\": 333,                                                                                                  // ID of the selected Team\n        \"name\": \"Test Company\"                                                                                      // Name of the selected Team\n    },\n    \"teams\": [                                                                                                      // List of all Teams under the Company account\n        {\n            \"id\": 1,                                                                                                // ID of the Team\n            \"name\": \"Test Company\"                                                                                  // Name of the Team\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Team Two\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"third team\"\n        }\n    ],\n    \"permissions\": {                                                                                                 // List of Permission settings for this user\n        \"accounts.prospects\": true,\n        \"accounts.prospects.create\": true,\n        \"accounts.prospects.update\": true,\n        \"accounts.prospects.delete\": true,\n        \"accounts.clients\": true,\n        \"accounts.clients.create\": true,\n        \"accounts.clients.update\": true,\n        \"accounts.clients.delete\": true,\n        \"accounts.favorite\": true,\n        \"accounts.archive\": true,\n        \"accounts.convert\": true,\n        \"engagements.in-progress\": true,\n        \"engagements.completed\": true,\n        \"engagements.create\": true,\n        \"engagements.close\": true,\n        \"engagements.delete\": true,\n        \"pdfengagements.in-progress\": true,\n        \"pdfengagements.completed\": true,\n        \"pdfengagements.create\": true,\n        \"pdfengagements.close\": true,\n        \"pdfengagements.delete\": true\n    },\n    \"form_templates\": [                                                                                               // List of Form Templates available for this user\n        {\n            \"id\": \"f1e9dcbe-85e9-4008-a48e-62b50de15539\",                                                             // The Form Template ID\n            \"key\": \"f1e9dcbe-85e9-4008-a48e-62b50de15539\",                                                            // The Form Template Key\n            \"title\": \"My Fact Finder\",                                                                                // Title of the Form Template\n            \"description\": \"Custom Fact Finder Template\",                                                             // Description of the Form Template\n            \"category\": \"Fact Finders\",                                                                               // Name of the category this Form Template belongs to\n            \"security\": \"high\",                                                                                       // Security status of the template. Can be high or low\n            \"owned\": true                                                                                             // Boolean value for the ownership of the template.\n        },\n        {\n            \"id\": \"292ef296-38c5-44e2-bb89-be1a80904764\",\n            \"key\": \"292ef296-38c5-44e2-bb89-be1a80904764\",\n            \"title\": \"2022 Tax Filing Organizer\",\n            \"description\": \"Tax Filing Checklist\",\n            \"category\": \"Other templates\",\n            \"security\": \"high\",\n            \"owned\": true\n        }\n    ],\n    \"report_templates\": [\n        {\n            \"id\": \"041fe07f-1fcf-40a0-a213-735a3fda2eb5\",                                                           // The Report Template ID\n            \"key\": \"041fe07f-1fcf-40a0-a213-735a3fda2eb5\",                                                          // The Report Template Key\n            \"title\": \"test column added for the api test\",                                                          // Title of the Report Template\n            \"description\": \"test column added for the api test description\",                                        // Description of the Report Template\n            \"category\": \"test\",                                                                                     // Name of the category this Report Template belongs to\n            \"owned\": true                                                                                           // Boolean value for the ownership of the template.\n        }\n    ],\n    \"pipelines\": [                                                                                                  // List of Pipelines available for the user\n        {\n            \"id\": \"eda12bda-cdde-4d28-a0e8-180f0ef07e19\",                                                           // The Pipeline ID\n            \"type\": \"PROSPECT\",                                                                                     // Type Pipeline type. Can be PROSPECT or CLIENT\n            \"sort\": \"1\",                                                                                            // The ordering of the Pipelines \n            \"title\": \"Onboard\",                                                                                     // The title of the Pipeline\n            \"description\": \"Gather the information required to onboard and qualify your prospects.\",                // The description of the Pipeline\n            \"icon\": \"i_user_tag\"                                                                                    // The name of the icon associated with this Pipeline\n        },\n        {\n            \"id\": \"33e1d4b2-7243-4028-ad67-9bf4c171b057\",\n            \"type\": \"CLIENT\",\n            \"sort\": 1,\n            \"title\": \"Onboard\",\n            \"description\": \"Gather the information required to understand your client's wants and needs.\",\n            \"icon\": \"i_users_cog\"\n        },\n        {\n            \"id\": \"b6d1cf3d-ee16-4df3-adb6-906eebc3e139\",\n            \"type\": \"CLIENT\",\n            \"sort\": \"2\",\n            \"title\": \"Discover\",\n            \"description\": \"Gather the information required for a complete financial plan.\",\n            \"icon\": \"i_user_friends\"\n        },\n        {\n            \"id\": \"36eb5aff-48d0-4d1d-865b-713c6acf5f49\",\n            \"type\": \"PROSPECT\",\n            \"sort\": \"2\",\n            \"title\": \"Acquire\",\n            \"description\": \"Convert your prospects to clients.\",\n            \"icon\": \"i_award\"\n        }\n    ]\n}"}],"_postman_id":"0ba26256-693d-434a-8b15-de7ac8d06a09"},{"name":"Switch User's Team","event":[{"listen":"prerequest","script":{"id":"bc502ef0-6c21-471b-b127-bf65d3f216c4","exec":["/* Strip comments from json body */\r","if (pm?.request?.body?.options?.raw?.language === 'json') {\r","    const rawData = pm.request.body.toString();\r","    const strippedData = rawData.replace(\r","        /\\\\\"|\"(?:\\\\\"|[^\"])*\"|(\\/\\/.*|\\/\\*[\\s\\S]*?\\*\\/)/g,\r","        (m, g) => g ? \"\" : m\r","    );\r","    pm.request.body.update(JSON.stringify(JSON.parse(strippedData)));\r","    pm.request.headers.add('Content-Type: application/json');\r","}"],"type":"text/javascript"}}],"id":"bb3da53e-babf-4278-92de-c9b0069580a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 3                          // ID of the team (required)\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/user/switch","description":"<p>Updates the current authenticated user's team.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","user","switch"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"9cf3e537-24eb-4dae-b5ea-864fdd227a1a","name":"Switch User's Team","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"id\": 3                          // ID of the team (required)\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/user/switch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{                                                                                                                   \n    \"first_name\": \"Test \",                                                                                          // The first name of the User\n    \"last_name\": \"Advisor\",                                                                                         // The last name of the User\n    \"email\": \"testadvisor@precisefp.com\",                                                                           // The email of the User\n    \"phone\": {                                                                                                      // The mobile phone of the User\n        \"code\": \"+01\",                                                                                              // The country calling code\n        \"number\": \"3123121232\",                                                                                     // The phone number\n        \"country\": \"US\",                                                                                            // 2 letter representation of the phone number's country\n        \"ext\": null                                                                                                 // Extension of the phone number\n    },\n    \"photo\": \"https://app.precisefp.com/media/image/user/300467/uHGlK9SMvAQRooo0NXfqFgSRKyHj80WbXlVcjjmE.png\",      // Photo of the User\n    \"timezone\": \"Europe/Paris\",                                                                                     // Set timezone of the User account\n    \"currency\": \"EUR\",                                                                                              // Set default currency of the account\n    \"team\": {                                                                                                       // Currently selected Team of the User account\n        \"id\": 333,                                                                                                  // ID of the selected Team\n        \"name\": \"Test Company\"                                                                                      // Name of the selected Team\n    },\n    \"teams\": [                                                                                                      // List of all Teams under the Company account\n        {\n            \"id\": 1,                                                                                                // ID of the Team\n            \"name\": \"Test Company\"                                                                                  // Name of the Team\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Team Two\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"third team\"\n        }\n    ],\n    \"permissions\": {                                                                                                 // List of Permission settings of the User account\n        \"accounts.prospects\": true,\n        \"accounts.prospects.create\": true,\n        \"accounts.prospects.update\": true,\n        \"accounts.prospects.delete\": true,\n        \"accounts.clients\": true,\n        \"accounts.clients.create\": true,\n        \"accounts.clients.update\": true,\n        \"accounts.clients.delete\": true,\n        \"accounts.favorite\": true,\n        \"accounts.archive\": true,\n        \"accounts.convert\": true,\n        \"engagements.in-progress\": true,\n        \"engagements.completed\": true,\n        \"engagements.create\": true,\n        \"engagements.close\": true,\n        \"engagements.delete\": true,\n        \"pdfengagements.in-progress\": true,\n        \"pdfengagements.completed\": true,\n        \"pdfengagements.create\": true,\n        \"pdfengagements.close\": true,\n        \"pdfengagements.delete\": true\n    },\n    \"form_templates\": [                                                                                               // List of Form Templates available for this User account\n        {\n            \"id\": \"f1e9dcbe-85e9-4008-a48e-62b50de15539\",                                                             // The Form Template ID\n            \"key\": \"f1e9dcbe-85e9-4008-a48e-62b50de15539\",                                                            // The Form Template Key\n            \"title\": \"My Fact Finder\",                                                                                // Title of the Form Template\n            \"description\": \"Custom Fact Finder Template\",                                                             // Description of the Form Template\n            \"category\": \"Fact Finders\",                                                                               // Name of the category this Form Template belongs to\n            \"security\": \"high\",                                                                                       // Security status of the template. Can be high or low\n            \"owned\": true                                                                                             // Boolean value for the ownership of the template.\n        },\n        {\n            \"id\": \"292ef296-38c5-44e2-bb89-be1a80904764\",\n            \"key\": \"292ef296-38c5-44e2-bb89-be1a80904764\",\n            \"title\": \"2022 Tax Filing Organizer\",\n            \"description\": \"Tax Filing Checklist\",\n            \"category\": \"Other templates\",\n            \"security\": \"high\",\n            \"owned\": true\n        }\n    ],\n    \"pipelines\": [                                                                                                  // List of Pipelines available for the Company Account\n        {\n            \"id\": \"eda12bda-cdde-4d28-a0e8-180f0ef07e19\",                                                           // The Pipeline ID\n            \"type\": \"PROSPECT\",                                                                                     // Type Pipeline type. Can be PROSPECT or CLIENT\n            \"sort\": \"1\",                                                                                            // The ordering of the Pipelines \n            \"title\": \"Onboard\",                                                                                     // The title of the Pipeline\n            \"description\": \"Gather the information required to onboard and qualify your prospects.\",                // The description of the Pipeline\n            \"icon\": \"i_user_tag\"                                                                                    // The name of the icon associated with this Pipeline\n        },\n        {\n            \"id\": \"33e1d4b2-7243-4028-ad67-9bf4c171b057\",\n            \"type\": \"CLIENT\",\n            \"sort\": 1,\n            \"title\": \"Onboard\",\n            \"description\": \"Gather the information required to understand your client's wants and needs.\",\n            \"icon\": \"i_users_cog\"\n        },\n        {\n            \"id\": \"b6d1cf3d-ee16-4df3-adb6-906eebc3e139\",\n            \"type\": \"CLIENT\",\n            \"sort\": \"2\",\n            \"title\": \"Discover\",\n            \"description\": \"Gather the information required for a complete financial plan.\",\n            \"icon\": \"i_user_friends\"\n        },\n        {\n            \"id\": \"36eb5aff-48d0-4d1d-865b-713c6acf5f49\",\n            \"type\": \"PROSPECT\",\n            \"sort\": \"2\",\n            \"title\": \"Acquire\",\n            \"description\": \"Convert your prospects to clients.\",\n            \"icon\": \"i_award\"\n        }\n    ]\n}"}],"_postman_id":"bb3da53e-babf-4278-92de-c9b0069580a3"},{"name":"Get Form Templates","id":"49c3cfdf-0b04-4337-a949-c46061aa2eac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user/templates/forms","description":"<p>Returns the current authenticated user available From Templates.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","user","templates","forms"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"a1ef3043-799d-4813-b51b-ba6ff6179ff5","name":"Get Form Templates","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user/templates/forms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"f1e9dcbe-85e9-4008-a48e-62b50de15539\",                                                             // The Form Template ID\n        \"key\": \"f1e9dcbe-85e9-4008-a48e-62b50de15539\",                                                            // The Form Template Key\n        \"title\": \"My Fact Finder\",                                                                                // Title of the Form Template\n        \"description\": \"Custom Fact Finder Template\",                                                             // Description of the Form Template\n        \"category\": \"Fact Finders\",                                                                               // Name of the category this Form Template belongs to\n        \"security\": \"high\",                                                                                       // Security level of the template. Can be high or low\n        \"owned\": true                                                                                             // Boolean value for the current user's ownership of the template\n        },\n    {\n        \"id\": \"292ef296-38c5-44e2-bb89-be1a80904764\",\n        \"key\": \"292ef296-38c5-44e2-bb89-be1a80904764\",\n        \"title\": \"2022 Tax Filing Organizer\",\n        \"description\": \"Tax Filing Checklist\",\n        \"category\": \"Other templates\",\n        \"security\": \"high\",\n        \"owned\": true\n    }\n]"}],"_postman_id":"49c3cfdf-0b04-4337-a949-c46061aa2eac"},{"name":"Get PDF Templates","id":"abc69978-ba37-46e0-bb76-7eafe01e9387","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user/templates/pdfs","description":"<p>Returns the current authenticated user available PDF Templates.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","user","templates","pdfs"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"ab120409-15b0-41ee-86e0-eaee7ccae4ae","name":"Get PDF Templates","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user/templates/pdfs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"345d0619-650a-4a72-ae69-b078aa69986f\",                                            // The PDF Template ID\n        \"key\": \"345d0619-650a-4a72-ae69-b078aa69986f\",                                           // The PDF Template Key\n        \"title\": \"Account Opening\",                                                              // The title of the PDF Template\n        \"description\": \"Open new accounts with SSG\",                                             // The description of the PDF Template\n        \"category\": \"SSG  Pershing\",                                                             // The category this PDF Template belongs to\n        \"owned\": true                                                                            // Boolean value for the current user's ownership of the template \n    },\n    {\n        \"id\": \"08ee18ec-a6b4-4d82-8641-554a5a1a1932\",\n        \"key\": \"08ee18ec-a6b4-4d82-8641-554a5a1a1932\",\n        \"title\": \"Advisory Account Agreement\",\n        \"description\": \"Agreement PDF\",\n        \"category\": \"Custom PDF Templates\",\n        \"owned\": true\n    }\n]"}],"_postman_id":"abc69978-ba37-46e0-bb76-7eafe01e9387"},{"name":"Get Report Templates","id":"c8fa0e2f-55b0-48cb-b017-f58bf00d58e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user/templates/reports","description":"<p>Returns the current authenticated user available PDF Templates.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","user","templates","reports"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"76858e99-7330-48b6-9142-9e8d0a2a1cfa","name":"Get PDF Templates","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user/templates/reports"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",                                   // The Report Template ID\n        \"key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",                                  // The Report Template Key\n        \"title\": \"Cat\",                                                                 // The title of the Report Template\n        \"description\": \"Cat report\",                                                    // The description of the Report Template\n        \"category\": \"test\",                                                             // The category this Report Template belongs to\n        \"owned\": true                                                                   // Boolean value for the current user's ownership of the template \n    }\n]"}],"_postman_id":"c8fa0e2f-55b0-48cb-b017-f58bf00d58e3"},{"name":"Get Form Template","id":"0c22fb0f-2e5a-49c2-b32c-337d82bc1ead","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user/templates/forms/{INSERT_FORM_TEMPLATE_ID_HERE}","description":"<p>Returns one, specified form template.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","user","templates","forms","{INSERT_FORM_TEMPLATE_ID_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"ad16cd59-928d-4603-b67c-3d73e86918a2","name":"Get Form Template","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user/templates/forms/{INSERT_FORM_TEMPLATE_ID_HERE}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"key\": \"f1e9dcbe-85e9-4008-a48e-62b50de15539\",                                                          // The Form Template Key\n    \"title\": \"My Fact Finder\",                                                                              // Title of the Form Template\n    \"description\": \"Custom Fact Finder Template\",                                                           // Description of the Form Template\n    \"security\": \"high\",                                                                                     // Security level of the template. Can be high or low\n    \"category\": \"Fact Finders\",                                                                             // Name of the category this Form Template belongs to\n    \"version\": \"1.0\",                                                                                       // Currently published version of the Form Template\n    \"panels\": [                                                                                             // List of all Panels within the Form Template\n        {\n            \"key\": \"044bd1f2-ed44-46a4-b822-e6b79ad740ac\",                                                  // The Form Template Panel Key\n            \"form_key\": \"f1e9dcbe-85e9-4008-a48e-62b50de15539\",                                             // The Key of the Form Template\n            \"title\": \"Welcome\",                                                                             // The title of the Panel\n            \"description\": null,                                                                            // The description of the Panel\n            \"type\": \"START\",                                                                                // The page type of the Panel\n            \"sort\": 1,                                                                                      // The ordering of Panels within the Form Template\n            \"options\": null                                                                                 // Options set for the Panel\n        },\n        {\n            \"key\": \"2ac1dc2b-c482-4d5b-9843-9a54e3c70522\",\n            \"form_key\": \"f1e9dcbe-85e9-4008-a48e-62b50de15539\",\n            \"title\": \"GWN CLIENT ACCOUNT FORM\",\n            \"description\": null,\n            \"type\": \"ACCOUNT\",\n            \"sort\": 2,\n            \"options\": {\n                \"print_visibility\": \"\"\n            }\n        }\n    ],\n    \"groups\": [                                                                                             // List of all Groups within the Form Template\n        {\n            \"key\": \"ddc2734c-a9bb-4fc1-a2a7-043227802b9e\",                                                  // The Form Template Group Key                                          \n            \"panel_key\": \"044bd1f2-ed44-46a4-b822-e6b79ad740ac\",                                            // The Key of the Panel this Group belongs to\n            \"title\": \"Welcome\",                                                                             // The title of the Group\n            \"description\": null,                                                                            // The description of the Group\n            \"type\": \"SINGLE\",                                                                               // The type of the Group. Can be SINGLE or MULTIPLE\n            \"sort\": 1,                                                                                      // The ordering of Groups within the Panel\n            \"layout\": [                                                                                     // The layout of elements within this Group\n                [\n                    {\n                        \"key\": \"524a6a9e-53d7-8676-2e98-561b1a8d8429\",                                      // The key of the element\n                        \"size\": 12                                                                          // Size of the cell this element resides in\n                    }\n                ]\n            ],\n            \"options\": {                                                                                    // Option settings of the Group\n                \"float\": false,\n                \"heading\": true\n            }\n        },\n        {\n            \"key\": \"69cd52ef-6a7a-4974-9133-fee2e6c3a110\",\n            \"panel_key\": \"2ac1dc2b-c482-4d5b-9843-9a54e3c70522\",\n            \"title\": \"Personal Details\",\n            \"description\": null,\n            \"type\": \"SINGLE\",\n            \"sort\": 1,\n            \"layout\": [\n                [\n                    {\n                        \"key\": \"934e9a9e-21d6-4286-9c95-711a1e8d8950\",\n                        \"size\": \"5\"\n                    },\n                    {\n                        \"key\": \"e9be631c-b9d8-486d-a6a6-260bd3a48398\",\n                        \"size\": \"2\"\n                    },\n                    {\n                        \"key\": \"def89809-7e87-4fc4-bb0c-bc36ad15ab38\",\n                        \"size\": \"5\"\n                    }\n                ],\n                [\n                    {\n                        \"key\": \"54fdc940-f65f-48b8-981c-97f5a20de773\",\n                        \"size\": \"5\"\n                    },\n                    {\n                        \"key\": \"032b180c-a63b-4b8f-b15b-b06ecfe4ea04\",\n                        \"size\": \"3\"\n                    },\n                    {\n                        \"size\": \"4\",\n                        \"key\": \"f2ccf101-29c7-4200-88dd-fe8285c8d48e\"\n                    }\n                ],\n                [\n                    {\n                        \"size\": \"4\",\n                        \"key\": \"13e6ba22-7507-4b9e-a70f-33fdfc8d65c3\"\n                    },\n                    {\n                        \"size\": \"4\",\n                        \"key\": \"1e389689-ef38-40bb-984d-c51994dc5517\"\n                    },\n                    {\n                        \"size\": \"4\",\n                        \"key\": \"e0cbf8a5-2e9d-49f5-b950-8006c7781e32\"\n                    },\n                    {\n                        \"size\": \"12\",\n                        \"key\": \"20c42694-2c62-4cf5-8872-2266b15695ed\"\n                    }\n                ],\n                [\n                    {\n                        \"size\": \"12\",\n                        \"key\": \"54ab9dc6-ef9f-4efc-8a94-a1365b23e9f4\"\n                    }\n                ]\n            ],\n            \"options\": {\n                \"float\": false,\n                \"limit\": 50,\n                \"heading\": true\n            }\n        },\n        {\n            \"key\": \"ebe56019-2aee-4751-a4c2-dce7e93a4daa\",\n            \"panel_key\": \"2ac1dc2b-c482-4d5b-9843-9a54e3c70522\",\n            \"title\": \"Contact Details\",\n            \"description\": null,\n            \"type\": \"SINGLE\",\n            \"sort\": 2,\n            \"layout\": [\n                [\n                    {\n                        \"key\": \"4ced7a62-093a-42e6-a9a9-3811a51e0573\",\n                        \"size\": \"6\"\n                    },\n                    {\n                        \"key\": \"0262a8ff-7fb7-4e95-96ac-4687544bffd9\",\n                        \"size\": \"6\"\n                    }\n                ],\n                [\n                    {\n                        \"key\": \"9f3389d6-b4f6-426d-908e-39acc1c73913\",\n                        \"size\": \"6\"\n                    },\n                    {\n                        \"key\": \"1320dc83-8d45-43ee-849e-9a2eeeb0e03e\",\n                        \"size\": \"6\"\n                    }\n                ],\n                [\n                    {\n                        \"key\": \"c7da4a15-7d80-48cf-9275-0ae9f3346c40\",\n                        \"size\": \"12\"\n                    }\n                ],\n                [\n                    {\n                        \"key\": \"a017ab81-f395-43f7-a2c7-264f4e935042\",\n                        \"size\": \"12\"\n                    }\n                ]\n            ],\n            \"options\": {\n                \"float\": false,\n                \"limit\": 50,\n                \"heading\": true\n            }\n        }\n    ],\n    \"pdfs\": [                                                                           // List of PDFs associated with that Form Template\n        {\n            \"form_key\": \"f1e9dcbe-85e9-4008-a48e-62b50de15539\",                         // Key of the Form Template                               \n            \"pdf_key\": \"d44b3e75-067f-4c0d-bb8b-1ac1372eb71e\",                          // Key of the PDF Template\n            \"options\": {                                                                // Prefilling options for the PDF\n                \"fill\": null,\n                \"signers\": {\n                    \"Owner\": {\n                        \"type\": \"CLIENT\",\n                        \"email\": \"\",\n                        \"phone\": {\n                            \"code\": \"\",\n                            \"number\": \"\"\n                        },\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    }\n                },\n                \"esignature\": {                                                           // Signature settings of the PDF Template\n                    \"auth\": \"email\",                                                      // Authorization type of the esignature. Can be email, sms and password\n                    \"provider\": \"docusign\",                                               // Provider of the esignature. Can be docusign or precisefp\n                    \"disableSending\": true                                                // Boolean value, use to disable automatic sending the associated PDF Engagement\n                }\n            },\n            \"elements\": [                                                                 // List of the Form Template elements mapped to the associated PDF fields\n                {\n                    \"pdf_key\": \"d44b3e75-067f-4c0d-bb8b-1ac1372eb71e\",                    // The key of the PDF Template\n                    \"form_key\": \"f1e9dcbe-85e9-4008-a48e-62b50de15539\",                   // The key of the Form Template\n                    \"element_key\": \"54ab9dc6-ef9f-4efc-8a94-a1365b23e9f4\",                // The key of the Form Template element\n                    \"group\": \"Owner\",                                                     // Title of the PDF Template Group\n                    \"name\": \"client_name_account_title_custodian\",                        // Name of the PDF Template field\n                    \"options\": {                                                          \n                        \"row\": 1,\n                        \"pick\": \"\",\n                        \"panel\": \"ACCOUNT\"\n                    }\n                },\n                {\n                    \"pdf_key\": \"d44b3e75-067f-4c0d-bb8b-1ac1372eb71e\",\n                    \"form_key\": \"f1e9dcbe-85e9-4008-a48e-62b50de15539\",\n                    \"element_key\": \"a017ab81-f395-43f7-a2c7-264f4e935042\",\n                    \"group\": \"Owner\",\n                    \"name\": \"stret_address_if_different_from_mailing_address\",\n                    \"options\": {\n                        \"row\": 1,\n                        \"pick\": \"all\",\n                        \"panel\": \"ACCOUNT\"\n                    }\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"0c22fb0f-2e5a-49c2-b32c-337d82bc1ead"},{"name":"Get PDF Template","id":"03d2d923-3e07-4a70-9fb8-f2125538bdff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user/templates/pdfs/{INSERT_PDF_TEMPLATE_ID_HERE}","description":"<p>Returns one, specified PDF Template.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","user","templates","pdfs","{INSERT_PDF_TEMPLATE_ID_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"85e50dbb-a694-4b2e-80ac-99dc148d9231","name":"Get PDF Template","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user/templates/pdfs/{INSERT_PDF_TEMPLATE_ID_HERE}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"key\": \"345d0619-650a-4a72-ae69-b078aa69986f\",                 // The PDF Template Key\n    \"title\": \"Account Opening\",                                    // The title of the PDF Template\n    \"description\": \"Open new accounts with SSG\",                   // The description of the PDF Template\n    \"category\": \"SSG  Pershing\",                                   // The category this PDF Template belongs to\n    \"version\": \"1.0\",                                              // Currently published version of the PDF Template\n    \"fields\": [                                                    // Structure of fields on the PDF Template\n        {\n            \"key\": \"2188e962-8896-4c7b-a018-d490560bb5ff\",         // The PDF Element field key\n            \"pdf_key\": \"345d0619-650a-4a72-ae69-b078aa69986f\",     // The key of the PDF Template\n            \"page\": 3,                                             // The location of the field\n            \"name\": \"AccountNumber\",                               // The name of the field\n            \"group\": \"Internal\",                                   // The group the field belongs to\n            \"entity\": \"\",                                          // The dataset classification to automatically pre-fill this field                             \n            \"type\": \"TEXT\",                                        // The type of the field. Can be TEXT, NUMBER, CURRENCY, CHECKBOX, SIGNATURE, INITIALS, SIGNERNAME or SIGNEDAT.\n            \"coordinates\": {                                       // Array of field coordinates, specifying the size and location of the field on the underlying PDF\n                \"h\": \"0.9375\",\n                \"w\": \"12.249512672424316\",\n                \"x\": \"9.43825\",\n                \"y\": \"4.586992187499998\"\n            },\n            \"options\": {                                            // List of options for the field \n                \"comb\": false,\n                \"align\": \"left\",\n                \"default\": \"\",\n                \"fontSize\": 0,\n                \"required\": false,\n                \"charLimit\": 20,                                                \n                \"multiline\": false,\n                \"required_rule\": \"with\"                                         \n            }\n        },\n        {\n            \"key\": \"333e8e78-232b-4a0b-9ff8-cf7db5b33076\",\n            \"pdf_key\": \"345d0619-650a-4a72-ae69-b078aa69986f\",\n            \"page\": 3,\n            \"name\": \"RiaNumber\",\n            \"group\": \"Internal\",\n            \"entity\": \"\",\n            \"type\": \"TEXT\",\n            \"coordinates\": {\n                \"h\": \"0.9375\",\n                \"w\": \"3.245115280151367\",\n                \"x\": \"24.167499999999997\",\n                \"y\": \"4.586992187499998\"\n            },\n            \"options\": {\n                \"comb\": false,\n                \"align\": \"left\",\n                \"default\": \"\",\n                \"fontSize\": 0,\n                \"required\": false,\n                \"charLimit\": 10,\n                \"multiline\": false\n            }\n        },\n        {\n            \"key\": \"b661c695-1b6a-409a-b99f-31d4ecbfb6e0\",\n            \"pdf_key\": \"345d0619-650a-4a72-ae69-b078aa69986f\",\n            \"page\": 3,\n            \"name\": \"ServiceType__1\",\n            \"group\": \"Account\",\n            \"entity\": \"\",\n            \"type\": \"CHECKBOX\",\n            \"coordinates\": {\n                \"h\": \"0.5\",\n                \"w\": \"0.5\",\n                \"x\": \"8.832624999999998\",\n                \"y\": \"6.931\"\n            },\n            \"options\": {\n                \"default\": \"0\",\n                \"required\": true,\n                \"checkOnlyOp\": \"==\",\n                \"checkOnlyValue\": \"1\",\n                \"required_without\": \"Account.ServiceType__*\"\n            }\n        },\n        {\n            \"key\": \"0e92a7e8-ef33-4662-b50d-fc313dec1052\",\n            \"pdf_key\": \"345d0619-650a-4a72-ae69-b078aa69986f\",\n            \"page\": 13,\n            \"name\": \"Signature14B__date\",\n            \"group\": \"AccountOwner2\",\n            \"entity\": \"\",\n            \"type\": \"SIGNEDAT\",\n            \"coordinates\": {\n                \"h\": \"1.17626953125\",\n                \"w\": \"9.3896484375\",\n                \"x\": \"25.648500953674308\",\n                \"y\": \"39.489750476837145\"\n            },\n            \"options\": {\n                \"comb\": false,\n                \"align\": \"right\",\n                \"default\": \"\",\n                \"fontSize\": 12,\n                \"required\": false,\n                \"charLimit\": 10,\n                \"dateFormat\": \"mm/dd/yyyy\"\n            }\n        }\n    ]\n}"}],"_postman_id":"03d2d923-3e07-4a70-9fb8-f2125538bdff"},{"name":"Get Report Template","id":"be446101-3f78-4b66-86d6-b72d5d2fe2c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user/templates/reports/{{report_template_key}}","description":"<p>Returns one, specified PDF Template.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","user","templates","reports","{{report_template_key}}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"925a1f7c-82c6-4039-bd18-2e35f2013317","name":"Get PDF Template","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user/templates/reports/{{report_template_key}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",                                      // Report template ID\n    \"form_template_key\": null,                                                          \n    \"title\": \"Cat\",                                                                     // Report's title\n    \"description\": \"Cat report\",                                                        // Report's description\n    \"category\": \"test\",                                                                 // Report's category\n    \"type\": \"accounts\",                                                                 // Report's type\n    \"version\": null,                                                                    // Report's version\n    \"filters\": null,                                                                    // Report's filters\n    \"sources\": [\n        {\n            \"key\": \"20432867-94b5-43d7-b119-ea07f480252e\",                              // Source ID\n            \"report_key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",                       // The Report Template ID\n            \"name\": \"account\",                                                          // Source name\n            \"sort\": 1,                                                                  // Source order number in the sources list\n            \"options\": null                                                             // Source options\n        },\n        {\n            \"key\": \"2d7db0f1-bf71-458a-9e27-4a19d5fcfc3b\",\n            \"report_key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",\n            \"name\": \"client\",\n            \"sort\": 2,\n            \"options\": null\n        },\n        {\n            \"key\": \"4159ee22-09d6-4a9c-a447-122fa8220d4d\",\n            \"report_key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",\n            \"name\": \"coclient\",\n            \"sort\": 3,\n            \"options\": null\n        }\n    ],\n    \"columns\": [\n        {\n            \"key\": \"9693f64a-5d84-483f-841e-9f4eea9a9aaa\",                              // Column's ID\n            \"report_key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",                       // The Report Template ID\n            \"entity\": null,                                                             // Entity reference\n            \"type\": \"option\",                                                           // Column's type\n            \"title\": \"Type\",                                                            // Column's title\n            \"description\": \"The type of account\",                                       // Column's description\n            \"options\": null,                                                            // Column's options\n            \"sort\": 1                                                                   // Column's order number in the columns list\n        },\n        {\n            \"key\": \"8b10955e-4c71-45aa-82cc-fa6e95af5d47\",\n            \"report_key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",\n            \"entity\": null,\n            \"type\": \"text\",\n            \"title\": \"Name\",\n            \"description\": \"The name of the account\",\n            \"options\": null,\n            \"sort\": 2\n        },\n        {\n            \"key\": \"38c788c8-e7f3-47bc-b9b5-c89067925e8d\",\n            \"report_key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",\n            \"entity\": null,\n            \"type\": \"text\",\n            \"title\": \"First Name\",\n            \"description\": \"The first name of the client\",\n            \"options\": null,\n            \"sort\": 3\n        },\n        {\n            \"key\": \"cac923c0-1f42-4108-920c-ea34a8eaa2c6\",\n            \"report_key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",\n            \"entity\": null,\n            \"type\": \"text\",\n            \"title\": \"Last Name\",\n            \"description\": \"The last name of the client\",\n            \"options\": null,\n            \"sort\": 4\n        },\n        {\n            \"key\": \"59e05b68-295a-4e50-b169-4de809540c13\",\n            \"report_key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",\n            \"entity\": null,\n            \"type\": \"text\",\n            \"title\": \"Email\",\n            \"description\": \"The email address of the client\",\n            \"options\": null,\n            \"sort\": 5\n        },\n        {\n            \"key\": \"281b6c0b-b21b-4c45-950d-a5a7e698bf7e\",\n            \"report_key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",\n            \"entity\": null,\n            \"type\": \"phone\",\n            \"title\": \"Mobile Phone\",\n            \"description\": \"The mobile phone of the client\",\n            \"options\": null,\n            \"sort\": 6\n        }\n    ],\n    \"fields\": [\n        {\n            \"key\": \"36f8d791-bbac-42ab-81ff-898b4e8ce767\",                              // Field's ID\n            \"report_key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",                       // The Report Template ID\n            \"column_key\": \"9693f64a-5d84-483f-841e-9f4eea9a9aaa\",                       // Column's ID\n            \"source_key\": \"20432867-94b5-43d7-b119-ea07f480252e\",                       // Source ID\n            \"name\": \"type\",                                                             // Field name\n            \"options\": null                                                             // Field's options\n        },\n        {\n            \"key\": \"b7784c05-d5be-4f5c-b71d-237a9fea9955\",\n            \"report_key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",\n            \"column_key\": \"8b10955e-4c71-45aa-82cc-fa6e95af5d47\",\n            \"source_key\": \"20432867-94b5-43d7-b119-ea07f480252e\",\n            \"name\": \"name\",\n            \"options\": null\n        },\n        {\n            \"key\": \"d4841587-a4fd-4ff2-a02a-ca61216ba27b\",\n            \"report_key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",\n            \"column_key\": \"38c788c8-e7f3-47bc-b9b5-c89067925e8d\",\n            \"source_key\": \"2d7db0f1-bf71-458a-9e27-4a19d5fcfc3b\",\n            \"name\": \"firstname\",\n            \"options\": null\n        },\n        {\n            \"key\": \"d7d0c424-7c17-4889-8b23-824d1735aad9\",\n            \"report_key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",\n            \"column_key\": \"cac923c0-1f42-4108-920c-ea34a8eaa2c6\",\n            \"source_key\": \"2d7db0f1-bf71-458a-9e27-4a19d5fcfc3b\",\n            \"name\": \"lastname\",\n            \"options\": null\n        },\n        {\n            \"key\": \"bf409e39-43d0-4b46-8295-63696202796d\",\n            \"report_key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",\n            \"column_key\": \"59e05b68-295a-4e50-b169-4de809540c13\",\n            \"source_key\": \"2d7db0f1-bf71-458a-9e27-4a19d5fcfc3b\",\n            \"name\": \"email\",\n            \"options\": null\n        },\n        {\n            \"key\": \"b7f73fff-0273-4710-b9fa-f0a9cee24f81\",\n            \"report_key\": \"74ba7b8b-dcfa-41e7-858a-6e3344c7087b\",\n            \"column_key\": \"281b6c0b-b21b-4c45-950d-a5a7e698bf7e\",\n            \"source_key\": \"2d7db0f1-bf71-458a-9e27-4a19d5fcfc3b\",\n            \"name\": \"phone\",\n            \"options\": null\n        }\n    ]\n}"}],"_postman_id":"be446101-3f78-4b66-86d6-b72d5d2fe2c2"},{"name":"Get Underlying PDF","id":"4f8a14b4-35b8-477c-9660-23f2c2fc08d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user/templates/pdfs/{INSERT_PDF_TEMPLATE_ID_HERE}/file","description":"<p>Returns a PDF file.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","user","templates","pdfs","{INSERT_PDF_TEMPLATE_ID_HERE}","file"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"362613d5-7cbb-40d9-a3b7-3b65f0c4ee92","name":"Get Underlying PDF","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user/templates/pdfs/{INSERT_PDF_TEMPLATE_ID_HERE}/file"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"PDF content here"}],"_postman_id":"4f8a14b4-35b8-477c-9660-23f2c2fc08d2"},{"name":"Get User's Secondary Contacts","id":"c1f6256a-bb35-401c-8665-e7fd176d53a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/user/secondary-contacts?sort=-id&limit=50&offset=0&query=&type=&pipeline=","description":"<p>Get User's Secondary Contacts</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","user","secondary-contacts"],"host":["app.precisefp.com"],"query":[{"description":{"content":"<p>Sort results by: id, type, quality, pipeline, favorited, archived, created_at, updated_at, client.first_name, client.last_name, client.email, coclient.first_name, coclient.last_name, coclient.email</p>\n","type":"text/plain"},"key":"sort","value":"-id"},{"description":{"content":"<p>Limit results</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Offset results</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"description":{"content":"<p>Search client/co-client first name, last name or email</p>\n","type":"text/plain"},"key":"query","value":""},{"description":{"content":"<p>Filter results by: client, prospect, favorite, archived, all</p>\n","type":"text/plain"},"key":"type","value":""},{"description":{"content":"<p>Filter results by pipeline id</p>\n","type":"text/plain"},"key":"pipeline","value":""}],"variable":[]}},"response":[{"id":"1d064549-51d9-482c-87fc-2419a4733652","name":"Get User's Secondary Contacts","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.precisefp.com/api/v3/user/secondary-contacts?sort=-id&limit=50&offset=0&query=","protocol":"https","host":["app.precisefp.com"],"path":["api","v3","user","secondary-contacts"],"query":[{"key":"sort","value":"-id","description":"Sort results by: id, code, first_name, last_name, email"},{"key":"limit","value":"50","description":"Limit results"},{"key":"offset","value":"0","description":"Offset results"},{"key":"query","value":"","description":"Search secondary contact first_name, last_name or email"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 3,\n            \"code\": \"kjfsdr\",\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"name\": \"John Doe\",\n            \"email\": \"test@precisefp.com\",\n            \"phone\": {\n                \"code\": \"+1\",\n                \"country\": \"US\",\n                \"ext\": null,\n                \"number\": \"3123211212\"\n            },\n            \"group\": null,\n            \"auto_add\": true\n        }\n    ],\n    \"params\": {\n        \"limit\": \"50\",\n        \"offset\": 0,\n        \"sort\": \"id\",\n        \"query\": null,\n        \"total\": 1\n    }\n}"}],"_postman_id":"c1f6256a-bb35-401c-8665-e7fd176d53a6"},{"name":"Create Secondary Contact for User","id":"23430202-93bb-414f-a8f0-a218d398ca59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",           // The first name\n    \"last_name\": \"Doe\",             // The last name\n    \"email\": \"test@precisefp.com\",  // The email\n    \"phone\": {                      // The mobile phone\n        \"code\": \"+1\",               // The country calling code\n        \"number\": \"3123211212\",     // The phone number\n        \"country\": \"US\"             // 2 letter representation of the phone number's country\n    },\n    \"auto_add\": 1                   // Determines if secondary contact should be auto-added to all clients and prospects\n}","options":{"raw":{"language":"json"}}},"url":"http://app.precisefp.com/api/v3/user/secondary-contacts","description":"<p>Create Secondary Contact for User</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"http","path":["api","v3","user","secondary-contacts"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"f2a8bd51-cc17-440d-80b9-6972a88ff6f7","name":"Create Secondary Contact for User","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",           // The first name\n    \"last_name\": \"Doe\",             // The last name\n    \"email\": \"test@precisefp.com\",  // The email\n    \"phone\": {                      // The mobile phone\n        \"code\": \"+1\",               // The country calling code\n        \"number\": \"3123211212\",     // The phone number\n        \"country\": \"US\"             // 2 letter representation of the phone number's country\n    },\n    \"auto_add\": true                   // Determines if secondary contact should be auto-added to all clients and prospects\n}","options":{"raw":{"language":"json"}}},"url":"http://app.precisefp.com/api/v3/user/secondary-contacts"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 30,                       // The secondary contact's id\n    \"code\": \"zovkkm\",               // The secondary contact's code\n    \"first_name\": \"John\",           // The first name\n    \"last_name\": \"Doe\",             // The last name\n    \"name\": \"John Doe\",             // The full name\n    \"email\": \"test@precisefp.com\",  // The email\n    \"phone\": {                      // The mobile phone\n        \"code\": \"+1\",               // The country calling code\n        \"number\": \"3123211212\",     // The phone number\n        \"country\": \"US\"             // 2 letter representation of the phone number's country\n    },\n    \"group\": null,                  // The secondary contact's group\n    \"auto_add\": true               // Determines if secondary contact should be auto-added to all clients and prospects\n}"}],"_postman_id":"23430202-93bb-414f-a8f0-a218d398ca59"},{"name":"Update User's Secondary Contact","id":"d5e75275-a337-4f9d-b118-2d11c06d135a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",           // The first name\n    \"last_name\": \"Doe\",             // The last name\n    \"email\": \"test@precisefp.com\",  // The email\n    \"phone\": {                      // The mobile phone\n        \"code\": \"+1\",               // The country calling code\n        \"number\": \"3123211212\",     // The phone number\n        \"country\": \"US\"             // 2 letter representation of the phone number's country\n    },\n    \"auto_add\": 1                   // Determines if secondary contact should be auto-added to all clients and prospects\n}","options":{"raw":{"language":"json"}}},"url":"http://app.precisefp.com/api/v3/user/secondary-contacts/{{office_contact}}","description":"<p>Update User's Secondary Contact</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"http","path":["api","v3","user","secondary-contacts","{{office_contact}}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"488a0d52-f0bd-49fe-a55a-83ea6974d77c","name":"Update User's Secondary Contact","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",           // The first name\n    \"last_name\": \"Doe\",             // The last name\n    \"email\": \"test@precisefp.com\",  // The email\n    \"phone\": {                      // The mobile phone\n        \"code\": \"+1\",               // The country calling code\n        \"number\": \"3123211212\",     // The phone number\n        \"country\": \"US\"             // 2 letter representation of the phone number's country\n    },\n    \"auto_add\": true                   // Determines if secondary contact should be auto-added to all clients and prospects\n}","options":{"raw":{"language":"json"}}},"url":"http://app.precisefp.com/api/v3/user/secondary-contacts/{{office_contact}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 30,                       // The secondary contact's id\n    \"code\": \"zovkkm\",               // The secondary contact's code\n    \"first_name\": \"John\",           // The first name\n    \"last_name\": \"Doe\",             // The last name\n    \"name\": \"John Doe\",             // The full name\n    \"email\": \"test@precisefp.com\",  // The email\n    \"phone\": {                      // The mobile phone\n        \"code\": \"+1\",               // The country calling code\n        \"number\": \"3123211212\",     // The phone number\n        \"country\": \"US\"             // 2 letter representation of the phone number's country\n    },\n    \"group\": null,                  // The secondary contact's group\n    \"auto_add\": true               // Determines if secondary contact should be auto-added to all clients and prospects\n}"}],"_postman_id":"d5e75275-a337-4f9d-b118-2d11c06d135a"},{"name":"Delete User's Secondary Contact","id":"1837cdab-cd96-49a8-a4a7-aa553c934b71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"password\": \"password\" // Logged user's password\n}","options":{"raw":{"language":"json"}}},"url":"http://app.precisefp.com/api/v3/user/secondary-contacts/{{office_contact}}","description":"<p>Delete User's Secondary Contact</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"http","path":["api","v3","user","secondary-contacts","{{office_contact}}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"323cc607-7fa3-44fd-9041-f1ddb7eea786","name":"Delete User's Secondary Contact","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"password\": \"password\" // Logged user's password\n}","options":{"raw":{"language":"json"}}},"url":"http://app.precisefp.com/api/v3/user/secondary-contacts/{{office_contact}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1837cdab-cd96-49a8-a4a7-aa553c934b71"}],"id":"5a87ea6a-27eb-4148-a426-fcac65330ad5","description":"<p>All endpoints related with the current authenticated user.</p>\n","_postman_id":"5a87ea6a-27eb-4148-a426-fcac65330ad5","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}}},{"name":"Users","item":[{"name":"Get Users","id":"f8ce3a05-fa22-4058-9696-1199e9d9ee04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/users?sort=-id&limit=50&offset=0&query=&role=","description":"<p>Returns a collection of accounts.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","users"],"host":["app.precisefp.com"],"query":[{"description":{"content":"<p>Sort results by: id, first_name, last_name or email</p>\n","type":"text/plain"},"key":"sort","value":"-id"},{"description":{"content":"<p>Limit results</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Offset results</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"description":{"content":"<p>Search user first name, last name or email</p>\n","type":"text/plain"},"key":"query","value":""},{"description":{"content":"<p>Filter results by role</p>\n","type":"text/plain"},"key":"role","value":""}],"variable":[]}},"response":[{"id":"b99aa59a-9a18-4f62-bf15-f247d69cc441","name":"Get Users","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.precisefp.com/api/v3/users?sort=-id&limit=50&offset=0&query=&role=","protocol":"https","host":["app.precisefp.com"],"path":["api","v3","users"],"query":[{"key":"sort","value":"-id","description":"Sort results by: id, first_name, last_name or email"},{"key":"limit","value":"50","description":"Limit results"},{"key":"offset","value":"0","description":"Offset results"},{"key":"query","value":"","description":"Search user first name, last name or email"},{"key":"role","value":"","description":"Filter results by role"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 13 Dec 2024 10:29:46 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 23,\n            \"first_name\": \"Test\",\n            \"last_name\": \"Test\",\n            \"email\": \"test@precisefp.com\",\n            \"phone\": {\n                \"code\": \"+1\",\n                \"number\": \"2312312312\",\n                \"country\": \"US\"\n            },\n            \"photo\": null,\n            \"timezone\": \"Europe/Warsaw\",\n            \"currency\": \"USD\",\n            \"role\": \"user\",\n            \"team\": {\n                \"id\": 4,\n                \"name\": \"Test\"\n            },\n            \"teams\": [\n                {\n                    \"id\": 4,\n                    \"name\": \"Test\"\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Test 2\"\n                }\n            ]\n        }\n    ],\n    \"params\": {\n        \"limit\": \"50\",\n        \"offset\": 5,\n        \"sort\": \"-id\",\n        \"query\": null,\n        \"role\": null,\n        \"total\": 1\n    }\n}"}],"_postman_id":"f8ce3a05-fa22-4058-9696-1199e9d9ee04"},{"name":"Create User","event":[{"listen":"prerequest","script":{"exec":["/* Strip comments from json body */\r","if (pm?.request?.body?.options?.raw?.language === 'json') {\r","    const rawData = pm.request.body.toString();\r","    const strippedData = rawData.replace(\r","        /\\\\\"|\"(?:\\\\\"|[^\"])*\"|(\\/\\/.*|\\/\\*[\\s\\S]*?\\*\\/)/g,\r","        (m, g) => g ? \"\" : m\r","    );\r","    pm.request.body.update(JSON.stringify(JSON.parse(strippedData)));\r","    pm.request.headers.add('Content-Type: application/json');\r","}"],"type":"text/javascript","packages":{},"id":"c3137751-d838-45b6-bf71-ff3c8bbca472"}}],"id":"e0cede5e-9cee-4c98-a836-dee83af8dba3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"first_name\": \"Test\",                   // The first name\r\n    \"last_name\": \"Test\",                    // The last name\r\n    \"email\": \"test_create@precisefp.com\",   // The email (unique)\r\n    \"timezone\": \"Europe/Warsaw\",            // The timezone\r\n    \"role\": \"office\",                       // The role\r\n    \"teams\": [4, 6],                        // Ids of teams (first will be default one)\r\n    \"phone\": {                              // The mobile phone\r\n        \"code\": \"+1\",                       // The country calling code\r\n        \"number\": \"3123211212\",             // The phone number\r\n        \"country\": \"US\"                     // 2 letter representation of the phone number's country\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/users","description":"<p>Creates a new account record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","users"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"79861c06-a5d7-4330-b9ec-885531b234a6","name":"Create User","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"first_name\": \"Test\",                   // The first name\r\n    \"last_name\": \"Test\",                    // The last name\r\n    \"email\": \"test_create@precisefp.com\",   // The email (unique)\r\n    \"timezone\": \"Europe/Warsaw\",            // The timezone\r\n    \"role\": \"office\",                       // The role\r\n    \"teams\": [4, 6],                        // Ids of teams (first will be default one)\r\n    \"phone\": {                              // The mobile phone\r\n        \"code\": \"+1\",                       // The country calling code\r\n        \"number\": \"3123211212\",             // The phone number\r\n        \"country\": \"US\"                     // 2 letter representation of the phone number's country\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/users"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 19 Dec 2024 00:43:25 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 41,\n    \"first_name\": \"Test\",\n    \"last_name\": \"Test\",\n    \"email\": \"test_create@precisefp.com\",\n    \"phone\": {\n        \"code\": \"+1\",\n        \"number\": \"3123211212\",\n        \"country\": \"US\"\n    },\n    \"photo\": null,\n    \"timezone\": \"Europe/Warsaw\",\n    \"currency\": \"USD\",\n    \"role\": \"office\",\n    \"team\": {\n        \"id\": 4,\n        \"name\": \"Test Integrations\"\n    },\n    \"teams\": [\n        {\n            \"id\": 4,\n            \"name\": \"Test Integrations\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Second team\"\n        }\n    ]\n}"}],"_postman_id":"e0cede5e-9cee-4c98-a836-dee83af8dba3"},{"name":"Get User","id":"8c028c0e-b91e-4718-8796-b6ba1e6c8cce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/users/{{user}}","description":"<p>Returns one, specific account.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","users","{{user}}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"5ee243e4-18b5-4dec-8585-56f03fedba9f","name":"Get User","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/users/{{user}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 19 Dec 2024 00:45:51 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 31,\n    \"first_name\": \"Test\",\n    \"last_name\": \"Test\",\n    \"email\": \"test@precisefp.com\",\n    \"phone\": {\n        \"code\": \"+1\",\n        \"number\": \"312321121222\",\n        \"country\": \"US\"\n    },\n    \"photo\": null,\n    \"timezone\": \"Europe/Warsaw\",\n    \"currency\": \"USD\",\n    \"role\": \"user\",\n    \"team\": {\n        \"id\": 4,\n        \"name\": \"Test Integrations\"\n    },\n    \"teams\": [\n        {\n            \"id\": 4,\n            \"name\": \"Test Integrations\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Second team\"\n        }\n    ]\n}"}],"_postman_id":"8c028c0e-b91e-4718-8796-b6ba1e6c8cce"},{"name":"Update User","event":[{"listen":"prerequest","script":{"exec":["/* Strip comments from json body */\r","if (pm?.request?.body?.options?.raw?.language === 'json') {\r","    const rawData = pm.request.body.toString();\r","    const strippedData = rawData.replace(\r","        /\\\\\"|\"(?:\\\\\"|[^\"])*\"|(\\/\\/.*|\\/\\*[\\s\\S]*?\\*\\/)/g,\r","        (m, g) => g ? \"\" : m\r","    );\r","    pm.request.body.update(JSON.stringify(JSON.parse(strippedData)));\r","    pm.request.headers.add('Content-Type: application/json');\r","}"],"type":"text/javascript","packages":{},"id":"2cc30b6d-dad1-4beb-b00f-449cb4b352d7"}}],"id":"06296b7e-1c7b-4485-a36f-246133b55ddd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"first_name\": \"Test\",                   // The first name\r\n    \"last_name\": \"Test\",                    // The last name\r\n    \"email\": \"test_update@precisefp.com\",   // The email (unique)\r\n    \"timezone\": \"Europe/Warsaw\",            // The timezone\r\n    \"role\": \"user\",                         // The role\r\n    \"teams\": [4, 6],                        // Ids of teams (first will be default one)\r\n    \"phone\": {                              // The mobile phone\r\n        \"code\": \"+1\",                       // The country calling code\r\n        \"number\": \"312321121222\",           // The phone number\r\n        \"country\": \"US\"                     // 2 letter representation of the phone number's country\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/users/{{user}}","description":"<p>Updates an account record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","users","{{user}}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"84133ab8-c223-47ed-93df-19788a574321","name":"Update User","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"first_name\": \"Test\",                   // The first name\r\n    \"last_name\": \"Test\",                    // The last name\r\n    \"email\": \"test_update@precisefp.com\",   // The email (unique)\r\n    \"timezone\": \"Europe/Warsaw\",            // The timezone\r\n    \"role\": \"user\",                         // The role\r\n    \"teams\": [4, 6],                        // Ids of teams (first will be default one)\r\n    \"phone\": {                              // The mobile phone\r\n        \"code\": \"+1\",                       // The country calling code\r\n        \"number\": \"312321121222\",           // The phone number\r\n        \"country\": \"US\"                     // 2 letter representation of the phone number's country\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/users/{{user}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 19 Dec 2024 00:41:53 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 31,\n    \"first_name\": \"Test\",\n    \"last_name\": \"Test\",\n    \"email\": \"test_update@precisefp.com\",\n    \"phone\": {\n        \"code\": \"+1\",\n        \"number\": \"312321121222\",\n        \"country\": \"US\"\n    },\n    \"photo\": null,\n    \"timezone\": \"Europe/Warsaw\",\n    \"currency\": \"USD\",\n    \"role\": \"user\",\n    \"team\": {\n        \"id\": 4,\n        \"name\": \"Test Integrations\"\n    },\n    \"teams\": [\n        {\n            \"id\": 4,\n            \"name\": \"Test Integrations\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Second team\"\n        }\n    ]\n}"}],"_postman_id":"06296b7e-1c7b-4485-a36f-246133b55ddd"},{"name":"Update User Photo","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"09d19f37-32d9-4e0c-95ab-e423f37ee499"}}],"id":"fbb9e6b2-09a4-43a7-a6d6-c1c6dc3b7d0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"photo","type":"file","value":null}]},"url":"https://app.precisefp.com/api/v3/users/{{user}}/photo","description":"<p>Updates an account record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","users","{{user}}","photo"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"425b60f9-629e-4789-a6dc-4aca3df4d86e","name":"Update User Photo","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"photo","type":"file","src":["/C:/Users/dfomicz/Downloads/l010e-6-e09-mainpreview-96da4453333b8d1eeb6aece57e0096b62b30a7a5d74dfb5c1b2909cac27b817d.jpg"]}],"options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/users/{{user}}/photo"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 14 Jan 2025 13:57:26 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 56,\n    \"first_name\": \"A\",\n    \"last_name\": \"A\",\n    \"email\": \"aaaa@precisefp.com\",\n    \"phone\": {\n        \"code\": \"+1\",\n        \"number\": \"3123211212\",\n        \"country\": \"US\"\n    },\n    \"photo\": \"https://pfp.local/media/image/user/56/6XOcWxfqIc9OCwXB7iygqBFIh7muMWSuTOkWkR12.jpg\",\n    \"timezone\": \"Europe/Warsaw\",\n    \"currency\": \"USD\",\n    \"role\": \"office\",\n    \"team\": {\n        \"id\": 40,\n        \"name\": \"c\"\n    },\n    \"teams\": []\n}"}],"_postman_id":"fbb9e6b2-09a4-43a7-a6d6-c1c6dc3b7d0c"},{"name":"Delete User","id":"560e74ad-e534-4e50-8a19-ad565bb01e68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"password\": \"your_password_here\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/users/{{user}}","description":"<p>Deletes an account record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","users","{{user}}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"ad1a3cd7-b22a-4617-a040-939bd0cc4556","name":"Delete User","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"password\": \"your_password_here\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://app.precisefp.com/api/v3/users/{{user}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"560e74ad-e534-4e50-8a19-ad565bb01e68"}],"id":"58d26506-041b-4a60-ab8f-0a6deece6119","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"1f4c73c9-595f-4c6a-b61f-43709f04e716"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"9aa5bb90-503a-40ba-a74c-20d467bacf62"}}],"_postman_id":"58d26506-041b-4a60-ab8f-0a6deece6119","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}}},{"name":"Teams","item":[{"name":"Users","item":[{"name":"Get Team Users","id":"62b62cd8-5668-43ce-b479-da89eccae109","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/teams/{{team}}/users","description":"<p>Returns a collection of accounts.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","teams","{{team}}","users"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"9225a4bd-542e-4ec2-8002-b569b7553b05","name":"Get Team Users","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/teams/{{team}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 08 Jan 2025 11:59:23 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 47,\n        \"first_name\": \"Api\",\n        \"last_name\": \"Test\",\n        \"email\": \"api_test@precisefp.com\",\n        \"role\": \"company\"\n    },\n    {\n        \"id\": 49,\n        \"first_name\": \"Test\",\n        \"last_name\": \"Test\",\n        \"email\": \"test_create67@precisefp.com\",\n        \"role\": \"office\"\n    }\n]"}],"_postman_id":"62b62cd8-5668-43ce-b479-da89eccae109"},{"name":"Create Team User","event":[{"listen":"prerequest","script":{"exec":["/* Strip comments from json body */\r","if (pm?.request?.body?.options?.raw?.language === 'json') {\r","    const rawData = pm.request.body.toString();\r","    const strippedData = rawData.replace(\r","        /\\\\\"|\"(?:\\\\\"|[^\"])*\"|(\\/\\/.*|\\/\\*[\\s\\S]*?\\*\\/)/g,\r","        (m, g) => g ? \"\" : m\r","    );\r","    pm.request.body.update(JSON.stringify(JSON.parse(strippedData)));\r","    pm.request.headers.add('Content-Type: application/json');\r","}"],"type":"text/javascript","packages":{},"id":"d4d97c0c-d139-41d8-a333-a051912510bd"}}],"id":"c711d069-2792-4df5-af23-5de4006b7dce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user_id\": 49\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/teams/{{team}}/users","description":"<p>Creates a new account record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","teams","{{team}}","users"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"7a1c6b4e-46dd-48a3-84fa-fe58849315f9","name":"Create Team User","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user_id\": 49\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/teams/{{team}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 08 Jan 2025 14:12:15 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 47,\n        \"first_name\": \"Api\",\n        \"last_name\": \"Test\",\n        \"email\": \"api_test@precisefp.com\",\n        \"role\": \"company\"\n    },\n    {\n        \"id\": 49,\n        \"first_name\": \"Test\",\n        \"last_name\": \"Test\",\n        \"email\": \"test_create67@precisefp.com\",\n        \"role\": \"office\"\n    }\n]"}],"_postman_id":"c711d069-2792-4df5-af23-5de4006b7dce"},{"name":"Delete Team User","id":"9ddee3d4-3c4a-4a89-98c5-c870b3d7858d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/teams/{{team}}/users/{{user}}","description":"<p>Deletes an account record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","teams","{{team}}","users","{{user}}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"ebd253aa-42aa-4d71-9aac-76365544feab","name":"Delete Team User","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/teams/{{team}}/users/{{user}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 08 Jan 2025 22:42:48 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9ddee3d4-3c4a-4a89-98c5-c870b3d7858d"}],"id":"b80b4e8e-df94-4377-a68d-64ca75d5e74d","description":"<p>All endpoints related with client/prospect accounts.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"dfad1477-50cf-43af-8def-3a97ed7a8bc6"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"eb9ace3f-b1e4-4f6d-a7e4-dbe83e8d6118"}}],"_postman_id":"b80b4e8e-df94-4377-a68d-64ca75d5e74d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}}},{"name":"Emails","item":[{"name":"Get Team Emails","id":"d96fb322-b98c-4fd0-9b9f-873c3e16da6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/teams/{{team}}/emails","description":"<p>Returns a collection of accounts.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","teams","{{team}}","emails"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"96b47637-479f-4c92-a999-147773fe44f9","name":"Get Team Emails","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/teams/{{team}}/emails"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Sun, 12 Jan 2025 22:19:33 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"55"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"bcc\": \"bcc@precisefp.com\",\n    \"pdf\": {\n        \"new\": {\n            \"active\": true,\n            \"message\": \"<p><strong>Dear [%client.first.name%], :)</strong></p><p>Please review and sign the <strong>[%title%]</strong> package.</p><p>When you are ready to proceed, please click the button below.</p>\",\n            \"subject\": \"[%advisor.name%] is requesting you to review and sign the [%title%]\"\n        },\n        \"docusign\": {\n            \"active\": true,\n            \"message\": \"<p><strong>Dear [%client.first.name%], :)</strong></p><p>Please review and sign the <strong>[%title%]</strong> package.</p>\",\n            \"subject\": \"[%advisor.name%] is requesting you to review and sign the [%title%]\"\n        },\n        \"reminder\": {\n            \"active\": true,\n            \"period\": {\n                \"for\": \"30\",\n                \"every\": \"5\"\n            },\n            \"message\": \"<p><strong>Hi [%client.first.name%], :)</strong></p><p>This is a courtesy reminder, asking you to kindly review and sign the <strong>[%title%]</strong> package.</p><p>When you are ready to proceed, please click on the button below.</p>\",\n            \"subject\": \"Reminder to review and sign the [%title%]\"\n        },\n        \"completed\": {\n            \"active\": true,\n            \"message\": \"<p><strong>Hi [%client.first.name%], :)</strong></p><p>The <strong>[%title%]</strong> package is ready for download.</p><p>When you are ready to proceed, please click the button below.</p>\",\n            \"subject\": \"The [%title%] package is ready for download\"\n        }\n    },\n    \"color\": \"#C34646\",\n    \"disclaimer\": \"<p>disclaimer</p>\",\n    \"logo\": \"https://pfp.local/media/image/team/38/XcbvH0SsDwc9p3KQqaRz7PcPxdC7xT54ZeVlEOh5.png\"\n}"}],"_postman_id":"d96fb322-b98c-4fd0-9b9f-873c3e16da6a"},{"name":"Update Team Emails","event":[{"listen":"prerequest","script":{"exec":["/* Strip comments from json body */\r","if (pm?.request?.body?.options?.raw?.language === 'json') {\r","    const rawData = pm.request.body.toString();\r","    const strippedData = rawData.replace(\r","        /\\\\\"|\"(?:\\\\\"|[^\"])*\"|(\\/\\/.*|\\/\\*[\\s\\S]*?\\*\\/)/g,\r","        (m, g) => g ? \"\" : m\r","    );\r","    pm.request.body.update(JSON.stringify(JSON.parse(strippedData)));\r","    pm.request.headers.add('Content-Type: application/json');\r","}"],"type":"text/javascript","packages":{},"id":"4ecf2ed6-e3a8-4fe6-a824-b3a20e1cb245"}}],"id":"33d87e1a-bb82-4937-9135-aa40651d7129","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"bcc\": [\"test@precisefp.com\", \"test2@precisefp.com\"],\r\n    \"pdf\": {\r\n        \"new\": {\r\n            \"message\": \"<p><strong>Dear [%client.first.name%], :)</strong></p><p>Please review and sign the <strong>[%title%]</strong> package.</p><p>When you are ready to proceed, please click the button below.</p>\",\r\n            \"subject\": \"[%advisor.name%] is requesting you to review and sign the [%title%]\"\r\n        },\r\n        \"docusign\": {\r\n            \"message\": \"<p><strong>Dear [%client.first.name%], :)</strong></p><p>Please review and sign the <strong>[%title%]</strong> package.</p>\",\r\n            \"subject\": \"[%advisor.name%] is requesting you to review and sign the [%title%]\"\r\n        },\r\n        \"reminder\": {\r\n            \"active\": false,\r\n            \"period\": {\r\n                \"for\": \"30\",\r\n                \"every\": \"5\"\r\n            },\r\n            \"message\": \"<p><strong>Hi [%client.first.name%], :)</strong></p><p>This is a courtesy reminder, asking you to kindly review and sign the <strong>[%title%]</strong> package.</p><p>When you are ready to proceed, please click on the button below.</p>\",\r\n            \"subject\": \"Reminder to review and sign the [%title%]\"\r\n        },\r\n        \"completed\": {\r\n            \"active\": false,\r\n            \"message\": \"<p><strong>Hi [%client.first.name%], :)</strong></p><p>The <strong>[%title%]</strong> package is ready for download.</p><p>When you are ready to proceed, please click the button below.</p>\",\r\n            \"subject\": \"The [%title%] package is ready for download\"\r\n        }\r\n    },\r\n    \"color\": \"#C34646\",\r\n    \"disclaimer\": \"<p>disclaimer</p>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/teams/{{team}}/emails","description":"<p>Creates a new account record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","teams","{{team}}","emails"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"dd80f565-5fc6-4ba7-ace6-c5b1686fb438","name":"Update Team Emails","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"bcc\": [\"test@precisefp.com\", \"test2@precisefp.com\"],\r\n    \"pdf\": {\r\n        \"new\": {\r\n            \"message\": \"<p><strong>Dear [%client.first.name%], :)</strong></p><p>Please review and sign the <strong>[%title%]</strong> package.</p><p>When you are ready to proceed, please click the button below.</p>\",\r\n            \"subject\": \"[%advisor.name%] is requesting you to review and sign the [%title%]\"\r\n        },\r\n        \"docusign\": {\r\n            \"message\": \"<p><strong>Dear [%client.first.name%], :)</strong></p><p>Please review and sign the <strong>[%title%]</strong> package.</p>\",\r\n            \"subject\": \"[%advisor.name%] is requesting you to review and sign the [%title%]\"\r\n        },\r\n        \"reminder\": {\r\n            \"active\": false,\r\n            \"period\": {\r\n                \"for\": \"30\",\r\n                \"every\": \"5\"\r\n            },\r\n            \"message\": \"<p><strong>Hi [%client.first.name%], :)</strong></p><p>This is a courtesy reminder, asking you to kindly review and sign the <strong>[%title%]</strong> package.</p><p>When you are ready to proceed, please click on the button below.</p>\",\r\n            \"subject\": \"Reminder to review and sign the [%title%]\"\r\n        },\r\n        \"completed\": {\r\n            \"active\": false,\r\n            \"message\": \"<p><strong>Hi [%client.first.name%], :)</strong></p><p>The <strong>[%title%]</strong> package is ready for download.</p><p>When you are ready to proceed, please click the button below.</p>\",\r\n            \"subject\": \"The [%title%] package is ready for download\"\r\n        }\r\n    },\r\n    \"color\": \"#C34646\",\r\n    \"disclaimer\": \"<p>disclaimer</p>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/teams/{{team}}/emails"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 14 Jan 2025 10:44:23 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"bcc\": [\n        \"test@precisefp.com\",\n        \"test2@precisefp.com\"\n    ],\n    \"pdf\": {\n        \"new\": {\n            \"active\": true,\n            \"message\": \"<p><strong>Dear [%client.first.name%], :)</strong></p><p>Please review and sign the <strong>[%title%]</strong> package.</p><p>When you are ready to proceed, please click the button below.</p>\",\n            \"subject\": \"[%advisor.name%] is requesting you to review and sign the [%title%]\"\n        },\n        \"docusign\": {\n            \"active\": true,\n            \"message\": \"<p><strong>Dear [%client.first.name%], :)</strong></p><p>Please review and sign the <strong>[%title%]</strong> package.</p>\",\n            \"subject\": \"[%advisor.name%] is requesting you to review and sign the [%title%]\"\n        },\n        \"reminder\": {\n            \"active\": false,\n            \"period\": {\n                \"for\": \"30\",\n                \"every\": \"5\"\n            },\n            \"message\": \"<p><strong>Hi [%client.first.name%], :)</strong></p><p>This is a courtesy reminder, asking you to kindly review and sign the <strong>[%title%]</strong> package.</p><p>When you are ready to proceed, please click on the button below.</p>\",\n            \"subject\": \"Reminder to review and sign the [%title%]\"\n        },\n        \"completed\": {\n            \"active\": false,\n            \"message\": \"<p><strong>Hi [%client.first.name%], :)</strong></p><p>The <strong>[%title%]</strong> package is ready for download.</p><p>When you are ready to proceed, please click the button below.</p>\",\n            \"subject\": \"The [%title%] package is ready for download\"\n        }\n    },\n    \"color\": \"\",\n    \"disclaimer\": \"<p>disclaimer</p>\",\n    \"logo\": null\n}"}],"_postman_id":"33d87e1a-bb82-4937-9135-aa40651d7129"},{"name":"Update Team Emails Logo","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"cc2761d3-cc2f-4943-af3a-d54133f3ea03"}}],"id":"05303f11-d4c6-4623-a935-2ae0329caa79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"logo","type":"file","value":null}]},"url":"https://app.precisefp.com/api/v3/teams/{{team}}/emails/logo","description":"<p>Updates an account record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","teams","{{team}}","emails","logo"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"905b34af-c06e-4bc1-adc8-1f641e685332","name":"Update Team Emails Logo","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"logo","type":"file","src":[]}]},"url":"https://app.precisefp.com/api/v3/teams/{{team}}/emails/logo"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 14 Jan 2025 15:06:02 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"bcc\": [\n        \"test@precisefp.com\",\n        \"test2@precisefp.com\"\n    ],\n    \"pdf\": {\n        \"new\": {\n            \"active\": true,\n            \"message\": \"<p><strong>Dear [%client.first.name%], :)</strong></p><p>Please review and sign the <strong>[%title%]</strong> package.</p><p>When you are ready to proceed, please click the button below.</p>\",\n            \"subject\": \"[%advisor.name%] is requesting you to review and sign the [%title%]\"\n        },\n        \"docusign\": {\n            \"active\": true,\n            \"message\": \"<p><strong>Dear [%client.first.name%], :)</strong></p><p>Please review and sign the <strong>[%title%]</strong> package.</p>\",\n            \"subject\": \"[%advisor.name%] is requesting you to review and sign the [%title%]\"\n        },\n        \"reminder\": {\n            \"active\": false,\n            \"period\": {\n                \"for\": \"30\",\n                \"every\": \"5\"\n            },\n            \"message\": \"<p><strong>Hi [%client.first.name%], :)</strong></p><p>This is a courtesy reminder, asking you to kindly review and sign the <strong>[%title%]</strong> package.</p><p>When you are ready to proceed, please click on the button below.</p>\",\n            \"subject\": \"Reminder to review and sign the [%title%]\"\n        },\n        \"completed\": {\n            \"active\": false,\n            \"message\": \"<p><strong>Hi [%client.first.name%], :)</strong></p><p>The <strong>[%title%]</strong> package is ready for download.</p><p>When you are ready to proceed, please click the button below.</p>\",\n            \"subject\": \"The [%title%] package is ready for download\"\n        }\n    },\n    \"color\": \"\",\n    \"disclaimer\": \"<p>disclaimer</p>\",\n    \"logo\": \"https://pfp.local/media/image/team/38/1cPGbo1vUx0OTuGR4knW4lYhCLUWNuqcCgk9KeW8.png\"\n}"}],"_postman_id":"05303f11-d4c6-4623-a935-2ae0329caa79"}],"id":"cbe8e134-25cc-418a-bc95-8b447f5faa41","description":"<p>All endpoints related with client/prospect accounts.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"23cb1415-ac39-447b-ad91-b788884e185b"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"111ce0a7-f5c3-4469-af35-e12b2214837d"}}],"_postman_id":"cbe8e134-25cc-418a-bc95-8b447f5faa41","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}}},{"name":"Get Teams","id":"dda2544e-c860-4c18-a4ff-25d92ed5d75c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/teams?sort=-id&limit=50&offset=0&query=","description":"<p>Returns a collection of accounts.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","teams"],"host":["app.precisefp.com"],"query":[{"description":{"content":"<p>Sort results by: id, name or email</p>\n","type":"text/plain"},"key":"sort","value":"-id"},{"description":{"content":"<p>Limit results</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Offset results</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"description":{"content":"<p>Search team name or email</p>\n","type":"text/plain"},"key":"query","value":""}],"variable":[]}},"response":[{"id":"c3c4141a-d990-449e-b446-396933cc09f8","name":"Get Teams","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.precisefp.com/api/v3/teams?sort=-id&limit=50&offset=0&query=","protocol":"https","host":["app.precisefp.com"],"path":["api","v3","teams"],"query":[{"key":"sort","value":"-id","description":"Sort results by: id, name or email"},{"key":"limit","value":"50","description":"Limit results"},{"key":"offset","value":"0","description":"Offset results"},{"key":"query","value":"","description":"Search team name or email"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 19 Dec 2024 14:27:58 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 6,\n            \"name\": \"Second team\",\n            \"email\": \"secondteam@precisefp.com\",\n            \"phone\": {\n                \"code\": \"+1\",\n                \"number\": \"2312312312\",\n                \"country\": \"US\"\n            },\n            \"logo\": \"https://pfp.local/media/image/team/6/qfEhygZ3e5XulFSFydzA6WFaW45K3NwyIObcQUE0.png\",\n            \"timezone\": \"Europe/Warsaw\",\n            \"currency\": \"USD\",\n            \"country\": \"US\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Test Integrations\",\n            \"email\": \"integration@precisefp.com\",\n            \"phone\": {\n                \"code\": \"+1\",\n                \"number\": \"2312312312\",\n                \"country\": \"US\"\n            },\n            \"logo\": null,\n            \"timezone\": \"UTC\",\n            \"currency\": \"USD\",\n            \"country\": \"US\"\n        }\n    ],\n    \"params\": {\n        \"limit\": \"50\",\n        \"offset\": 2,\n        \"sort\": \"-id\",\n        \"query\": null,\n        \"total\": 2\n    }\n}"}],"_postman_id":"dda2544e-c860-4c18-a4ff-25d92ed5d75c"},{"name":"Create Team","event":[{"listen":"prerequest","script":{"exec":["/* Strip comments from json body */\r","if (pm?.request?.body?.options?.raw?.language === 'json') {\r","    const rawData = pm.request.body.toString();\r","    const strippedData = rawData.replace(\r","        /\\\\\"|\"(?:\\\\\"|[^\"])*\"|(\\/\\/.*|\\/\\*[\\s\\S]*?\\*\\/)/g,\r","        (m, g) => g ? \"\" : m\r","    );\r","    pm.request.body.update(JSON.stringify(JSON.parse(strippedData)));\r","    pm.request.headers.add('Content-Type: application/json');\r","}"],"type":"text/javascript","packages":{},"id":"4609b145-3cf4-49bb-96b6-38a2676594bd"}}],"id":"9feefa2a-d601-4c1e-b3c2-9583c8a1c876","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Test Team\",                    // The name\r\n    \"email\": \"test_team@precisefp.com\",     // The email\r\n    \"timezone\": \"Europe/Warsaw\",            // The timezone\r\n    \"phone\": {                              // The mobile phone\r\n        \"code\": \"+1\",                       // The country calling code\r\n        \"number\": \"3123211212\",             // The phone number\r\n        \"country\": \"US\"                     // 2 letter representation of the phone number's country\r\n    },\r\n    \"currency\": \"USD\",                      // The currency\r\n    \"language\": \"en-US\"                     // The language\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/teams","description":"<p>Creates a new account record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","teams"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"51234c6d-f18f-43d5-917c-4613976e33b3","name":"Create Team","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Test Team\",                    // The name\r\n    \"email\": \"test_team@precisefp.com\",     // The email\r\n    \"timezone\": \"Europe/Warsaw\",            // The timezone\r\n    \"phone\": {                              // The mobile phone\r\n        \"code\": \"+1\",                       // The country calling code\r\n        \"number\": \"3123211212\",             // The phone number\r\n        \"country\": \"US\"                     // 2 letter representation of the phone number's country\r\n    },\r\n    \"currency\": \"USD\",                      // The currency\r\n    \"language\": \"en-US\"                     // The language\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/teams"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 20 Dec 2024 00:36:53 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 16,\n    \"name\": \"Test Team\",\n    \"email\": \"test_team@precisefp.com\",\n    \"phone\": {\n        \"code\": \"+1\",\n        \"number\": \"3123211212\",\n        \"country\": \"US\"\n    },\n    \"logo\": null,\n    \"timezone\": \"Europe/Warsaw\",\n    \"currency\": \"USD\",\n    \"country\": \"US\",\n    \"language\": \"en-US\"\n}"}],"_postman_id":"9feefa2a-d601-4c1e-b3c2-9583c8a1c876"},{"name":"Get Team","id":"64447a50-f4da-4929-961a-21c1ac92e29e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/teams/{{team}}","description":"<p>Returns one, specific account.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","teams","{{team}}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"24049666-89cf-45d1-96aa-56ece5acc949","name":"Get Team","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/teams/{{team}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 20 Dec 2024 13:19:23 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 18,\n    \"name\": \"Test Team\",\n    \"email\": \"test_team@precisefp.com\",\n    \"phone\": {\n        \"code\": \"+1\",\n        \"number\": \"3123211212\",\n        \"country\": \"US\"\n    },\n    \"logo\": null,\n    \"timezone\": \"Europe/Warsaw\",\n    \"currency\": \"USD\",\n    \"country\": \"US\",\n    \"language\": \"en-US\"\n}"}],"_postman_id":"64447a50-f4da-4929-961a-21c1ac92e29e"},{"name":"Update Team","event":[{"listen":"prerequest","script":{"exec":["/* Strip comments from json body */\r","if (pm?.request?.body?.options?.raw?.language === 'json') {\r","    const rawData = pm.request.body.toString();\r","    const strippedData = rawData.replace(\r","        /\\\\\"|\"(?:\\\\\"|[^\"])*\"|(\\/\\/.*|\\/\\*[\\s\\S]*?\\*\\/)/g,\r","        (m, g) => g ? \"\" : m\r","    );\r","    pm.request.body.update(JSON.stringify(JSON.parse(strippedData)));\r","    pm.request.headers.add('Content-Type: application/json');\r","}"],"type":"text/javascript","packages":{},"id":"1114e4c9-a668-4dea-a5f7-659ec681672d"}}],"id":"bc52551d-2efd-4efe-9157-784343ae36c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Test Team\",                    // The name\r\n    \"email\": \"test_team@precisefp.com\",     // The email\r\n    \"timezone\": \"Europe/Warsaw\",            // The timezone\r\n    \"phone\": {                              // The mobile phone\r\n        \"code\": \"+1\",                       // The country calling code\r\n        \"number\": \"3123211212\",             // The phone number\r\n        \"country\": \"US\"                     // 2 letter representation of the phone number's country\r\n    },\r\n    \"currency\": \"USD\",                      // The currency\r\n    \"language\": \"en-US\"                     // The language\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/teams/{{team}}","description":"<p>Updates an account record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","teams","{{team}}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"5d2d814b-eafd-4e6a-9100-f752f651d09f","name":"Update Team","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Test Team\",                    // The name\r\n    \"email\": \"test_team@precisefp.com\",     // The email\r\n    \"timezone\": \"Europe/Warsaw\",            // The timezone\r\n    \"phone\": {                              // The mobile phone\r\n        \"code\": \"+1\",                       // The country calling code\r\n        \"number\": \"3123211212\",             // The phone number\r\n        \"country\": \"US\"                     // 2 letter representation of the phone number's country\r\n    },\r\n    \"currency\": \"USD\",                      // The currency\r\n    \"language\": \"en-US\"                     // The language\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/teams/{{team}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Sun, 05 Jan 2025 01:09:16 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 18,\n    \"name\": \"Test Team\",\n    \"email\": \"test_team@precisefp.com\",\n    \"phone\": {\n        \"code\": \"+1\",\n        \"number\": \"3123211212\",\n        \"country\": \"US\"\n    },\n    \"logo\": null,\n    \"timezone\": \"Europe/Warsaw\",\n    \"currency\": \"USD\",\n    \"country\": \"US\",\n    \"language\": \"en-US\"\n}"}],"_postman_id":"bc52551d-2efd-4efe-9157-784343ae36c0"},{"name":"Update Team Logo","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"2875d5da-a608-4f3f-935c-7f1995e8018f"}}],"id":"c73dade9-fa52-4b4f-8e20-a9fa8bff2f97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"logo","type":"file","value":null}]},"url":"https://app.precisefp.com/api/v3/teams/{{team}}/logo","description":"<p>Updates an account record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","teams","{{team}}","logo"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"fb8dd859-872c-4577-be69-6d04e3bfe694","name":"Update Team Logo","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"logo","type":"file","src":[]}]},"url":"https://app.precisefp.com/api/v3/teams/{{team}}/logo"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 14 Jan 2025 14:18:24 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 38,\n    \"name\": \"a\",\n    \"email\": \"test_team@precisefp.com\",\n    \"phone\": {\n        \"code\": \"+1\",\n        \"number\": \"3123211212\",\n        \"country\": \"US\"\n    },\n    \"logo\": \"https://pfp.local/media/image/team/38/4CxQrZPhLgmREsXyd42uCcl4pI0PY862AFsTpSD8.jpg\",\n    \"timezone\": \"Europe/Warsaw\",\n    \"currency\": \"USD\",\n    \"country\": \"US\",\n    \"language\": \"en-US\"\n}"}],"_postman_id":"c73dade9-fa52-4b4f-8e20-a9fa8bff2f97"},{"name":"Delete Team","id":"866c311e-253d-4304-b2f3-a510db0e2386","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"password\": \"your_password_here\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/teams/{{team}}","description":"<p>Deletes an account record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","teams","{{team}}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"38004147-1bfb-4f62-8ab2-7e016c46757f","name":"Delete Team","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"password\": \"your_password_here\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/teams/{{team}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 07 Jan 2025 12:58:44 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"866c311e-253d-4304-b2f3-a510db0e2386"}],"id":"d1ec361d-1222-4aab-b278-1385b2c5106f","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"1aa9f4de-84ca-4496-b430-51311ae641c8"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"2be4f2dc-7773-4b79-85a7-0cf21bbf14f9"}}],"_postman_id":"d1ec361d-1222-4aab-b278-1385b2c5106f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}}},{"name":"Form Engagements","item":[{"name":"Get Form Engagements","id":"f35bd385-ccb0-4b02-935e-c8c321f705ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements?sort=-created_at&limit=200&offset=0&query&type&account_id&template_id","description":"<p>Returns a collection of Form Engagements.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements"],"host":["app.precisefp.com"],"query":[{"description":{"content":"<p>Sort by: account_id, template_id, title, description, security, name, email, status, filled, created_at, opened_at, reminded_at, completed_at</p>\n","type":"text/plain"},"key":"sort","value":"-created_at"},{"description":{"content":"<p>Limit results</p>\n","type":"text/plain"},"key":"limit","value":"200"},{"description":{"content":"<p>Offset results</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"description":{"content":"<p>Search by title and primary recipient name</p>\n","type":"text/plain"},"key":"query","value":null},{"description":{"content":"<p>Filter results by: completed, in-progress</p>\n","type":"text/plain"},"key":"type","value":null},{"description":{"content":"<p>Filter results by account id</p>\n","type":"text/plain"},"key":"account_id","value":null},{"description":{"content":"<p>Filter results by template id</p>\n","type":"text/plain"},"key":"template_id","value":null}],"variable":[]}},"response":[{"id":"72cb3909-f980-4f69-9a43-7e2382a158e1","name":"Get Form Engagements","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.precisefp.com/api/v3/form-engagements?sort=-created_at&limit=200&offset=0&query&type&account_id&template_id","protocol":"https","host":["app.precisefp.com"],"path":["api","v3","form-engagements"],"query":[{"key":"sort","value":"-created_at","description":"Sort by: account_id, template_id, title, description, security, name, email, status, filled, created_at, opened_at, reminded_at, completed_at"},{"key":"limit","value":"200","description":"Limit results"},{"key":"offset","value":"0","description":"Offset results"},{"key":"query","value":null,"description":"Search by title and primary recipient name"},{"key":"type","value":null,"description":"Filter results by: completed, in-progress"},{"key":"account_id","value":null,"description":"Filter results by account id"},{"key":"template_id","value":null,"description":"Filter results by template id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [                                                                                              // List of available Form Engagements\n        {\n            \"id\": \"192cb638-9d8a-4cc0-800d-2b56bc4d2c45\",                                                   // The Form Engagement ID\n            \"account_id\": 218,                                                                              // The ID of the engaged account\n            \"template_id\": \"be8e1718-799b-45e4-932f-c3d0bfb17a4f\",                                          // The ID of Form Template used in the engagement\n            \"title\": \"2022 Tax Filing Organizer\",                                                           // The title of the Form Template\n            \"description\": \"Tax Filing Checklist\",                                                          // The description of the Form template\n            \"security\": \"high\",                                                                             // The security level of the Form Template\n            \"recipients\": [                                                                                 // List of account contacts of the record that received the engagement\n                {                                                                                                                  \n                    \"id\": 295,                                                                              // The ID of the account contact\n                    \"name\": \"John Doe\",                                                                     // The name of the account contact          \n                    \"email\": \"johndoe@precisefp.com\",                                                       // The email of the account contact\n                    \"type\": \"primary\",                                                                      // Type of the recipient. Can be primary or secondary\n                    \"auth\": \"password\",                                                                     // Authorization type. Can be email, sms, password \n                    \"url\": \"https://app.precisefp.com/e/iktfxf\"                                             // URL the engagement can be accessed with\n                }\n            ],\n            \"url\": \"https://app.precisefp.com/api/v3/form-engagements/192cb638-9d8a-4cc0-800d-2b56bc4d2c46/preview\", // URL to preview the Form Engagement \n            \"status\": \"in-progress\",                                                                       // Status of the Form Engagement. Can be new, in-progress or completed\n            \"filled\": 13,                                                                                  // How much of the engagement was filled in (percentage)\n            \"time\": 0,                                                                                     // Time spent on the engagement\n            \"created_at\": \"2022-01-17 14:17:43\",                                                           // When the engagement was created\n            \"opened_at\": \"2022-01-17 15:03:45\",                                                            // When the engagement was accessed\n            \"email_reminders\": false,                                                                      // Boolean value for enabling the email reminders\n            \"reminded_at\": null,                                                                           // When the last email reminder was sent\n            \"email_completed\": false,                                                                      // When the engagement completed email message was sent\n            \"completed_at\": \"2022-01-17 18:26:47\"                                                          // When the engagement was completed\n        },\n        {\n            \"id\": \"d9e5bd08-3a47-40e1-bf89-2ee71939f8c3\",\n            \"account_id\": 136277,\n            \"template_id\": \"6222deab-a29a-424f-a22d-349e61490d2e\",\n            \"title\": \"Financial Fact Finder\",\n            \"description\": \"with associated pdf\",\n            \"security\": \"high\",\n            \"recipients\": [\n                {\n                    \"id\": 188542,\n                    \"name\": \"Test Account\",\n                    \"email\": \"testaccount@precisefp.com\",\n                    \"type\": \"primary\",\n                    \"auth\": \"password\",\n                    \"url\": \"https://app.precisefp.com/e/a7fm26\"\n                },\n                {\n                    \"id\": 188543,\n                    \"name\": \"Spouse Account\",\n                    \"email\": \"spouse@precisefp.com\",\n                    \"type\": \"secondary\",\n                    \"auth\": \"password\",\n                    \"url\": \"https://app.precisefp.com/e/a7fm26/cc\"\n                }\n            ],\n            \"url\": \"https://app.precisefp.com/api/v3/form-engagements/d9e5bd08-3a47-40e1-bf89-2ee71939f8c3/preview\",\n            \"status\": \"in-progress\",\n            \"filled\": 24,\n            \"time\": 0,\n            \"created_at\": \"2022-01-11 12:12:04\",\n            \"opened_at\": \"2022-01-11 12:12:26\",\n            \"email_reminders\": false,\n            \"reminded_at\": null,\n            \"email_completed\": false,\n            \"completed_at\": \"2022-01-13 15:22:56\"\n        },\n        {\n            \"id\": \"22b57b7e-3039-425c-a6be-62ab3a01a620\",\n            \"account_id\": 136277,\n            \"template_id\": \"f696010a-94b1-44d5-bf40-d174b877fa95\",\n            \"title\": \"Estimated Tax Payment Questionnaire\",\n            \"description\": \"Collect data required to calculate quarterly estimated tax payments due.\",\n            \"security\": \"high\",\n            \"recipients\": [\n                {\n                    \"id\": 188542,\n                    \"name\": \"Test Account\",\n                    \"email\": \"testaccount@precisefp.com\",\n                    \"type\": \"primary\",\n                    \"auth\": \"password\",\n                    \"url\": \"https://app.precisefp.com/e/en1b9c\"\n                }\n            ],\n            \"url\": \"https://app.precisefp.com/api/v3/form-engagements/22b57b7e-3039-425c-a6be-62ab3a01a620/preview\",\n            \"status\": \"in-progress\",\n            \"filled\": 13,\n            \"time\": 0,\n            \"created_at\": \"2022-01-11 12:10:46\",\n            \"opened_at\": \"2022-01-11 12:10:57\",\n            \"email_reminders\": true,\n            \"reminded_at\": \"2022-01-17 09:02:20\",\n            \"email_completed\": false,\n            \"completed_at\": null\n        }\n    ],\n    \"params\": {                                                         // List of parameters                                       \n        \"limit\": \"200\",                                                 // Max records returned\n        \"offset\": 200,                                                  // The offset for the next chunk of results \n        \"sort\": \"-created_at\",                                          // The field used for sorting (the dash represents a descending sort)\n        \"query\": null,                                                  // The search query used                                                            \n        \"type\": null,                                                   // The type filter used\n        \"account_id\": null,                                             // The account id used for sorting     \n        \"template_id\": null,                                            // The template id used for sorting\n        \"total\": 490                                                    // The total amount of existing records\n    }\n}"}],"_postman_id":"f35bd385-ccb0-4b02-935e-c8c321f705ff"},{"name":"Create Engagement","event":[{"listen":"prerequest","script":{"id":"75334ea4-b2fb-4123-b471-1f58a94d78e9","exec":["/* Strip comments from json body */\r","if (pm?.request?.body?.options?.raw?.language === 'json') {\r","    const rawData = pm.request.body.toString();\r","    const strippedData = rawData.replace(\r","        /\\\\\"|\"(?:\\\\\"|[^\"])*\"|(\\/\\/.*|\\/\\*[\\s\\S]*?\\*\\/)/g,\r","        (m, g) => g ? \"\" : m\r","    );\r","    pm.request.body.update(JSON.stringify(JSON.parse(strippedData)));\r","    pm.request.headers.add('Content-Type: application/json');\r","}"],"type":"text/javascript","packages":{}}}],"id":"db2dd3ea-afab-4773-a623-09c577e0df4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"account_id\": \"504129\",              // The unique id for the person record (required)\r\n    \"recipient\": \"client\",                    // The account contant of the record to receive the engagement. Can be client or coclient\r\n    \"recipient_secondary\": false,              // Boolean value, use to include secondary recipient in the engagement, client or coclient\r\n    \"template_id\": \"654bf0ac-273b-41fd-ba72-d297c91de689\",       // The unique id for the template (required)\r\n    \"auth\": \"password\",\r\n    \"email_new\": false                             // Authorization type (defaults to password). Can be email, sms, password\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/form-engagements/","description":"<p>Creates a new Form engagement record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements",""],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"3a967f7a-19db-40b7-acae-fa3d661e564e","name":"Create Engagement","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"account_id\": \"1\",                                       // The unique id for the person record (required)\r\n    \"recipient\": \"client\",                                   // The account contant of the record to receive the engagement. Can be client or coclient\r\n    \"recipient_secondary\": true,                             // Boolean or array, use to include secondary recipient in the engagement, client or coclient\r\n    \"template_id\": \"df1b3cb6-37a6-4e9a-bdbb-1ece23c3cee2\",   // The unique id for the template (required)\r\n    \"auth\": \"sms\"                                            // Authorization type (defaults to password). Can be email, sms, password\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.precisefp.com/api/v3/form-engagements/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"192cb638-9d8a-4cc0-800d-2b56bc4d2c45\",                                                   // The Form Engagement ID\n    \"account_id\": 218,                                                                              // The ID of the engaged account\n    \"template_id\": \"be8e1718-799b-45e4-932f-c3d0bfb17a4f\",                                          // The ID of Form Template used in the engagement\n    \"title\": \"2022 Tax Filing Organizer\",                                                           // The title of the Form Template\n    \"description\": \"Tax Filing Checklist\",                                                          // The description of the Form template\n    \"security\": \"high\",                                                                             // The security level of the Form Template\n    \"recipients\": [                                                                                 // List of account contacts of the record that received the engagement\n        {                                                                                                                  \n            \"id\": 295,                                                                              // The ID of the account contact\n            \"name\": \"John Doe\",                                                                     // The name of the account contact          \n            \"email\": \"johndoe@precisefp.com\",                                                       // The email of the account contact\n            \"type\": \"primary\",                                                                      // Type of the recipient. Can be primary or secondary\n            \"auth\": \"password\",                                                                     // Authorization type. Can be email, sms, password \n            \"url\": \"https://app.precisefp.com/e/iktfxf\"                                             // URL the engagement can be accessed with\n        }\n    ],\n    \"url\": \"https://app.precisefp.com/api/v3/form-engagements/192cb638-9d8a-4cc0-800d-2b56bc4d2c46/preview\", // URL to preview the Form Engagement \n    \"status\": \"in-progress\",                                                                       // Status of the Form Engagement. Can be new, in-progress or completed\n    \"filled\": 13,                                                                                  // How much of the engagement was filled in (percentage)\n    \"time\": 0,                                                                                     // Time spent on the engagement\n    \"created_at\": \"2022-01-17 14:17:43\",                                                           // When the engagement was created\n    \"opened_at\": \"2022-01-17 15:03:45\",                                                            // When the engagement was accessed\n    \"email_reminders\": false,                                                                      // Boolean value for enabling the email reminders\n    \"reminded_at\": null,                                                                           // When the last email reminder was sent\n    \"email_completed\": false,                                                                      // When the engagement completed email message was sent\n    \"completed_at\": \"2022-01-17 18:26:47\"                                                          // When the engagement was completed\n}"},{"id":"c865f496-61de-4735-a5ac-93c46e52317f","name":"Create Engagement with Secondary Contacts","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"account_id\": {INSERT_ACCOUNT_ID_HERE},                               // The unique id for the person record (required)\r\n    \"recipient\": \"client\",                                   // The account contant of the record to receive the engagement. Can be client or coclient\r\n    \"recipient_secondary\": [                                 // Boolean or array, use to include secondary recipient in the engagement, client or coclient\r\n        {\r\n            \"id\": {{account_contact}},                       // Secondary contact's id\r\n            \"signer\": \"Advisor\"                              // Signer's group (nullable)\r\n        },\r\n        {\r\n            \"id\": \"coclient\",                                // Client or co-client - must not be recipient\r\n            \"signer\": \"coclient\"                             // Signer's group (nullable)   \r\n        }\r\n    ],\r\n    \"template_id\": {INSERT_FORM_TEMPLATE_ID_HERE},                        // The unique id for the template (required)\r\n    \"auth\": \"sms\"                                            // Authorization type (defaults to password). Can be email, sms, password\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.precisefp.com/api/v3/form-engagements/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"4b91528d-638e-421d-af5d-8cc2a87df312\",                                                                           // The Form Engagement ID\n    \"account_id\": 1,                                                                                                        // The ID of the engaged account\n    \"template_id\": \"45a3da55-b70b-486b-aa3e-8d306d7a5558\",                                                                  // The ID of Form Template used in the engagement\n    \"title\": \"Client Service Agreement\",                                                                                    // The title of the Form Template\n    \"description\": \"Edit each engagement to add Services and Fees.\",                                                        // The description of the Form template\n    \"security\": \"high\",                                                                                                     // The security level of the Form Template\n    \"recipients\": [                                                                                                         // List of account contacts of the record that received the \n        {\n            \"id\": 1,                                                                                                        // The ID of the account contact\n            \"id_type\": \"member\",                                                                                            // The ID type of the account contact (member or contact)        \n            \"name\": \"John Doe\",                                                                                             // The name of the account contact \n            \"email\": \"jon.doer@precisefp.com\",                                                                              // The email of the account contact\n            \"type\": \"primary\",                                                                                              // Type of the recipient. Can be primary or contact\n            \"auth\": \"sms\",                                                                                                  // Authorization type. Can be email, sms, password \n            \"url\": \"http://precisefp.test:8000/e/kr3atq\",                                                                   // URL the engagement can be accessed with\n            \"signer\": null                                                                                                  // The signer group of account contact\n        },\n        {\n            \"id\": 51,                                                                                                       // The ID of the account contact\n            \"id_type\": \"contact\",                                                                                           // The ID type of the account contact (member or contact)     \n            \"name\": \"Jane Doe\",                                                                                             // The name of the account contact \n            \"email\": \"test3@precisefp.com\",                                                                                 // The email of the account contact\n            \"type\": \"contact\",                                                                                              // Type of the recipient. Can be primary or contact\n            \"auth\": \"sms\",                                                                                                  // Authorization type. Can be email, sms, password \n            \"url\": \"http://precisefp.test:8000/e/kr3atq/nluymp\",                                                            // URL the engagement can be accessed with\n            \"signer\": \"Advisor\"                                                                                             // The signer group of account contact\n        },\n        {\n            \"id\": 2,                                                                                                        // The ID of the account contact\n            \"id_type\": \"member\",                                                                                            // The ID type of the account contact (member or contact)     \n            \"name\": \"Jane Dore\",                                                                                            // The name of the account contact \n            \"email\": \"jane.doers@precisefp.com\",                                                                            // The email of the account contact\n            \"type\": \"contact\",                                                                                              // Type of the recipient. Can be primary or contact\n            \"auth\": \"sms\",                                                                                                  // Authorization type. Can be email, sms, password \n            \"url\": \"http://precisefp.test:8000/e/kr3atq/cc\",                                                                // URL the engagement can be accessed with\n            \"signer\": \"coclient\"                                                                                            // The signer group of account contact\n        }\n    ],\n    \"url\": \"http://precisefp.test:8000/api/v3/form-engagements/4b91528d-638e-421d-af5d-8cc2a87df312/preview\",               // URL to preview the Form Engagement \n    \"status\": \"new\",                                                                                                        // Status of the Form Engagement. Can be new, in-progress or completed\n    \"filled\": 0,                                                                                                            // How much of the engagement was filled in (percentage)\n    \"time\": 0,                                                                                                              // Time spent on the engagement\n    \"created_at\": \"2022-01-17 14:17:43\",                                                                                    // When the engagement was created\n    \"opened_at\": \"2022-01-17 15:03:45\",                                                                                     // When the engagement was accessed\n    \"email_reminders\": false,                                                                                               // Boolean value for enabling the email reminders\n    \"reminded_at\": null,                                                                                                    // When the last email reminder was sent\n    \"email_completed\": false,                                                                                               // When the engagement completed email message was sent\n    \"completed_at\": \"2022-01-17 18:26:47\"                                                                                   // When the engagement was completed\n}"}],"_postman_id":"db2dd3ea-afab-4773-a623-09c577e0df4f"},{"name":"Get Form Engagement","id":"0c1603a3-62a2-4411-b046-d89a2b174852","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}","description":"<p>Returns one Form engagement record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"4f1ed87b-5640-4b02-bbca-1db790585eb8","name":"Get Form Engagement","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"192cb638-9d8a-4cc0-800d-2b56bc4d2c45\",                                                   // The Form Engagement ID\n    \"account_id\": 218,                                                                              // The ID of the engaged account\n    \"template_id\": \"be8e1718-799b-45e4-932f-c3d0bfb17a4f\",                                          // The ID of Form Template used in the engagement\n    \"title\": \"2022 Tax Filing Organizer\",                                                           // The title of the Form Template\n    \"description\": \"Tax Filing Checklist\",                                                          // The description of the Form template\n    \"security\": \"high\",                                                                             // The security level of the Form Template\n    \"recipients\": [                                                                                 // List of account contacts of the record that received the engagement\n        {                                                                                                                  \n            \"id\": 295,                                                                              // The ID of the account contact\n            \"name\": \"John Doe\",                                                                     // The name of the account contact          \n            \"email\": \"johndoe@precisefp.com\",                                                       // The email of the account contact\n            \"type\": \"primary\",                                                                      // Type of the recipient. Can be primary or secondary\n            \"auth\": \"password\",                                                                     // Authorization type. Can be email, sms, password \n            \"url\": \"https://app.precisefp.com/e/iktfxf\"                                             // URL the engagement can be accessed with\n        }\n    ],\n    \"url\": \"https://app.precisefp.com/api/v3/form-engagements/192cb638-9d8a-4cc0-800d-2b56bc4d2c46/preview\", // URL to preview the Form Engagement \n    \"status\": \"in-progress\",                                                                       // Status of the Form Engagement. Can be new, in-progress or completed\n    \"filled\": 13,                                                                                  // How much of the engagement was filled in (percentage)\n    \"time\": 0,                                                                                     // Time spent on the engagement\n    \"created_at\": \"2022-01-17 14:17:43\",                                                           // When the engagement was created\n    \"opened_at\": \"2022-01-17 15:03:45\",                                                            // When the engagement was accessed\n    \"email_reminders\": false,                                                                      // Boolean value for enabling the email reminders\n    \"reminded_at\": null,                                                                           // When the last email reminder was sent\n    \"email_completed\": false,                                                                      // When the engagement completed email message was sent\n    \"completed_at\": \"2022-01-17 18:26:47\"                                                          // When the engagement was completed\n}"}],"_postman_id":"0c1603a3-62a2-4411-b046-d89a2b174852"},{"name":"Close Form Engagement","id":"1fab10f8-9232-489f-8f1b-c8cf35f7c438","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/close","description":"<p>Updates a From engagement to completed.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}","close"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"13226abf-8201-4b7d-aff2-d70737b8e6bd","name":"Close Form Engagement","originalRequest":{"method":"POST","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/close"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"192cb638-9d8a-4cc0-800d-2b56bc4d2c45\",                                                   // The Form Engagement ID\n    \"account_id\": 218,                                                                              // The ID of the engaged account\n    \"template_id\": \"be8e1718-799b-45e4-932f-c3d0bfb17a4f\",                                          // The ID of Form Template used in the engagement\n    \"title\": \"2022 Tax Filing Organizer\",                                                           // The title of the Form Template\n    \"description\": \"Tax Filing Checklist\",                                                          // The description of the Form template\n    \"security\": \"high\",                                                                             // The security level of the Form Template\n    \"recipients\": [                                                                                 // List of account contacts of the record that received the engagement\n        {                                                                                                                  \n            \"id\": 295,                                                                              // The ID of the account contact\n            \"name\": \"John Doe\",                                                                     // The name of the account contact          \n            \"email\": \"johndoe@precisefp.com\",                                                       // The email of the account contact\n            \"type\": \"primary\",                                                                      // Type of the recipient. Can be primary or secondary\n            \"auth\": \"password\",                                                                     // Authorization type. Can be email, sms, password \n            \"url\": \"https://app.precisefp.com/e/iktfxf\"                                             // URL the engagement can be accessed with\n        }\n    ],\n    \"url\": \"https://app.precisefp.com/api/v3/form-engagements/192cb638-9d8a-4cc0-800d-2b56bc4d2c46/preview\", // URL to preview the Form Engagement \n    \"status\": \"in-progress\",                                                                       // Status of the Form Engagement. Can be new, in-progress or completed\n    \"filled\": 13,                                                                                  // How much of the engagement was filled in (percentage)\n    \"time\": 0,                                                                                     // Time spent on the engagement\n    \"created_at\": \"2022-01-17 14:17:43\",                                                           // When the engagement was created\n    \"opened_at\": \"2022-01-17 15:03:45\",                                                            // When the engagement was accessed\n    \"email_reminders\": false,                                                                      // Boolean value for enabling the email reminders\n    \"reminded_at\": null,                                                                           // When the last email reminder was sent\n    \"email_completed\": false,                                                                      // When the engagement completed email message was sent\n    \"completed_at\": \"2022-01-17 18:26:47\"                                                          // When the engagement was completed\n}"}],"_postman_id":"1fab10f8-9232-489f-8f1b-c8cf35f7c438"},{"name":"Reopen Form Engagement","id":"494ab867-84ba-4902-aea4-e3c2bdeb80d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/reopen","description":"<p>Updates a Form engagement to opened.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}","reopen"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"311e1b37-af2d-4db6-ad0f-05255988e41d","name":"Reopen Form Engagement","originalRequest":{"method":"POST","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/reopen"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n   \"id\": \"192cb638-9d8a-4cc0-800d-2b56bc4d2c45\",                                                   // The Form Engagement ID\n    \"account_id\": 218,                                                                              // The ID of the engaged account\n    \"template_id\": \"be8e1718-799b-45e4-932f-c3d0bfb17a4f\",                                          // The ID of Form Template used in the engagement\n    \"title\": \"2022 Tax Filing Organizer\",                                                           // The title of the Form Template\n    \"description\": \"Tax Filing Checklist\",                                                          // The description of the Form template\n    \"security\": \"high\",                                                                             // The security level of the Form Template\n    \"recipients\": [                                                                                 // List of account contacts of the record that received the engagement\n        {                                                                                                                  \n            \"id\": 295,                                                                              // The ID of the account contact\n            \"name\": \"John Doe\",                                                                     // The name of the account contact          \n            \"email\": \"johndoe@precisefp.com\",                                                       // The email of the account contact\n            \"type\": \"primary\",                                                                      // Type of the recipient. Can be primary or secondary\n            \"auth\": \"password\",                                                                     // Authorization type. Can be email, sms, password \n            \"url\": \"https://app.precisefp.com/e/iktfxf\"                                             // URL the engagement can be accessed with\n        }\n    ],\n    \"url\": \"https://app.precisefp.com/api/v3/form-engagements/192cb638-9d8a-4cc0-800d-2b56bc4d2c46/preview\", // URL to preview the Form Engagement \n    \"status\": \"in-progress\",                                                                       // Status of the Form Engagement. Can be new, in-progress or completed\n    \"filled\": 13,                                                                                  // How much of the engagement was filled in (percentage)\n    \"time\": 0,                                                                                     // Time spent on the engagement\n    \"created_at\": \"2022-01-17 14:17:43\",                                                           // When the engagement was created\n    \"opened_at\": \"2022-01-17 15:03:45\",                                                            // When the engagement was accessed\n    \"email_reminders\": false,                                                                      // Boolean value for enabling the email reminders\n    \"reminded_at\": null,                                                                           // When the last email reminder was sent\n    \"email_completed\": false,                                                                      // When the engagement completed email message was sent\n    \"completed_at\": null,                                                                          // When the engagement was completed\n}"}],"_postman_id":"494ab867-84ba-4902-aea4-e3c2bdeb80d9"},{"name":"Delete Engagement","id":"0de6e9f0-9beb-40e9-960e-5f90922310ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\"password\":\"your_password_here\"}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}","description":"<p>Deletes a Form engagement record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"f1d8d1b9-1c3b-492b-8bc6-dc0050f2b6ee","name":"Delete Engagement","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\"password\":\"enkaes55\"}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"55"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0de6e9f0-9beb-40e9-960e-5f90922310ca"},{"name":"Preview Form Engagement","id":"4f75f313-d897-4cb5-ad29-bb2e01eb0159","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/preview","description":"<p>Returns the HTML content of a Form engagement.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}","preview"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"9c8c87d4-2679-4302-a784-d9dee0424ab4","name":"Preview Form Engagement","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/preview"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"HTML Content here"}],"_postman_id":"4f75f313-d897-4cb5-ad29-bb2e01eb0159"},{"name":"Print Form Engagement","id":"23853e2c-629c-4f5b-b5d6-49aabc0a470f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/print","description":"<p>Returns content of the engagement in a PDF format.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}","print"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"0e6e1e6d-1407-4f67-9069-4bae343debe2","name":"Print Form Engagement","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/print"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"PDF Content here"}],"_postman_id":"23853e2c-629c-4f5b-b5d6-49aabc0a470f"},{"name":"Get Form Engagement Data","id":"da48c61e-fe2c-4623-ba43-678127d97fa0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/data","description":"<p>Returns a completed Form engagement's data.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}","data"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"d6dbf7cc-afd8-4d29-866f-582688a1700e","name":"Get Form Engagement Data","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/data"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"}],"cookie":[],"responseTime":null,"body":"[                                                                                        // List of data from this Form Engagement\n    {\n        \"id\": \"92131787-3d50-47ac-80da-73c9bae49e7b\",                                    // The ID of the form element               \n        \"key\": \"CLIENT|3aa7b3b9-0593-4a78-b071-56f59ca0b0c2|8f931320-6a3e-43f3-a6a9-703030b48c49\", // The form element key\n        \"dataset_id\": \"8f931320-6a3e-43f3-a6a9-703030b48c49\",                            // The ID of the connected Dataset element\n        \"member_id\": 295,                                                                // The ID of the account contact on the record\n        \"row_id\": \"6767d4cc-8f83-452c-b49a-1a577e9626ca\",                                // The ID of the row this element belongs to\n        \"type\": \"STRING\",                                                                // The type of the Element. Can be STRING, CURRENCY, NUMERIC, DATE, ARRAY, ADDRESS or FILE\n        \"value\": \"John\",                                                                 // The value stored in the element\n        \"title\": \"First Name\",                                                           // The title of the element\n        \"description\": null,                                                             // The description of the element\n        \"path\": [                                                                        // The name of the panel, group and element respectively\n            \"Personal Details\",\n            \"Personal Details\",\n            \"First Name\"\n        ]\n    },\n    {\n        \"id\": \"8cab9f54-4abd-4a98-b26c-82167eaeab63\",\n        \"key\": \"CLIENT|2ade608a-4294-44a0-9750-e59bdf6a00af|a6e33060-5000-4b04-826f-477e2332614f\",\n        \"dataset_id\": \"a6e33060-5000-4b04-826f-477e2332614f\",\n        \"member_id\": 295,\n        \"row_id\": \"6767d4cc-8f83-452c-b49a-1a577e9626ca\",\n        \"type\": \"STRING\",\n        \"value\": \"johndoe@precisefp.com\",\n        \"title\": \"Email\",\n        \"description\": null,\n        \"path\": [\n            \"Personal Details\",\n            \"Contact Details\",\n            \"Email\"\n        ]\n    },\n    {\n        \"id\": \"66e4f0ed-1287-44ef-ac58-acb878e17f43\",\n        \"key\": \"CLIENT|3aa7b3b9-0593-4a78-b071-56f59ca0b0c2|69bed5ad-7a10-4cce-8579-60cafbc0bdf6\",\n        \"dataset_id\": \"69bed5ad-7a10-4cce-8579-60cafbc0bdf6\",\n        \"member_id\": 295,\n        \"row_id\": \"6767d4cc-8f83-452c-b49a-1a577e9626ca\",\n        \"type\": \"STRING\",\n        \"value\": \"Doe\",\n        \"title\": \"Last Name\",\n        \"description\": null,\n        \"path\": [\n            \"Personal Details\",\n            \"Personal Details\",\n            \"Last Name\"\n        ]\n    }\n]"}],"_postman_id":"da48c61e-fe2c-4623-ba43-678127d97fa0"},{"name":"Get Form Engagement History","id":"00a8ba16-d708-4699-bd76-97c7edee9300","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/history?sort=-created_at&limit=50&offset=0","description":"<p>Returns a list of previous versions of this Form engagement.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}","history"],"host":["app.precisefp.com"],"query":[{"description":{"content":"<p>Sort by: created_at, updated_at</p>\n","type":"text/plain"},"key":"sort","value":"-created_at"},{"description":{"content":"<p>Limit results</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Offset results</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"7a2f414f-79f1-4fb7-bbf9-c09561fff9f1","name":"Get Form Engagement History","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/history?sort=-created_at&limit=50&offset=0","protocol":"https","host":["app.precisefp.com"],"path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}","history"],"query":[{"key":"sort","value":"-created_at","description":"Sort by: created_at, updated_at"},{"key":"limit","value":"50","description":"Limit results"},{"key":"offset","value":"0","description":"Offset results"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{                                                                                                                               // List of previous versions of this Engagement\n    \"items\": [\n        {\n            \"id\": \"2d379b6e-d5c3-4dab-8baf-0d1de80604f3\",                                                                       // The ID of the previous Engagement\n            \"url\": \"https://app.precisefp.com/api/v3/form-engagements/2d379b6e-d5c3-4dab-8baf-0d1de80604f3/preview\",            // The URL to Preview the Form Engagement\n            \"author\": \"Test Advisor\",                                                                                           // The user that created the Engagement\n            \"created_at\": \"2021-09-27 10:14:01\",                                                                                // When the engagement was created \n            \"completed_at\": \"2021-09-27 10:17:03\"                                                                               // When the engagement was completed\n        },\n        {\n            \"id\": \"e4614fa7-baae-4923-9391-10952a4d1530\",\n            \"url\": \"https://app.precisefp.com/api/v3/form-engagements/e4614fa7-baae-4923-9391-10952a4d1530/preview\",\n            \"author\": \"Test Advisor\",\n            \"created_at\": \"2021-09-27 09:23:11\",\n            \"completed_at\": \"2021-09-27 09:23:49\"\n        },\n        {\n            \"id\": \"df467a86-8074-4263-9c4c-5ca1a0979438\",\n            \"url\": \"https://app.precisefp.com/api/v3/form-engagements/df467a86-8074-4263-9c4c-5ca1a0979438/preview\",\n            \"author\": \"TEst Manager\",\n            \"created_at\": \"2021-09-21 12:46:41\",\n            \"completed_at\": \"2021-09-21 12:49:28\"\n        }\n    ],\n    \"params\": {                                                                // List parameters    \n        \"limit\": \"50\",                                                         // Max records returned (defaults to 50)                                               \n        \"offset\": 3,                                                           // The offset for the next chunk of results\n        \"sort\": \"-created_at\",                                                 // The field used for sorting (the dash represents a descending sort) \n        \"total\": 3                                                             // The total amount of existing records \n    }\n}"}],"_postman_id":"00a8ba16-d708-4699-bd76-97c7edee9300"},{"name":"Get Form Engagement Documents","id":"4ee22957-2838-44b2-bbdf-6c8b0d294c70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/documents?sort=-updated_at&limit=50&offset=0","description":"<p>Returns a list of Form engagement uploaded documents.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}","documents"],"host":["app.precisefp.com"],"query":[{"description":{"content":"<p>Sort by: updated_at</p>\n","type":"text/plain"},"key":"sort","value":"-updated_at"},{"description":{"content":"<p>Limit results</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Offset results</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"c3a416b5-916a-46e5-9607-0f2ce2ca05e1","name":"Get Form Engagement Documents","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/documents?sort=-updated_at&limit=50&offset=0","protocol":"https","host":["app.precisefp.com"],"path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}","documents"],"query":[{"key":"sort","value":"-updated_at","description":"Sort by: updated_at"},{"key":"limit","value":"50","description":"Limit results"},{"key":"offset","value":"0","description":"Offset results"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [                                                                                      // List of Documents available for the Form Engagement\n        {\n            \"id\": \"824e7a29-54fe-4562-a126-50f7af262355\",                                           // ID of the \n            \"field_id\": \"4af48fb5-cc10-46ef-9d93-0565f36f9c90\",                                     // The ID of the field the document was uploaded to\n            \"title\": \"Personal Details / Driver's License / Copy of Driver's License\",              // The path to the field                 \n            \"files\": [                                                                              // The uploaded documents list. Each document record contains a name and url\n                {\n                    \"name\": \"img060.pdf\",\n                    \"url\": \"https://app.precisefp.com/api/v3/form-engagements/941a780e-d13d-4285-afdc-31bda7b3ce02/documents/4af48fb5-cc10-46ef-9d93-0565f36f9c90/824e7a29-54fe-4562-a126-50f7af262355/0/img060.pdf\"\n                }\n            ],\n            \"updated_at\": \"2022-01-11 14:07:23\"                                                     // When was the document uploaded\n        }\n    ],\n    \"params\": {                                                                // List parameters    \n        \"limit\": \"50\",                                                         // Max records returned (defaults to 50)                                               \n        \"offset\": 3,                                                           // The offset for the next chunk of results\n        \"sort\": \"-created_at\",                                                 // The field used for sorting (the dash represents a descending sort) \n        \"total\": 1                                                             // The total amount of existing records \n    }\n}"}],"_postman_id":"4ee22957-2838-44b2-bbdf-6c8b0d294c70"},{"name":"Get Form Engagement Document","id":"fe9bca89-09be-485b-aede-ef705d219c5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/documents/{INSERT_FORM_ENGAGEMENT_FIELD_HERE}/{INSERT_FORM_ENGAGEMENT_ELEMENT_HERE}/{INSERT_INDEX_HERE}/{INSERT_FILENAME_HERE}","description":"<p>Returns a Form engagement's specified document file.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}","documents","{INSERT_FORM_ENGAGEMENT_FIELD_HERE}","{INSERT_FORM_ENGAGEMENT_ELEMENT_HERE}","{INSERT_INDEX_HERE}","{INSERT_FILENAME_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"8f5c3a2b-3474-4828-89f4-3b8f6b2c8f2f","name":"Get Form Engagement Document","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/documents/{INSERT_FORM_ENGAGEMENT_FIELD_HERE}/{INSERT_FORM_ENGAGEMENT_ELEMENT_HERE}/{INSERT_INDEX_HERE}/{INSERT_FILENAME_HERE}"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"PDF Content here"}],"_postman_id":"fe9bca89-09be-485b-aede-ef705d219c5e"},{"name":"Get Engagement Files","id":"bb1e2a43-5f7a-4ccc-bc1d-25836b4503a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/files","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}","files"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"0a43d127-eb77-4b5c-95e8-6de2bfbd63b1","name":"Get Engagement Files","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/files"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"ZIP Content here"}],"_postman_id":"bb1e2a43-5f7a-4ccc-bc1d-25836b4503a0"},{"name":"Get Engagement Signatures","id":"a5165a7f-8015-4b8b-b89c-675036a17a4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/signatures?sort=-signed_at&limit=50&offset=0","description":"<p>Returns a list of Form engagement signatures</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}","signatures"],"host":["app.precisefp.com"],"query":[{"description":{"content":"<p>Sort by: name, email, ip, signed_at</p>\n","type":"text/plain"},"key":"sort","value":"-signed_at"},{"description":{"content":"<p>Limit results</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Offset results</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"c9c31ec1-326a-4637-b707-884c9dfa0d9b","name":"Get Engagement Signatures","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/signatures?sort=-signed_at&limit=50&offset=0","protocol":"https","host":["app.precisefp.com"],"path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}","signatures"],"query":[{"key":"sort","value":"-signed_at","description":"Sort by: name, email, ip, signed_at"},{"key":"limit","value":"50","description":"Limit results"},{"key":"offset","value":"0","description":"Offset results"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [                                                                                  // List of signatures of the Form Engagement\n        {\n            \"id\": 218,                                                                          // ID of the signer's account record\n            \"field_id\": \"b83ad434-20b8-4ab2-92b9-068bcbe2530c\",                                 // ID of the signature field\n            \"title\": \"Personal Details / Other Information / Signature\",                        // Title of the signature field\n            \"name\": \"John Doe\",                                                                 // The name of the signer\n            \"email\": \"johndoe@precisefp.com\",                                                   // The email address of the record\n            \"ip\": \"23.125.207.175\",                                                             // IP the signature was added from\n            \"signed_at\": \"2022-01-11 14:12:22\",                                                 // When was the signature added\n            \"file\": \"https://app.precisefp.com/api/v3/form-engagements/941a780e-d13d-4285-afdc-31bda7b3ce02/signatures/b83ad434-20b8-4ab2-92b9-068bcbe2530c/de94cbc7-90b7-490a-a9a4-d412d73cd0\"                                              \n        },\n        {\n            \"id\": 300,\n            \"field_id\": \"cdd9c897-5e5b-41d3-ac54-d8e2f5a2fa7a\",\n            \"title\": \"Family Members / Other Information / Signature\",\n            \"name\": \"Jane Doe\",\n            \"email\": \"janedoe@precisefp.com\",\n            \"ip\": \"23.125.207.175\",\n            \"signed_at\": \"2022-01-11 14:08:08\",\n            \"file\": null\n        },\n        {\n            \"id\": 300,\n            \"field_id\": \"b83ad434-20b8-4ab2-92b9-068bcbe2530c\",\n            \"title\": \"Personal Details / Other Information / Signature\",\n            \"name\": \"Jane Doe\",\n            \"email\": \"janedoe@precisefp.com\",\n            \"ip\": \"23.125.207.175\",\n            \"signed_at\": \"2022-01-11 14:07:37\",\n            \"file\": \"https://app.precisefp.com/api/v3/form-engagements/941a780e-d13d-4285-afdc-31bda7b3ce02/signatures/b83ad434-20b8-4ab2-92b9-068bcbe2530c/de94cbc7-90b7-490a-a9a4-d412d73cd0\"\n        }\n    ],\n     \"params\": {                                                               // List parameters    \n        \"limit\": \"50\",                                                         // Max records returned (defaults to 50)                                               \n        \"offset\": 3,                                                           // The offset for the next chunk of results\n        \"sort\": \"-signed_at\",                                                  // The field used for sorting (the dash represents a descending sort) \n        \"total\": 1                                                             // The total amount of existing records \n    }\n}"}],"_postman_id":"a5165a7f-8015-4b8b-b89c-675036a17a4b"},{"name":"Get Engagement Signature","id":"c318b028-6f7c-48e0-9446-9ad062814aa9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/signatures/{INSERT_FORM_ENGAGEMENT_SIGNATURE_HERE}/{INSERT_FORM_ENGAGEMENT_SIGNER_HERE}","description":"<p>Returns a Form engagement's specified signature file.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}","signatures","{INSERT_FORM_ENGAGEMENT_SIGNATURE_HERE}","{INSERT_FORM_ENGAGEMENT_SIGNER_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"8cd3d142-a8eb-47ae-959e-8c404a845911","name":"Get Engagement Signature","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/signatures/{INSERT_FORM_ENGAGEMENT_SIGNATURE_HERE}/{INSERT_FORM_ENGAGEMENT_SIGNER_HERE}"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"PDF Content here\r\n"}],"_postman_id":"c318b028-6f7c-48e0-9446-9ad062814aa9"},{"name":"GET Form Engagement one-time-password","id":"2cec5d77-4a31-41d6-9a63-6f00c138a102","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"engagement_code\": \"a4svnw\",                    //The code of the engagement taken from the URL (required)\r\n    \"recipient_code\": \"\",                           //The code of Secondary Contact of the engagement, send empty string for Primary Contact\r\n    \"recipient_email\": null                         //Email address of the engagement's recipient for the purpose of validation\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/form-engagements/otp","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","otp"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"b0e2dbd1-a6f8-46b4-84a7-7c24974321d9","name":"GET engagement one-time-password","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"engagement_code\": \"a4svnw\",                    //The code of the engagement taken from the URL (required)\r\n    \"recipient_code\": \"\",                           //The code of Secondary Contact of the engagement, send empty string for Primary Contact\r\n    \"recipient_email\": null                         //Email address of the engagement's recipient for the purpose of validation (optional)\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/form-engagements/otp"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 22 May 2024 10:55:35 GMT"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 db50275fc6a3d1f557e22016322e2ba2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD12-P2"},{"key":"X-Amz-Cf-Id","value":"Fjg33ocs7FEf4X93Z_Lmf8cUvz69Q9ciW_7rAVT0lQV7SXlKhiFbuA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"url\": \"https://app.precisefp.com/e/a4svnw/?otp=NDc0LjM2MzMuQlNKdTg2bUdLdWtrT2VvMA\",\n    \"expires_at\": \"2024-05-22T10:58:35.000000Z\"\n}"}],"_postman_id":"2cec5d77-4a31-41d6-9a63-6f00c138a102"},{"name":"Form Engagement Emails","id":"4beef455-ae69-4047-ba80-353fda6ce363","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/emails","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","{INSERT_FORM_ENGAGEMENT_ID_HERE}","emails"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"c30f8a96-3bc3-408f-ba39-7591231344aa","name":"Form Engagement Emails","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/form-engagements/{INSERT_FORM_ENGAGEMENT_ID_HERE}/emails"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"new\": {                                                        // Name of the engagement event that should send an email\r\n        \"active\": true,                                             // Flag indicates if email should be sent or not\r\n        \"message\": \"Your message here\",                             // Message template that would be used to make a message body\r\n        \"subject\": \"An invitation from [%advisor.name%]: [%title%]\" // Message template that would be used to make a message subject\r\n    },\r\n    \"reminder\": {                                                   // Name of the engagement event that should send an email\r\n        \"active\": false,                                            // Flag indicates if email should be sent or not\r\n        \"period\": {                                                 // This email is periodical anth this is the perdiod configuration\r\n            \"for\": 30,                                              // Send reminders for a period of {n} days\r\n            \"every\": 5                                              // Send reminders every {n} days\r\n        },\r\n        \"message\":\"Your message here\",                              // Message template that would be used to make a message body\r\n        \"subject\": \"Reminder to complete your [%title%]\"            // Message template that would be used to make a message subject\r\n    },\r\n    \"completed\": {                                                  // Name of the engagement event that should send an email\r\n        \"active\": false,                                            // Flag indicates if email should be sent or not\r\n        \"message\": \"Your message here\",                             // Message template that would be used to make a message body\r\n        \"subject\": \"Thank you for completing your [%title%]\"        // Message template that would be used to make a message subject\r\n    }\r\n}"}],"_postman_id":"4beef455-ae69-4047-ba80-353fda6ce363"}],"id":"956bc962-8e46-413d-a45b-b00e565fc773","description":"<p>All endpoints related with form engagements.</p>\n","_postman_id":"956bc962-8e46-413d-a45b-b00e565fc773","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}}},{"name":"Pdf Engagements","item":[{"name":"Get PDF Engagements","id":"a12ecac7-6f7c-46bf-97b6-264479078474","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements?sort=-created_at&limit=50&offset=0&query&type&account_id","description":"<p>Returns a collection of PDF engagements.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","pdf-engagements"],"host":["app.precisefp.com"],"query":[{"description":{"content":"<p>Sort by: account_id, title, description, name, status, filled, created_at, sent_at, opened_at, completed_at</p>\n","type":"text/plain"},"key":"sort","value":"-created_at"},{"description":{"content":"<p>Limit results</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"description":{"content":"<p>Offset results</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"description":{"content":"<p>Search by title and account name</p>\n","type":"text/plain"},"key":"query","value":null},{"description":{"content":"<p>Filter results by: completed, in-progress</p>\n","type":"text/plain"},"key":"type","value":null},{"description":{"content":"<p>Filter results by account id</p>\n","type":"text/plain"},"key":"account_id","value":null}],"variable":[]}},"response":[{"id":"d890ca9a-0f26-40d9-bb0b-735a30d304b4","name":"Get PDF Engagements","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.precisefp.com/api/v3/pdf-engagements?sort=-created_at&limit=50&offset=0&query&type&account_id","protocol":"https","host":["app.precisefp.com"],"path":["api","v3","pdf-engagements"],"query":[{"key":"sort","value":"-created_at","description":"Sort by: account_id, title, description, name, status, filled, created_at, sent_at, opened_at, completed_at"},{"key":"limit","value":"50","description":"Limit results"},{"key":"offset","value":"0","description":"Offset results"},{"key":"query","value":null,"description":"Search by title and account name"},{"key":"type","value":null,"description":"Filter results by: completed, in-progress"},{"key":"account_id","value":null,"description":"Filter results by account id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [                                                                                                              // List of available PDF Engagements\n        {\n            \"id\": \"64ded714-8d0b-4c35-9d0d-66f6b3360022\",                                                                 // The PDF Engagement ID\n            \"account_id\": 218,                                                                                            // The ID of the engaged account\n            \"url\": \"https://app.precisefp.com/api/v3/pdf-engagements/64ded714-8d0b-4c35-9d0d-66f6b3360022/preview\",       // URL to Preview the PDF Engagement\n            \"title\": \"IRA Beneficiary Designation\",                                                                       // The title of the PDF Engagement\n            \"description\": \"IRA Beneficiary Designation\",                                                                 // The description of the PDF Engagement               \n            \"account\": \"John Doe & Jane Doe\",                                                                             // Account contacts included in the engagement \n            \"pdfs\": [                                                                                                     // List of PDFs included in the engagement\n                {\n                    \"id\": \"3f6972d0-2979-4f7a-9957-237bfdb91da5\",                                                         // The unique ID for the PDF document\n                    \"template\": \"ee5d0209-ca6a-41b8-aab0-6c62f143394e\",                                                   // The ID of the PDF template\n                    \"title\": \"IRA Beneficiary Designation\"                                                                // The title of the PDF template\n                }\n            ],\n            \"recipients\": [                                                                                               // The list of signers\n                {\n                    \"id\": \"fcb7f66a-c55b-47ad-a12e-cac4e315f597\",                                                         // The ID of the signer  \n                    \"first_name\": \"John\",                                                                                 // The first name of the signer\n                    \"last_name\": \"Doe\",                                                                                   // The last name of the signer\n                    \"email\": \"johndoe@precisefp.com\",                                                                     // The email of the signer\n                    \"phone\": {                                                                                            // The phone number of the signer\n                        \"ext\": null,\n                        \"code\": \"+1\",\n                        \"number\": \"3123121232\",\n                        \"country\": \"US\"\n                    },\n                    \"routing\": \"0\",                                                                       // The routing  order \n                    \"url\": \"https://app.precisefp.com/pe/i1cofz/fcb7f66a-c55b-47ad-a12e-cac4e315f597\",    // The URL to sign the engagement \n                    \"sent_at\": \"2022-03-22 14:25:12\",                                                     // When the email containing the URL was sent                  \n                    \"opened_at\": \"\",                                                                      // When the envelope was accessed\n                    \"reminded_at\": \"\",                                                                    // When the reminder was email sent\n                    \"completed_at\": \"\"                                                                    // When the signature was submitted\n                }\n            ],\n            \"filled\": 0,                                                                                 // The progress of the engagement (percentage)   \n            \"activity\": \"Updated\",                                                                       // The latest activity for that engagement      \n            \"activity_at\": \"2022-03-22 14:23:03\",                                                        // Timestamp of the activity     \n            \"status\": \"new\",                                                                             // The status of the PDF engagement\n            \"signature\": {                                                                               // The list of signatures\n                \"provider\": \"schwab\",                                                                    // The signature provider. Can be precisefp, docusign, schwab or tda\n                \"auth\": \"schwab\",                                                                        // The authentication method. Can be email, sms, password, schwab or tda\n                \"envelope_id\": \"\"                                                                        // The ID of the docusign envelope (if any)\n            },\n            \"created_at\": \"2022-03-22 14:23:01\",                                                         // When was the PDF engagement created\n            \"updated_at\": \"2022-03-22 14:23:03\",                                                         // When was the engagement updated\n            \"sent_at\": \"2022-03-22 14:25:12\",                                                            // When was the email message sent\n            \"opened_at\": \"2022-03-23 17:42:23\",                                                          // When was the engagement accessed\n            \"closed_at\": \"2022-03-23 17:59:42\",                                                          // When was the engagement closed \n            \"generated_at\": \"2022-03-23 18:12:22\"                                                        // When was the document generated\n        },\n        {\n            \"id\": \"1f71df27-975b-4b0c-90d1-5c1c77ebfbde\",\n            \"account_id\": 218,\n            \"url\": \"https://app.precisefp.com/api/v3/pdf-engagements/1f71df27-975b-4b0c-90d1-5c1c77ebfbde/preview\",\n            \"title\": \"lient Account Form and 3 other documents\",\n            \"description\": \"Client Account Form, Variable Annuity Investment Disclosure, Advisory Account Agreement, Life Insurance forms\",\n            \"account\": \"John Doe & Jane Doe\",\n            \"pdfs\": [\n                {\n                    \"id\": \"d83fdadf-9c63-4f5c-bb9b-956de2338820\",\n                    \"template\": \"d44b3e75-067f-4c0d-bb8b-1ac1372eb71e\",\n                    \"title\": \"Client Account Form\"\n                },\n                {\n                    \"id\": \"22473779-b7eb-481e-862f-0e434efd3d7a\",\n                    \"template\": \"1adf1edc-5020-47c5-b768-b05b59b938c2\",\n                    \"title\": \"Variable Annuity Investment Disclosure\"\n                },\n                {\n                    \"id\": \"0694c33b-d05f-4d97-856c-ad74fb67d793\",\n                    \"template\": \"08ee18ec-a6b4-4d82-8641-554a5a1a1932\",\n                    \"title\": \"Advisory Account Agreement\"\n                },\n                {\n                    \"id\": \"61496e1f-3340-466d-b1f6-4d7b182163d5\",\n                    \"template\": \"b5673ff1-7d2c-497f-b7a5-4dff4cf1939b\",\n                    \"title\": \"Life Insurance forms\"\n                }\n            ],\n            \"recipients\": [\n                {\n                    \"id\": \"fcb7f66a-c55b-47ad-a12e-cac4e315f597\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\",\n                    \"email\": \"johndoe@precisefp.com\",\n                    \"phone\": {\n                        \"ext\": null,\n                        \"code\": \"+1\",\n                        \"number\": \"3123121232\",\n                        \"country\": \"US\"\n                    },\n                    \"routing\": \"0\",\n                    \"url\": \"https://app.precisefp.com/pe/tycouw/fcb7f66a-c55b-47ad-a12e-cac4e315f597\",\n                    \"sent_at\": \"2022-03-22 14:25:12\",\n                    \"opened_at\": \"2022-03-22 16:45:18\",\n                    \"reminded_at\": \"\",\n                    \"completed_at\": \"2022-03-24 17:33:27\"\n                }\n            ],\n            \"filled\": 0,\n            \"activity\": \"Updated\",\n            \"activity_at\": \"2022-03-22 14:23:03\",\n            \"status\": \"new\",\n            \"signature\": {\n                \"provider\": \"docusign\",\n                \"auth\": \"email\",\n                \"envelope_id\": \"\"\n            },\n            \"created_at\": \"2022-03-22 14:23:01\",\n            \"updated_at\": \"2022-03-22 14:23:03\",\n            \"sent_at\": \"2022-03-22 14:25:12\",\n            \"opened_at\": \"2022-03-23 17:42:23\",\n            \"closed_at\": \"2022-03-23 17:59:42\",\n            \"generated_at\": \"2022-03-23 18:12:22\"\n        }\n    ],\n    \"params\": {                                                 // List of parameters\n        \"limit\": \"50\",                                          // Max records returned\n        \"offset\": 50,                                           // The offset for the next chunk of results \n        \"sort\": \"-created_at\",                                  // The field used for sorting (the dash represents a descending sort) \n        \"query\": null,                                          // The search query used\n        \"type\": null,                                           // The type filter used\n        \"account_id\": null,                                     // The account id used for sorting\n        \"total\": 81                                             // The total amount of existing records\n    }\n}"}],"_postman_id":"a12ecac7-6f7c-46bf-97b6-264479078474"},{"name":"Get PDF Engagement","id":"750cd90f-d55b-4d25-b9e5-ae6c674e21fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}","description":"<p>Returns one, specified PDF engagement record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","pdf-engagements","{INSERT_PDF_ENGAGEMENT_ID_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"022a3a31-e532-4d5d-8449-c627a42e221b","name":"Get PDF Engagement","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"64ded714-8d0b-4c35-9d0d-66f6b3360022\",                                                                 // The PDF Engagement ID\n    \"account_id\": 218,                                                                                            // The ID of the engaged account\n    \"url\": \"https://app.precisefp.com/api/v3/pdf-engagements/64ded714-8d0b-4c35-9d0d-66f6b3360022/preview\",       // URL to Preview the PDF Engagement\n    \"title\": \"IRA Beneficiary Designation\",                                                                       // The title of the PDF Engagement\n    \"description\": \"IRA Beneficiary Designation\",                                                                 // The description of the PDF Engagement               \n    \"account\": \"John Doe & Jane Doe\",                                                                             // Account contacts included in the engagement \n    \"pdfs\": [                                                                                                     // List of PDFs included in the engagement\n        {\n            \"id\": \"3f6972d0-2979-4f7a-9957-237bfdb91da5\",                                                         // The unique ID for the PDF document\n            \"template\": \"ee5d0209-ca6a-41b8-aab0-6c62f143394e\",                                                   // The ID of the PDF template\n            \"title\": \"IRA Beneficiary Designation\"                                                                // The title of the PDF template\n        }\n    ],\n    \"recipients\": [                                                                                               // The list of signers\n        {\n            \"id\": \"fcb7f66a-c55b-47ad-a12e-cac4e315f597\",                                                         // The ID of the signer  \n            \"first_name\": \"John\",                                                                                 // The first name of the signer\n            \"last_name\": \"Doe\",                                                                                   // The last name of the signer\n            \"email\": \"johndoe@precisefp.com\",                                                                     // The email of the signer\n            \"phone\": {                                                                                            // The phone number of the signer\n                \"ext\": null,\n                \"code\": \"+1\",\n                \"number\": \"3123121232\",\n                \"country\": \"US\"\n            },\n            \"routing\": \"0\",                                                                                        // The routing  order \n            \"url\": \"https://app.precisefp.com/pe/i1cofz/fcb7f66a-c55b-47ad-a12e-cac4e315f597\",                     // The URL to sign the engagement \n            \"sent_at\": \"2022-03-22 14:25:12\",                                                                      // When the email containing the URL was sent                  \n            \"opened_at\": \"\",                                                                                       // When the envelope was accessed\n            \"reminded_at\": \"\",                                                                                     // When the reminder was email sent\n            \"completed_at\": \"\"                                                                                     // When the signature was submitted\n        }\n    ],\n    \"filled\": 0,                                                                                      // The progress of the engagement (percentage)   \n    \"activity\": \"Updated\",                                                                            // The latest activity for that engagement      \n    \"activity_at\": \"2022-03-22 14:23:03\",                                                             // Timestamp of the activity     \n    \"status\": \"new\",                                                                                  // The status of the PDF engagement\n    \"signature\": {                                                                                    // The list of signatures\n        \"provider\": \"schwab\",                                                                         // The signature provider. Can be precisefp, docusign, schwab or tda\n        \"auth\": \"schwab\",                                                                             // The authentication method. Can be email, sms, password, schwab or tda\n        \"envelope_id\": \"\"                                                                             // The ID of the docusign envelope (if any)\n    },\n    \"created_at\": \"2022-03-22 14:23:01\",                                                              // When was the PDF engagement created\n    \"updated_at\": \"2022-03-22 14:23:03\",                                                              // When was the engagement updated\n    \"sent_at\": \"2022-03-22 14:25:12\",                                                                 // When was the email message sent\n    \"opened_at\": \"2022-03-23 17:42:23\",                                                               // When was the engagement accessed\n    \"closed_at\": \"2022-03-23 17:59:42\",                                                               // When was the engagement closed \n    \"generated_at\": \"2022-03-23 18:12:22\"                                                             // When was the document generated\n}"}],"_postman_id":"750cd90f-d55b-4d25-b9e5-ae6c674e21fe"},{"name":"Close PDF Engagement","id":"8047a2a3-32fc-4f8a-814c-bba1ba7e23c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}/close","description":"<p>Updates a PDF engagement to completed</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","pdf-engagements","{INSERT_PDF_ENGAGEMENT_ID_HERE}","close"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"9169465c-abaf-4b70-a75f-9d179c98021a","name":"Close PDF Engagement","originalRequest":{"method":"POST","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}/close"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"55"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"64ded714-8d0b-4c35-9d0d-66f6b3360022\",                                                                       // The PDF Engagement ID\n    \"account_id\": 218,                                                                                                  // The ID of the engaged account\n    \"url\": \"https://app.precisefp.com/api/v3/pdf-engagements/64ded714-8d0b-4c35-9d0d-66f6b3360022/preview\",             // URL to Preview the PDF Engagement\n    \"title\": \"IRA Beneficiary Designation\",                                                                             // The title of the PDF Engagement\n    \"description\": \"IRA Beneficiary Designation\",                                                                       // The description of the PDF Engagement               \n    \"account\": \"John Doe & Jane Doe\",                                                                                   // Account contacts included in the engagement \n    \"pdfs\": [                                                                                                           // List of PDFs included in the engagement\n        {\n            \"id\": \"3f6972d0-2979-4f7a-9957-237bfdb91da5\",                                                               // The unique ID for the PDF document\n            \"template\": \"ee5d0209-ca6a-41b8-aab0-6c62f143394e\",                                                         // The ID of the PDF template\n            \"title\": \"IRA Beneficiary Designation\"                                                                      // The title of the PDF template\n        }\n    ],\n    \"recipients\": [                                                                                                     // The list of signers\n        {\n            \"id\": \"fcb7f66a-c55b-47ad-a12e-cac4e315f597\",                                                               // The ID of the signer  \n            \"first_name\": \"John\",                                                                                       // The first name of the signer\n            \"last_name\": \"Doe\",                                                                                         // The last name of the signer\n            \"email\": \"johndoe@precisefp.com\",                                                                           // The email of the signer\n            \"phone\": {                                                                                                  // The phone number of the signer\n                \"ext\": null,\n                \"code\": \"+1\",\n                \"number\": \"3123121232\",\n                \"country\": \"US\"\n            },\n            \"routing\": \"0\",                                                                                        // The routing  order \n            \"url\": \"https://app.precisefp.com/pe/i1cofz/fcb7f66a-c55b-47ad-a12e-cac4e315f597\",                     // The URL to sign the engagement \n            \"sent_at\": \"2022-03-22 14:25:12\",                                                                      // When the email containing the URL was sent                        \n            \"opened_at\": \"\",                                                                                       // When the envelope was accessed\n            \"reminded_at\": \"\",                                                                                     // When the reminder was email sent\n            \"completed_at\": \"\"                                                                                     // When the signature was submitted\n        }\n    ],\n    \"filled\": 0,                                                                                                   // The progress of the engagement (percentage)   \n    \"activity\": \"Updated\",                                                                                         // The latest activity for that engagement      \n    \"activity_at\": \"2022-03-22 14:23:03\",                                                                          // Timestamp of the activity     \n    \"status\": \"new\",                                                                                               // The status of the PDF engagement\n    \"signature\": {                                                                                                 // The list of signatures\n        \"provider\": \"schwab\",                                                                                      // The signature provider. Can be precisefp, docusign, schwab or tda    \n        \"auth\": \"schwab\",                                                                                          // The authentication method. Can be email, sms, password, schwab or tda\n        \"envelope_id\": \"\"                                                                                          // The ID of the docusign envelope (if any)\n    },\n    \"created_at\": \"2022-03-22 14:23:01\",                                                                           // When was the PDF engagement created\n    \"updated_at\": \"2022-03-22 14:23:03\",                                                                           // When was the engagement updated\n    \"sent_at\": \"2022-03-22 14:25:12\",                                                                              // When was the email message sent\n    \"opened_at\": \"2022-03-23 17:42:23\",                                                                            // When was the engagement accessed\n    \"closed_at\": \"2022-03-23 17:59:42\",                                                                            // When was the engagement closed \n    \"generated_at\": \"2022-03-23 18:12:22\"                                                                          // When was the document generated\n}"}],"_postman_id":"8047a2a3-32fc-4f8a-814c-bba1ba7e23c1"},{"name":"Delete PDF Engagement","id":"535d8c46-b05a-4c23-b0d3-a231ea2ebb27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\"password\":\"password1\"}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}","description":"<p>Deletes a PDF engagement record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","pdf-engagements","{INSERT_PDF_ENGAGEMENT_ID_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"06ee9100-21c8-4e7a-8cb4-ff7e3d940023","name":"Delete PDF Engagement","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\"password\":\"enkaes55\"}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"54"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"535d8c46-b05a-4c23-b0d3-a231ea2ebb27"},{"name":"Preview PDF Engagement","id":"25b6fdb3-896d-43ac-93f8-a5afd8cb67cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}/preview","description":"<p>Returns the HTML content of a PDF engagement.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","pdf-engagements","{INSERT_PDF_ENGAGEMENT_ID_HERE}","preview"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"0ea390ec-3213-426a-80c2-7f6d97f19ede","name":"Preview PDF Engagement","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}}/preview"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"HTML Content here"}],"_postman_id":"25b6fdb3-896d-43ac-93f8-a5afd8cb67cc"},{"name":"Get PDF Engagement Data","id":"3a163a90-ad5e-43cd-a1dc-55d4e524e4a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}/data","description":"<p>Returns a completed PDF engagement's data.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","pdf-engagements","{INSERT_PDF_ENGAGEMENT_ID_HERE}","data"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"3badf853-0ffb-4712-b53d-582fb841ff3c","name":"Get PDF Engagement Data","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}/data"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"b6337d52-ed33-4228-85c0-325c36996cbe\",                                          // The ID of the PDF engagement\n        \"key\": \"a270ef0a-0f1a-46b6-8bcd-67e5f2480e25\",                                         // The Key of the PDF engagement\n        \"title\": \"Sample PDF Template\",                                                        // The title of the engagement                                                         \n        \"fields\": [                                                                            // List of data fields on the engaement\n            {\n                \"id\": \"d585384d-5c6b-4b78-a69a-0585bd751511\",                                  // The id of the field\n                \"group\": \"Signatures\",                                                         // The title of the group this element belongs to\n                \"name\": \"Signature\",                                                           // The title of the field\n                \"type\": \"SIGNATURE\",                                                           // The type of the field. Can be SIGNATURE, TEXT, CURRENCY, DATE, ADDRESS, CHECKBOX, PHONE OR FILE\n                \"value\": {                                                                     // The value of the element\n                    \"type\": \"TYPE\",                                                            // The signature type. Can be TYPE or DRAW   \n                    \"user\": \"a675f0cf-8ae6-40c0-be1c-51fa1f68ff4c\",                            // The ID of the signer                  \n                    \"signer\": \"John Doe\",                                                      // The full name of the signer\n                    \"signedat\": \"2022-04-15T12:34:20.256675Z\",                                 // The timestamp of the signature\n                    \"ipaddress\": \"23.125.207.175\",                                             // When was the signature added\n                    \"signature\": \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAREAAAAzCAYAAACwhzwHAAAAAXNSR0IArs4c6QAAGfNJREFUeF7t3QOwbUuSBuDssW3btm3btm31zHQPemzbtt1j2zMxtm3F11H5Jm/...\"\n                }\n            },\n            {\n                \"id\": \"c2114f49-83d8-45bf-8c49-90ec1bdc133c\",\n                \"group\": \"Test\",\n                \"name\": \"Text element\",\n                \"type\": \"TEXT\",\n                \"value\": \"Added value\"\n            },\n            {\n                \"id\": \"e30fd352-dff1-41b0-9682-06cbe12b13a7\",\n                \"group\": \"Test\",\n                \"name\": \"Currency element\",\n                \"type\": \"CURRENCY\",\n                \"value\": \"99.000\"\n            }\n        ]\n    }\n]"}],"_postman_id":"3a163a90-ad5e-43cd-a1dc-55d4e524e4a2"},{"name":"Get PDF Engagement Emails","id":"b7bb582d-8e30-4912-95d8-38a29b414308","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}/emails","description":"<p>Returns a completed PDF engagement's data.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","pdf-engagements","{INSERT_PDF_ENGAGEMENT_ID_HERE}","emails"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"a1a3c437-d650-4eda-9d13-2b2bbf368e99","name":"Get PDF Engagement Emails","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}/emails"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"new\": {                                                        // Name of the engagement event that should send an email\n        \"active\": true,                                             // Flag indicates if email should be sent or not\n        \"message\": \"Your message here\",                             // Message template that would be used to make a message body\n        \"subject\": \"An invitation from [%advisor.name%]: [%title%]\" // Message template that would be used to make a message subject\n    },\n    \"reminder\": {                                                   // Name of the engagement event that should send an email\n        \"active\": false,                                            // Flag indicates if email should be sent or not\n        \"period\": {                                                 // This email is periodical anth this is the perdiod configuration\n            \"for\": 30,                                              // Send reminders for a period of {n} days\n            \"every\": 5                                              // Send reminders every {n} days\n        },\n        \"message\":\"Your message here\",                              // Message template that would be used to make a message body\n        \"subject\": \"Reminder to complete your [%title%]\"            // Message template that would be used to make a message subject\n    },\n    \"completed\": {                                                  // Name of the engagement event that should send an email\n        \"active\": false,                                            // Flag indicates if email should be sent or not\n        \"message\": \"Your message here\",                             // Message template that would be used to make a message body\n        \"subject\": \"Thank you for completing your [%title%]\"        // Message template that would be used to make a message subject\n    }\n}"}],"_postman_id":"b7bb582d-8e30-4912-95d8-38a29b414308"},{"name":"Get PDF Engagement History","id":"2f02acd3-b319-4488-9375-8fabf5d43a56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}/history","description":"<p>Returns a list of previous versions of this PDF engagement.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","pdf-engagements","{INSERT_PDF_ENGAGEMENT_ID_HERE}","history"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"bf47de50-cb2c-44d8-b460-02b28336d702","name":"Get PDF Engagement History","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}/history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 218,                                                          // The id of the engaged account\n        \"type\": \"pdfengagement.closed\",                                     // The type of activity \n        \"created_at\": \"2022-04-15T12:34:21.000000Z\",                        // The timestamp of the activity\n        \"options\": {                                                        \n            \"authorName\": \"John Doe\",                                       // The author of the activity\n            \"clientName\": \"John Doe & Jane Doe\"                             // The name of the engaged account contact \n        }\n    },\n    {\n        \"id\": 218,\n        \"type\": \"pdfengagement.signed\",\n        \"created_at\": \"2022-04-15T12:34:20.000000Z\",\n        \"options\": {\n            \"authorName\": \"John Doe\",\n            \"clientName\": \"John Doe\"\n        }\n    },\n    {\n        \"id\": 218,\n        \"type\": \"pdfengagement.accessed\",\n        \"created_at\": \"2022-04-15T12:34:16.000000Z\",\n        \"options\": {\n            \"authorName\": \"John Doe\",\n            \"clientName\": \"John Doe\"\n        }\n    },\n    {\n        \"id\": 218,\n        \"type\": \"pdfengagement.sent\",\n        \"created_at\": \"2022-04-15T12:34:02.000000Z\",\n        \"options\": {\n            \"authorName\": \"Advisor Name\",\n            \"clientName\": \"John Doe\"\n        }\n    }\n]"}],"_postman_id":"2f02acd3-b319-4488-9375-8fabf5d43a56"},{"name":"Get PDF Engagement Documents","id":"806bf289-390f-4287-bc2d-47dfce58165e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}/documents","description":"<p>Returns a list of PDF engagement documents.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","pdf-engagements","{INSERT_PDF_ENGAGEMENT_ID_HERE}","documents"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"c8e5dc17-91eb-4a2e-abe9-dc8a8891b463","name":"Get PDF Engagement Documents","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}/documents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"b6337d52-ed33-4228-85c0-325c36996cbe\",                                                                                                      // The ID of the document\n        \"filename\": \"Sample PDF Template.pdf\",                                                                                                             // The name of the PDF file\n        \"url\": \"https://app.precisefp.com/api/v3/pdf-engagements/9246c129-7669-469d-9111-99c95166ddc5/documents/pdf/b6337d52-ed33-4228-85c0-325c36996cb\",  // The URL for the file\n        \"description\": \"Completed PDF\"                                                                                                                     // The type of the file\n    },\n    {\n        \"id\": \"9246c129-7669-469d-9111-99c95166ddc5\",\n        \"filename\": \"certificate_of_completion.pdf\",\n        \"description\": \"Supporting document\",\n        \"url\": \"https://app.precisefp.com/api/v3/pdf-engagements/9246c129-7669-469d-9111-99c95166ddc5/documents/certificate/certificate_of_completion\"\n    }\n]"}],"_postman_id":"806bf289-390f-4287-bc2d-47dfce58165e"},{"name":"Get PDF Engagement Document","id":"f9ed8d5d-5445-4a8b-a11a-33f8e728614b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}/documents/{INSERT_PDF_ENGAGEMENT_DOCUMENT_TYPE_HERE}/{INSERT_PDF_ENGAGEMENT_DOCUMENT_HERE}","description":"<p>Returns a PDF engagement's specified document file.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","pdf-engagements","{INSERT_PDF_ENGAGEMENT_ID_HERE}","documents","{INSERT_PDF_ENGAGEMENT_DOCUMENT_TYPE_HERE}","{INSERT_PDF_ENGAGEMENT_DOCUMENT_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"98864baf-9b85-4b3f-a09b-55ec5ccabbc2","name":"Get PDF Engagement Document","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}/documents/{INSERT_PDF_ENGAGEMENT_DOCUMENT_TYPE_HERE}/{INSERT_PDF_ENGAGEMENT_DOCUMENT_HERE}"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"PDF Content here"}],"_postman_id":"f9ed8d5d-5445-4a8b-a11a-33f8e728614b"},{"name":"Get PDF Engagement Files","id":"d1504b94-ab70-47b6-bb09-fd4d2cc5c7ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}/files","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","pdf-engagements","{INSERT_PDF_ENGAGEMENT_ID_HERE}","files"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"3ca1f3dc-a6e7-4188-9eda-f0950f0b2c14","name":"Get PDF Engagement Files","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/pdf-engagements/{INSERT_PDF_ENGAGEMENT_ID_HERE}/files"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"File Content"}],"_postman_id":"d1504b94-ab70-47b6-bb09-fd4d2cc5c7ae"},{"name":"GET PDF Engagement one-time-password","id":"7f1b42db-0ca4-4d1a-8f12-b444df5ccbaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"engagement_code\": \"tpsakk\",\r\n    \"recipient_code\": \"\",\r\n    \"recipient_email\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/form-engagements/otp","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","form-engagements","otp"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"20a5d391-8afc-4f65-a9ec-681cbe15d7d1","name":"GET PDF Engagement one-time-password","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"engagement_code\": \"evzreb\",                                        //The code of the engagement taken from the URL (required)\r\n    \"recipient_code\": \"fdd21f6a-035d-411f-9a8c-51f689a8df3f\",           //The code of the engagement Recipient taken from the URL (required)\r\n    \"recipient_email\": null                                             //Email address of the engagement's recipient for the purpose of validation\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/pdf-engagements/otp"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 22 May 2024 10:18:52 GMT"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 2bd6353c0a987182c26c3a5219b81cee.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD12-P2"},{"key":"X-Amz-Cf-Id","value":"wXDlvE_gFxl0ZY1mUzdSllHJV-HhhJDxAWwEVaf0Bn_C7OEAqVv0-Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"url\": \"https://app.precisefp.com/pe/evzreb/fdd21f6a-035d-411f-9a8c-51f689a8df3f?otp=NDc0LjM2MzMuN0FBbmpKQzZuTmNsQ0RUYg\",\n    \"expires_at\": \"2024-05-22T10:21:52.000000Z\"\n}"}],"_postman_id":"7f1b42db-0ca4-4d1a-8f12-b444df5ccbaf"}],"id":"4f109e6a-6c68-442c-b774-9fe93fe9e67c","description":"<p>All endpoints related with pdf engagements.</p>\n","_postman_id":"4f109e6a-6c68-442c-b774-9fe93fe9e67c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}}},{"name":"Reports","item":[{"name":"Get Reports","id":"da9e4a3a-94c3-4a31-9461-de2b9ba8b95e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","reports"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"203cfbce-fb9c-4dd8-91f7-47173fcfd308","name":"Reports Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.precisefp.com/api/v3/reports?type=my&query=&sort=-created_at&limit=50&offset=0","protocol":"https","host":["app.precisefp.com"],"path":["api","v3","reports"],"query":[{"key":"type","value":"my"},{"key":"query","value":""},{"key":"sort","value":"-created_at"},{"key":"limit","value":"50"},{"key":"offset","value":"0"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"9f5f7ad5-cb32-4257-a51f-f71306342c46\",                                               // Generated report id\n        \"template_id\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",                                      // The template_key that being used for this report\n        \"form_template_id\": null,\n        \"title\": \"Cat\",                                                                             // Report's title\n        \"description\": \"Data from Test Company.\",                                                   // Report's description\n        \"type\": \"accounts\",                                                                         // Report's type\n        \"author_name\": \"Test User\",                                                                 // Report's author full name\n        \"author_email\": \"test2@precisefp.com\",                                                      // Report's author email\n        \"records\": 2,                                                                               // Total amount of rows in report\n        \"offices\": [\n            2\n        ],                                                                                          // List of the office ids where this report can be accessed \n        \"filename\": \"2025_07_28_12_25_cat\",                                                         // Report's file name that is assigned in the report's storage \n        \"activity\": \"Generating\",                                                                   // Current status label\n        \"activity_at\": \"2025-07-28T12:25:00.000000Z\",                                               // The date and time when the current status label has been achieved\n        \"status\": \"completed\",                                                                      // Current status name\n        \"details\": {                                                                                // The report details that can be obtained and displayed here\n            \"Teams\": [\n                {\n                    \"label\": \"Records from\",\n                    \"total\": 1,\n                    \"value\": \"Test Company\",\n                    \"source\": \"Teams\"\n                }\n            ]\n        },\n        \"created_at\": \"2025-07-28T12:24:59.000000Z\",                                                // The date and time when the report was created\n        \"updated_at\": \"2025-07-28T12:25:00.000000Z\",                                                // The date and time when the report was updated\n        \"started_at\": \"2025-07-28T12:25:00.000000Z\",                                                // The date and time when the report generation started\n        \"completed_at\": \"2025-07-28T12:25:00.000000Z\",                                              // The date and time when the report generation completed\n        \"aborted_at\": null                                                                          // The date and time when the report generation was aborted\n    }\n]"}],"_postman_id":"da9e4a3a-94c3-4a31-9461-de2b9ba8b95e"},{"name":"Create  Report","id":"1d0a4d1e-4612-4ff7-a996-f33b4e5a8c19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"template_id\": \"f9d74374-4ff9-4d15-8c28-bd5294336a5f\",                   // The unique id for the template (required)\r\n    \"teams\": [727, 723]                                                      // Team ID where your user has presence\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","reports"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"a346676f-6c1c-41db-8ea1-c914bd5fa668","name":"Reports Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"template_id\": \"f9d74374-4ff9-4d15-8c28-bd5294336a5f\",                   // The unique id for the template (required)\r\n    \"teams\": [727, 723]                                                      // Team ID where your user has presence\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/reports"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"report\": {                                                                             // Response payload\n        \"id\": \"033c502f-7b37-4c19-b4d7-dce1535be3bd\",                                       // Generated report id\n        \"key\": \"041fe07f-1fcf-40a0-a213-735a3fda2eb5\",                                      // The template_key that being used for this report\n        \"title\": \"test column added for the api test\",                                      // Report's title\n        \"description\": \"Data from Test Company.\",                                           // Report's description\n        \"type\": \"account_profiles\",                                                         // Report's type\n        \"author_name\": \"Test User\",                                                         // Report's author full name\n        \"author_email\": \"test2@precisefp.com\",                                              // Report's author email\n        \"records\": 0,                                                                       // Total amount of rows in report\n        \"teams\": [\n            727,\n            723\n        ],                                                                                  // List of the office ids where this report can be accessed \n        \"filename\": null,                                                                   // Report's file name that is assigned in the report's storage \n        \"activity\": \"Created\",                                                              // Current status label\n        \"activity_at\": \"2025-07-28T11:49:58.000000Z\",                                       // The date and time when the current status label has been achieved\n        \"status\": \"new\",                                                                    // Current status name\n        \"details\": {                                                                        // The report details that can be obtained and displayed here\n            \"Teams\": [\n                {\n                    \"source\": \"Teams\",\n                    \"label\": \"Records from\",\n                    \"value\": \"Test Company\",\n                    \"total\": 1\n                }\n            ]\n        },\n        \"created_at\": \"2025-07-28T11:49:58.000000Z\",                                        // The date and time when the report was created\n        \"updated_at\": \"2025-07-28T11:49:58.000000Z\",                                        // The date and time when the report was updated\n        \"started_at\": null,                                                                 // The date and time when the report generation started\n        \"completed_at\": null,                                                               // The date and time when the report generation completed\n        \"aborted_at\": null                                                                  // The date and time when the report generation was aborted\n    },\n    \"message\": \"Report created successfully.\"                                               // Generic message\n}"}],"_postman_id":"1d0a4d1e-4612-4ff7-a996-f33b4e5a8c19"},{"name":"Reports Download","id":"5641f243-4f99-480a-915b-f4d41147d1d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/reports/{INSERT_REPORT_ID_HERE}/download","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","reports","{INSERT_REPORT_ID_HERE}","download"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5641f243-4f99-480a-915b-f4d41147d1d9"},{"name":"Get Report","id":"5c010427-e9a3-44ca-9be3-52de2f2d16db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/reports/{INSERT_REPORT_ID_HERE}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","reports","{INSERT_REPORT_ID_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"ccd70b02-87b2-4943-9ae5-bc777110a3d3","name":"Get Report","originalRequest":{"method":"GET","header":[],"url":"https://app.precisefp.com/api/v3/reports/{INSERT_REPORT_ID_HERE}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"9f5f7ad5-cb32-4257-a51f-f71306342c46\",                                   // Generated report id\n    \"title\": \"Cat\",                                                                 // Report's title\n    \"records\": 2,                                                                   // Total amount of rows in report\n    \"filename\": \"2025_07_28_12_25_cat\",                                             // Report's file name that is assigned in the report's storage \n    \"template\": {\n        \"key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",                              // The Report Template ID\n        \"form_template_key\": null,\n        \"type\": \"accounts\",                                                         // Report's type\n        \"sources\": [\n            {\n                \"key\": \"da692cc1-258b-48ca-8a87-49d7fda8ba93\",                      // Source ID\n                \"report_key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",               // The Report Template ID\n                \"name\": \"account\",                                                  // Source name\n                \"sort\": 1,                                                          // Source order number in the sources list\n                \"options\": null                                                     // Source options\n            },\n            {\n                \"key\": \"c7d210e3-e7c5-4f2b-8edb-3a23c9384681\",\n                \"report_key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",\n                \"name\": \"client\",\n                \"sort\": 2,\n                \"options\": null\n            },\n            {\n                \"key\": \"5c90f183-0b51-44ec-b5dd-5c41387a1d4b\",\n                \"report_key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",\n                \"name\": \"coclient\",\n                \"sort\": 3,\n                \"options\": null\n            }\n        ],\n        \"columns\": [\n            {\n                \"key\": \"46d1712f-7745-47f8-9fcb-fbc240057f8d\",                      // Column's ID\n                \"report_key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",               // The Report Template ID\n                \"entity\": null,                                                     // Entity reference\n                \"type\": \"option\",                                                   // Column's type\n                \"title\": \"Type\",                                                    // Column's title\n                \"description\": \"The type of account\",                               // Column's description\n                \"options\": null,                                                    // Column's options\n                \"sort\": 1                                                           // Column's order number in the columns list\n            },\n            {\n                \"key\": \"2d19dc9b-f718-4e32-913d-3dd3493ccebb\",\n                \"report_key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",\n                \"entity\": null,\n                \"type\": \"text\",\n                \"title\": \"Name\",\n                \"description\": \"The name of the account\",\n                \"options\": null,\n                \"sort\": 2\n            },\n            {\n                \"key\": \"8d1e0cb0-c4f2-4303-9382-b723b1df0d7e\",\n                \"report_key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",\n                \"entity\": null,\n                \"type\": \"text\",\n                \"title\": \"First Name\",\n                \"description\": \"The first name of the client\",\n                \"options\": null,\n                \"sort\": 3\n            },\n            {\n                \"key\": \"ca9d6a7a-f387-42c2-acea-54dd66ce5663\",\n                \"report_key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",\n                \"entity\": null,\n                \"type\": \"text\",\n                \"title\": \"Last Name\",\n                \"description\": \"The last name of the client\",\n                \"options\": null,\n                \"sort\": 4\n            },\n            {\n                \"key\": \"491e2c38-86f6-42e7-abc3-eecf911d96ee\",\n                \"report_key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",\n                \"entity\": null,\n                \"type\": \"text\",\n                \"title\": \"Email\",\n                \"description\": \"The email address of the client\",\n                \"options\": null,\n                \"sort\": 5\n            },\n            {\n                \"key\": \"35036dc2-61f0-4af0-8316-4ffba15aa2c5\",\n                \"report_key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",\n                \"entity\": null,\n                \"type\": \"phone\",\n                \"title\": \"Mobile Phone\",\n                \"description\": \"The mobile phone of the client\",\n                \"options\": null,\n                \"sort\": 6\n            }\n        ],\n        \"fields\": [\n            {\n                \"key\": \"ed131ed6-fb55-4b43-b7fe-8bbafff1d8c7\",                      // Field's ID\n                \"report_key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",               // The Report Template ID\n                \"column_key\": \"46d1712f-7745-47f8-9fcb-fbc240057f8d\",               // Column's ID\n                \"source_key\": \"da692cc1-258b-48ca-8a87-49d7fda8ba93\",               // Source ID\n                \"name\": \"type\",                                                     // Field name\n                \"options\": null                                                     // Field's options\n            },\n            {\n                \"key\": \"cd87cdeb-6bcd-4851-b702-63b40dd6b0d8\",\n                \"report_key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",\n                \"column_key\": \"2d19dc9b-f718-4e32-913d-3dd3493ccebb\",\n                \"source_key\": \"da692cc1-258b-48ca-8a87-49d7fda8ba93\",\n                \"name\": \"name\",\n                \"options\": null\n            },\n            {\n                \"key\": \"81e9b9cc-d084-49f6-8f5b-d225054a2fa0\",\n                \"report_key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",\n                \"column_key\": \"8d1e0cb0-c4f2-4303-9382-b723b1df0d7e\",\n                \"source_key\": \"c7d210e3-e7c5-4f2b-8edb-3a23c9384681\",\n                \"name\": \"firstname\",\n                \"options\": null\n            },\n            {\n                \"key\": \"c36bd7ec-e5e2-476e-9ca6-302ce4d75f94\",\n                \"report_key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",\n                \"column_key\": \"ca9d6a7a-f387-42c2-acea-54dd66ce5663\",\n                \"source_key\": \"c7d210e3-e7c5-4f2b-8edb-3a23c9384681\",\n                \"name\": \"lastname\",\n                \"options\": null\n            },\n            {\n                \"key\": \"b3896539-85c3-4eca-b3d2-6e988ec9e99d\",\n                \"report_key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",\n                \"column_key\": \"491e2c38-86f6-42e7-abc3-eecf911d96ee\",\n                \"source_key\": \"c7d210e3-e7c5-4f2b-8edb-3a23c9384681\",\n                \"name\": \"email\",\n                \"options\": null\n            },\n            {\n                \"key\": \"0ccd5854-b11e-4a6e-a12c-59176170b3c3\",\n                \"report_key\": \"bbe07035-cf8b-4144-9550-fdc8f0e682f2\",\n                \"column_key\": \"35036dc2-61f0-4af0-8316-4ffba15aa2c5\",\n                \"source_key\": \"c7d210e3-e7c5-4f2b-8edb-3a23c9384681\",\n                \"name\": \"phone\",\n                \"options\": null\n            }\n        ],\n        \"filters\": [],                                                              // The list of template filters available\n        \"options\": null                                                             // The template options available\n    },\n    \"data\": [                                                                       // The list of report's rows. The actual content of this section can differ regarding on the template\n        {\n            \"_id\": \"account.2\",                                                     \n            \"_group\": 2,                                                            \n            \"46d1712f-7745-47f8-9fcb-fbc240057f8d\": \"Prospect\",                     \n            \"2d19dc9b-f718-4e32-913d-3dd3493ccebb\": \"Foo bar\",                      \n            \"8d1e0cb0-c4f2-4303-9382-b723b1df0d7e\": \"Foo\",                          \n            \"ca9d6a7a-f387-42c2-acea-54dd66ce5663\": \"bar\",                          \n            \"491e2c38-86f6-42e7-abc3-eecf911d96ee\": \"exami@email.com\",              \n            \"35036dc2-61f0-4af0-8316-4ffba15aa2c5\": \"+1 425-219-9163\",              \n            \"_source\": \"account\",                                                   \n            \"_type\": \"single\"                                                       \n        },\n        {\n            \"_id\": \"account.3\",\n            \"_group\": 3,\n            \"46d1712f-7745-47f8-9fcb-fbc240057f8d\": \"Prospect\",\n            \"2d19dc9b-f718-4e32-913d-3dd3493ccebb\": \"Foo1 Bar2\",\n            \"8d1e0cb0-c4f2-4303-9382-b723b1df0d7e\": \"Foo1\",\n            \"ca9d6a7a-f387-42c2-acea-54dd66ce5663\": \"Bar2\",\n            \"491e2c38-86f6-42e7-abc3-eecf911d96ee\": \"qweqwe@email.com\",\n            \"35036dc2-61f0-4af0-8316-4ffba15aa2c5\": \"+1 425-219-9162\",\n            \"_source\": \"account\",\n            \"_type\": \"single\"\n        }\n    ]\n}"}],"_postman_id":"5c010427-e9a3-44ca-9be3-52de2f2d16db"},{"name":"Delete Report","id":"49276c4d-f4d5-45e8-a33b-e8c53c637515","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\"password\":\"your_password_here\"}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/reports/{INSERT_REPORT_ID_HERE}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","reports","{INSERT_REPORT_ID_HERE}"],"host":["app.precisefp.com"],"query":[],"variable":[]}},"response":[{"id":"18627dd5-a30f-444c-8524-8881bf45a980","name":"Reports Delete","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"password\":\"your_password_here\"}","options":{"raw":{"language":"json"}}},"url":"https://app.precisefp.com/api/v3/reports/{INSERT_REPORT_ID_HERE}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"message\": \"OK\"\n}"}],"_postman_id":"49276c4d-f4d5-45e8-a33b-e8c53c637515"}],"id":"1bcee822-32f9-41b0-b5ee-5d2e9152de0c","description":"<p>All endpoints related to the Reports.</p>\n","_postman_id":"1bcee822-32f9-41b0-b5ee-5d2e9152de0c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]},"isInherited":true,"source":{"_postman_id":"9becfdc1-3041-401e-9446-12ff1338edc0","id":"9becfdc1-3041-401e-9446-12ff1338edc0","name":"PreciseFP API V3","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{INSERT_TOKEN_HERE}"}]}},"event":[{"listen":"prerequest","script":{"id":"685922ec-4609-4cd8-928e-b90a07eafff7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a6d2441d-5bb1-4787-ab07-9315361384f1","type":"text/javascript","exec":[""]}}],"variable":[{"key":"domain","value":"app.precisefp.com"},{"key":"token","value":"{INSERT_TOKEN_HERE}"},{"key":"account","value":"{INSERT_ACCOUNT_ID_HERE}"},{"key":"person","value":"{INSERT_PERSON_ID_HERE}"},{"key":"form-template","value":"{INSERT_FORM_TEMPLATE_ID_HERE}"},{"key":"pdf-template","value":"{INSERT_PDF_TEMPLATE_ID_HERE}"},{"key":"form-engagement","value":"{INSERT_FORM_ENGAGEMENT_ID_HERE}"},{"key":"pdf-engagement","value":"{INSERT_PDF_ENGAGEMENT_ID_HERE}"},{"key":"pdf-engagement-document","value":"{INSERT_PDF_ENGAGEMENT_DOCUMENT_HERE}"},{"key":"pdf-engagement-document-type","value":"{INSERT_PDF_ENGAGEMENT_DOCUMENT_TYPE_HERE}"},{"key":"form-engagement-signature","value":"{INSERT_FORM_ENGAGEMENT_SIGNATURE_HERE}"},{"key":"form-engagement-signer","value":"{INSERT_FORM_ENGAGEMENT_SIGNER_HERE}"},{"key":"form-engagement-field","value":"{INSERT_FORM_ENGAGEMENT_FIELD_HERE}"},{"key":"form-engagement-element","value":"{INSERT_FORM_ENGAGEMENT_ELEMENT_HERE}"},{"key":"index","value":"{INSERT_INDEX_HERE}"},{"key":"filename","value":"{INSERT_FILENAME_HERE}"},{"key":"report_template_id","value":"{INSERT_REPORT_TEMPLATE_KEY_HERE}"},{"key":"report_id","value":"{INSERT_REPORT_ID_HERE}"}]}