{"info":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","description":"<html><head></head><body><h2 id=\"overview\">Overview</h2>\n<p>Trackops offers a REST API to programmatically access various data throughout the system, and optionally connect your Trackops data to other 3rd party services. Keep in mind that while we do offer API functionality to our customers, it is your responsibility to respect our usage restrictions and responsibilities. Please be a good API citizen and do not abuse or misuse API functionality. If at any time, we determine that you are abusing API privileges, we reserve the right to suspend or permanently revoke API access.</p>\n<p>For questions or assistance related to the developer API, please contact support at <a href=\"https://mailto:support@trackops.com\">support@trackops.com</a> and we will be able to assist you with implementation specifics.</p>\n<h2 id=\"access-points\">Access Points</h2>\n<p>Accessing the Trackops REST API is as simple as <a href=\"https://support.trackops.com/hc/en-us/articles/212338823\">activating API access</a>, and connecting to a fully qualified API end point via the subdomain on your account.</p>\n<p><strong>Example Access Point (getting a client list):</strong></p>\n<p><code>https://{subdomain}.viewcases.com/api/v1/clients</code></p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>The Trackops API is an SSL-only API, meaning that non-SSL connections are not allowed. Access to the API requires an active <em>Full Access</em> employee username, and your company <a href=\"https://support.trackops.com/hc/en-us/articles/212338823\">API Token</a>. Accessing the API on behalf of a <em>Limited Access</em> employees or client contacts is not permitted.</p>\n<p>Authentication takes place in the form of a specially formatted username in the form of \"<em>{username}/token</em>\", in conjunction with an API token.</p>\n<p><strong>Example of basic authentication:</strong></p>\n<p><code>{username}/token:{api_token}</code></p>\n<p><strong>Note:</strong> History logs will be recorded using the user information that corresponds to username supplied. If you need to specifically identify API activity, it is best practice to perform API calls using a separate <em>Full Access</em> employee account that is easy to identify as such.</p>\n<p>If you aren't sure how to test connectivity to the Trackops API, we recommend the use of <a href=\"http://en.wikipedia.org/wiki/CURL\">cURL</a>. cURL is a common cross-platform tool used to connect to transfer data through various protocols.</p>\n<p><strong>Generic Example using cURL:</strong></p>\n<p><code>curl -u {username}/token:{api_token} https://{subdomain}.viewcases.com/api/v1/...</code></p>\n<p><strong>Specific Example using cURL (fetching a client list):</strong></p>\n<p><code>curl -u samspade/token:d29d3136-1251-5041-9e1c-428c77edb64d https://mycompany.viewcases.com/api/v1/clients</code></p>\n<h2 id=\"rate-limiting\">Rate Limiting</h2>\n<p>This API is rate limited, meaning that you must throttle your requests. It is best practice to limit requests to approximately 1 request per second to avoid rate limiting. If too many requests are made at once, you will receive an HTTP <a href=\"http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#4xx_Client_Error\">429 Too Many Requests</a> response, along with the supporting error message.</p>\n<p><strong>Tip:</strong> If you routinely require access to many records at once for reporting or other purposes, it is best practice to routinely cache new and updated records to a local data store. For more information, please read about <em>Caching Collection Data</em> below.</p>\n<h2 id=\"responses\">Responses</h2>\n<p>All responses from the API are returned in <a href=\"http://en.wikipedia.org/wiki/Json\">JSON</a> format. A typical response will contain a <a href=\"http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#2xx_Success\">200 OK</a> status, indicating a successful response. Should an error occur, the response will contain standard <a href=\"http://en.wikipedia.org/wiki/List_of_HTTP_status_codes\">HTTP Status Codes</a> to indicate the problem. In most cases, the response will also include an error message or other information to provide more insight about the error. The most common error is <a href=\"http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#4xx_Client_Error\">404 Not Found</a>, indicating that the URL you are attempting to access is incorrect or has a typo.</p>\n<p><strong>Note:</strong> All responses that include dates with time (i.e. <em>timestamp</em> fields) are served in <a href=\"http://en.wikipedia.org/wiki/UTC\">UTC</a>. It is up to you to convert times to your own timezone if so desired.</p>\n<h2 id=\"collections\">Collections</h2>\n<p>Collections are responses that include multiple records. To improve performance and manageability, collections are limited to 100 records per page. You can use the <em>per_page</em> request parameter to limit results to a smaller number, and the <em>page</em> parameter to jump to a specific page of the results.</p>\n<p><strong>Tip:</strong> If a collection is empty, or the amount of records returned is less than the <em>per_page</em> parameter, this indicates there are no more records to fetch based on the specified search criteria.</p>\n<p>Collection results can also be sorted in ascending (asc) or descending (desc) order through the use of the <em>dir</em> parameter. By default, collections are always returned in descending order (newest records at the top).</p>\n<p><strong>Example of a Collection Sorted by Direction (sorted ascending)</strong></p>\n<p><code>curl -u {username}/token:{api_token} \"https://{subdomain}.viewcases.com/api/v1/case/updates?dir=asc\"</code></p>\n<h2 id=\"searching-collections\">Searching Collections</h2>\n<p>Using request parameters, you can filter your requests to return a specific subset of records. Each request object has a specific set of available request parameters that can be used. For more information on specific parameters available for a query, examine the documentation for the specific object you are interested in (listed under the Objects section below).</p>\n<p><strong>Note:</strong> All collection based queries recognize the <em>per_page,</em> <em>page,</em> and <em>dir</em> parameters.</p>\n<p>Passing invalid request parameters to the resource will result in a <a href=\"http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#4xx_Client_Error\">400 Bad Request</a> response.</p>\n<p>If your search query contains strings, they must be <a href=\"http://en.wikipedia.org/wiki/URL_encoding\">URL encoded</a> for the API to properly parse them.</p>\n<p><strong>Example cURL Request with Parameters:</strong></p>\n<p><code>curl -u {username}/token:{api_token} \"https://{subdomain}.viewcases.com/api/v1/clients?name=ACME+Insurance\"</code></p>\n<h2 id=\"caching-collection-data\">Caching Collection Data</h2>\n<p>The Trackops REST API is <em>not</em> designed to provide a live interface for your staff, customers, or otherwise from outside the standard Trackops user interface. If you determine that you require data in large quantities, or in a more readily available fashion than the API provides, it is best practice to periodically cache/store your query results to a local store for future use.</p>\n<p>For example, if you routinely require access to thousands of records at a time in order to compile a report, it is best practice to periodically query (e.g. on a daily basis) and store the latest results in a local cache, database, or flat file storage so the information is readily available for your use case.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"25604869","collectionId":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","publishedId":"2sBXc7K4UY","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"4580e6"},"publishDate":"2026-02-03T19:00:21.000Z"},"item":[{"name":"Case Flags","item":[{"name":"Get a case flag","id":"3581e70a-8e9d-4221-bddf-4e4d86cf1de5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_flags/:case_flag_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_flags",":case_flag_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case flag</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_flag_id"}]}},"response":[{"id":"bd5545e7-7222-4a75-a61a-dadc63af5d13","name":"Get a case flag","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://example.viewcases.com/api/v1/case_flags/:case_flag_id","protocol":"https","host":["example","viewcases","com"],"path":["api","v1","case_flags",":case_flag_id"],"variable":[{"key":"case_flag_id","value":"<integer>","description":"ID of the case flag"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Rush\",\n    \"color\": \"#fbb1b1\",\n    \"reference_id\": \"rush\",\n    \"notes\": \"Priority handling is required\",\n    \"description\": \"Priority handling is required\"\n}"}],"_postman_id":"3581e70a-8e9d-4221-bddf-4e4d86cf1de5"},{"name":"List case flags","id":"98293954-a9c4-4d9a-bb81-3187f90af22d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_flags","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_flags"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"ff180998-86f0-49ef-ac5f-423a6a94092a","name":"List case flags","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://example.viewcases.com/api/v1/case_flags"},"status":"OK","code":200,"_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\": \"2\",\n        \"name\": \"Suspected Fraud\",\n        \"color\": \"#fbc75b\",\n        \"reference_id\": \"fraud\",\n        \"notes\": \"Evidence of fraud determined\",\n        \"description\": \"Evidence of fraud determined\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Rush\",\n        \"color\": \"#fbb1b1\",\n        \"reference_id\": \"rush\",\n        \"notes\": \"Priority handling is required\",\n        \"description\": \"Priority handling is required\"\n    }\n]"}],"_postman_id":"98293954-a9c4-4d9a-bb81-3187f90af22d"},{"name":"Search case flags","id":"b1c4dbdd-dd5f-4813-8307-8051a8e002fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_flags?id=<integer>&name=<string>&reference_id=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_flags"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case flag</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the case flag</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Reference or lookup code associated with the case flag </p>\n","type":"text/plain"},"key":"reference_id","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"c4a037b1-57f7-4900-a1f8-0caff13ff19e","name":"Search case flags","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_flags?id=<integer>&name=<string>&reference_id=<string>&page=<integer>","host":["/api/v1"],"path":["case_flags"],"query":[{"key":"id","value":"<integer>","description":"ID of the case flag"},{"key":"name","value":"<string>","description":"Name of the case flag"},{"key":"reference_id","value":"<string>","description":"Reference or lookup code associated with the case flag "},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"name\": \"Suspected Fraud\",\n        \"color\": \"#fbc75b\",\n        \"reference_id\": \"fraud\",\n        \"notes\": \"Evidence of fraud determined\",\n        \"description\": \"Evidence of fraud determined\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Rush\",\n        \"color\": \"#fbb1b1\",\n        \"reference_id\": \"rush\",\n        \"notes\": \"Priority handling is required\",\n        \"description\": \"Priority handling is required\"\n    }\n]"}],"_postman_id":"b1c4dbdd-dd5f-4813-8307-8051a8e002fa"}],"id":"0dda7cee-cec2-4695-8ad6-00337cbf1aed","description":"<p>Case flags are special colorized tags that indicate special handling on cases.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/search/click?data=BAh7DjoHaWRpBH8BqAw6D2FjY291bnRfaWRpA7skAToJdHlwZUkiDGFydGljbGUGOgZFVDoIdXJsSSJVaHR0cHM6Ly9zdXBwb3J0LnRyYWNrb3BzLmNvbS9oYy9lbi11cy9hcnRpY2xlcy8yMTIzMzcwMjMtSG93LXRvLXNldHVwLUNhc2UtRmxhZ3MGOwhUOg5zZWFyY2hfaWRJIikyNzU4ZDVjZi1jZDFmLTRjMTctYTRmZS0yOGI3YjBkMWIyMjkGOwhGOglyYW5raQY6C2xvY2FsZUkiCmVuLXVzBjsIVDoKcXVlcnlJIg9jYXNlIGZsYWdzBjsIVDoScmVzdWx0c19jb3VudGkBqw%3D%3D--017eacc6797aaec80a0f4b938d17e12a0bf041f0\">How to set up case flags</a></p>\n","_postman_id":"0dda7cee-cec2-4695-8ad6-00337cbf1aed","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Regions","item":[{"name":"Get a case region","id":"cc13a24d-a18e-4570-9573-734af73394e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_regions/:case_region_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_regions",":case_region_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case region</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_region_id"}]}},"response":[{"id":"3d9261fc-c388-400e-9a03-d3c67f05040d","name":"Get a case region","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://example.viewcases.com/api/v1/case_regions/:case_region_id","protocol":"https","host":["example","viewcases","com"],"path":["api","v1","case_regions",":case_region_id"],"variable":[{"key":"case_region_id","value":"<integer>","description":"ID of the case region"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Local\",\n    \"reference_id\": \"local\",\n    \"is_default\": false,\n    \"notes\": \"Inside our licensed coverage area\",\n    \"description\": \"Inside our licensed coverage area\"\n}"}],"_postman_id":"cc13a24d-a18e-4570-9573-734af73394e3"},{"name":"List case regions","id":"3d48b1df-68c0-4db0-bfc1-b954bdfb24d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_regions","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_regions"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"278075e7-321e-49a4-ad06-cf2797d50c37","name":"List case regions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://example.viewcases.com/api/v1/case_regions"},"status":"OK","code":200,"_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\": \"3\",\n        \"name\": \"Unassigned\",\n        \"reference_id\": \"\",\n        \"is_default\": true,\n        \"notes\": \"Case region to be determined\",\n        \"description\": \"Case region to be determined\"\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Out of Area\",\n        \"reference_id\": \"out-of-area\",\n        \"is_default\": false,\n        \"notes\": \"Outside our licensed coverage area\",\n        \"description\": \"Outside our licensed coverage area\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Local\",\n        \"reference_id\": \"local\",\n        \"is_default\": false,\n        \"notes\": \"Inside our licensed coverage area\",\n        \"description\": \"Inside our licensed coverage area\"\n    }\n]"}],"_postman_id":"3d48b1df-68c0-4db0-bfc1-b954bdfb24d6"},{"name":"Search case regions","id":"a384f605-c8c2-44b7-9f64-0b0f31e6d53c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_regions?id=<integer>&name=<string>&reference_id=<string>&is_default=<bool>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_regions"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case region</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the case region</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Reference or lookup code associated with the case region</p>\n","type":"text/plain"},"key":"reference_id","value":"<string>"},{"description":{"content":"<p>If the case region is set as default</p>\n","type":"text/plain"},"key":"is_default","value":"<bool>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"682b6253-06ca-4233-ad1b-f1ed450f4c96","name":"Search case regions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_regions?id=<integer>&name=<string>&reference_id=<string>&is_default=<bool>&page=<integer>","host":["/api/v1"],"path":["case_regions"],"query":[{"key":"id","value":"<integer>","description":"ID of the case region"},{"key":"name","value":"<string>","description":"Name of the case region"},{"key":"reference_id","value":"<string>","description":"Reference or lookup code associated with the case region"},{"key":"is_default","value":"<bool>","description":"If the case region is set as default"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"3\",\n        \"name\": \"Unassigned\",\n        \"reference_id\": \"\",\n        \"is_default\": true,\n        \"notes\": \"Case region to be determined\",\n        \"description\": \"Case region to be determined\"\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Out of Area\",\n        \"reference_id\": \"out-of-area\",\n        \"is_default\": false,\n        \"notes\": \"Outside our licensed coverage area\",\n        \"description\": \"Outside our licensed coverage area\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Local\",\n        \"reference_id\": \"local\",\n        \"is_default\": false,\n        \"notes\": \"Inside our licensed coverage area\",\n        \"description\": \"Inside our licensed coverage area\"\n    }\n]"}],"_postman_id":"a384f605-c8c2-44b7-9f64-0b0f31e6d53c"}],"id":"5a1d04cb-6922-49ba-b53d-7fb83d49c33a","description":"<p>Case regions categorize cases by geographical areas or sales territories.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337003-Customizing-your-Case-Regions\">Customizing your case regions</a></p>\n","_postman_id":"5a1d04cb-6922-49ba-b53d-7fb83d49c33a","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Requests","item":[{"name":"Get a case request","id":"9a097e42-d4bf-4a97-9d68-246629c45db5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/requests/:case_reguest_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","requests",":case_reguest_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case request</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_reguest_id"}]}},"response":[{"id":"46c3bf4e-fe50-44e4-9882-fe133fdcfec1","name":"Get a case request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://example.viewcases.com/api/v1/case/requests/:case_reguest_id","protocol":"https","host":["example","viewcases","com"],"path":["api","v1","case","requests",":case_reguest_id"],"variable":[{"key":"case_reguest_id","value":"<integer>","description":"ID of the case request"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"series_number\": \"1\",\n    \"case_type_tag\": \"WC\",\n    \"series_instance\": \"1\",\n    \"created_on\": \"2026-02-02\",\n    \"due_on\": \"2026-02-28\",\n    \"request_status\": \"1\",\n    \"request_data\": {\n        \"client\": [],\n        \"contact\": []\n    },\n    \"reference_value_1\": \"ABC-123456\",\n    \"reference_value_2\": \"SIU-123456\",\n    \"reference_value_3\": null,\n    \"case_country\": \"US\",\n    \"case_state\": \"CO\",\n    \"case_location\": \"Denver\",\n    \"budget_money\": \"1000.00\",\n    \"budget_hours\": \"24.00\",\n    \"admin_notes\": \"Administrative notes, not visible to the client, will be entered here.\",\n    \"notes\": \"Notes and instructions related to this case request will be entered here.\",\n    \"scheduling_notes\": \"Any specific notes related to scheduling (specific days, dates, or times) will be entered here.\",\n    \"is_request\": true,\n    \"last_status_change_at\": \"2026-02-02 20:28:46\",\n    \"referral_source_id\": null,\n    \"company_location_id\": \"2\",\n    \"created_at\": \"2026-02-02 20:28:46\",\n    \"updated_at\": \"2026-02-02 20:42:32\",\n    \"last_update_at\": \"2026-02-02 20:28:46\",\n    \"rating_average\": null,\n    \"request_number\": \"REQ-00001\",\n    \"case_or_request_number\": \"REQ-00001\",\n    \"route_prefix\": \"case_request\",\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"CaseType\": {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\"\n    },\n    \"CaseRegion\": {\n        \"id\": \"1\",\n        \"name\": \"Local\"\n    },\n    \"PrimarySubject\": {\n        \"id\": \"1\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"PrimaryContact\": {\n        \"id\": \"2\",\n        \"first_name\": \"Sample\",\n        \"last_name\": \"Contact\",\n        \"email\": null,\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_office\": \"\",\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\"\n    },\n    \"CaseFlags\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Rush\",\n            \"reference_id\": \"rush\"\n        }\n    ],\n    \"CaseServices\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\",\n            \"reference_id\": null\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Background Check\",\n            \"reference_id\": null\n        }\n    ],\n    \"CaseFieldGroup\": [],\n    \"request_status_label\": \"Pending\"\n}"}],"_postman_id":"9a097e42-d4bf-4a97-9d68-246629c45db5"},{"name":"List case requests","id":"2e753f40-b5da-4fd3-a17e-c920708081e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/requests","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","requests"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"830c0965-6963-4339-b48c-6b934638fb31","name":"List case requests","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://example.viewcases.com/api/v1/case/requests"},"status":"OK","code":200,"_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\": \"1\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-28\",\n        \"request_status\": \"1\",\n        \"request_data\": {\n            \"client\": [],\n            \"contact\": []\n        },\n        \"reference_value_1\": \"ABC-123456\",\n        \"reference_value_2\": \"SIU-123456\",\n        \"reference_value_3\": null,\n        \"case_country\": \"US\",\n        \"case_state\": \"CO\",\n        \"case_location\": \"Denver\",\n        \"budget_money\": \"1000.00\",\n        \"budget_hours\": \"24.00\",\n        \"admin_notes\": \"Administrative notes, not visible to the client, will be entered here.\",\n        \"notes\": \"Notes and instructions related to this case request will be entered here.\",\n        \"scheduling_notes\": \"Any specific notes related to scheduling (specific days, dates, or times) will be entered here.\",\n        \"is_request\": true,\n        \"last_status_change_at\": \"2026-02-02 20:28:46\",\n        \"referral_source_id\": null,\n        \"company_location_id\": \"2\",\n        \"created_at\": \"2026-02-02 20:28:46\",\n        \"updated_at\": \"2026-02-02 20:42:32\",\n        \"last_update_at\": \"2026-02-02 20:28:46\",\n        \"rating_average\": null,\n        \"request_number\": \"REQ-00001\",\n        \"case_or_request_number\": \"REQ-00001\",\n        \"route_prefix\": \"case_request\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"CaseType\": {\n            \"id\": \"1\",\n            \"name\": \"Workers' Compensation\"\n        },\n        \"CaseRegion\": {\n            \"id\": \"1\",\n            \"name\": \"Local\"\n        },\n        \"PrimarySubject\": {\n            \"id\": \"1\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"PrimaryContact\": {\n            \"id\": \"2\",\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"CaseFlags\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Rush\",\n                \"reference_id\": \"rush\"\n            }\n        ],\n        \"CaseServices\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Surveillance\",\n                \"reference_id\": null\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Background Check\",\n                \"reference_id\": null\n            }\n        ],\n        \"CaseFieldGroup\": [],\n        \"request_status_label\": \"Pending\"\n    }\n]"}],"_postman_id":"2e753f40-b5da-4fd3-a17e-c920708081e9"},{"name":"Search case requests","id":"689aa8f0-5269-4b52-89f0-0e6804d4d0b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/requests?id=<integer>&case_request_number=<string>&client=<integer>&location=<integer>&case_region=<integer>&case_status=<integer>&primary_contact=<integer>&primary_subject=<integer>&reference_value_1=<string>&reference_value_2=<string>&reference_value_3=<string>&workflow=<integer>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","requests"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case request</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>The case request number</p>\n","type":"text/plain"},"key":"case_request_number","value":"<string>"},{"description":{"content":"<p>ID of the client</p>\n","type":"text/plain"},"key":"client","value":"<integer>"},{"description":{"content":"<p>ID of the client location</p>\n","type":"text/plain"},"key":"location","value":"<integer>"},{"description":{"content":"<p>ID of the case region</p>\n","type":"text/plain"},"key":"case_region","value":"<integer>"},{"description":{"content":"<p>ID of the case status</p>\n","type":"text/plain"},"key":"case_status","value":"<integer>"},{"description":{"content":"<p>ID of the primary client contact</p>\n","type":"text/plain"},"key":"primary_contact","value":"<integer>"},{"description":{"content":"<p>ID of the primary subject</p>\n","type":"text/plain"},"key":"primary_subject","value":"<integer>"},{"description":{"content":"<p>Value of reference number 1</p>\n","type":"text/plain"},"key":"reference_value_1","value":"<string>"},{"description":{"content":"<p>Value of reference number 2</p>\n","type":"text/plain"},"key":"reference_value_2","value":"<string>"},{"description":{"content":"<p>Value of reference number 3</p>\n","type":"text/plain"},"key":"reference_value_3","value":"<string>"},{"description":{"content":"<p>ID of the workflow</p>\n","type":"text/plain"},"key":"workflow","value":"<integer>"},{"description":{"content":"<p>ISO datestamp created from</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO datestamp created to</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO datestamp updated from</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO datestamp updated to</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"4f1b390c-75b3-4f80-a71f-bf268148ffd0","name":"Search case requests","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case/requests?id=<integer>&case_request_number=<string>&client=<integer>&location=<integer>&case_region=<integer>&case_status=<integer>&primary_contact=<integer>&primary_subject=<integer>&reference_value_1=<string>&reference_value_2=<string>&reference_value_3=<string>&workflow=<integer>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["case","requests"],"query":[{"key":"id","value":"<integer>","description":"ID of the case request"},{"key":"case_request_number","value":"<string>","description":"The case request number"},{"key":"client","value":"<integer>","description":"ID of the client"},{"key":"location","value":"<integer>","description":"ID of the client location"},{"key":"case_region","value":"<integer>","description":"ID of the case region"},{"key":"case_status","value":"<integer>","description":"ID of the case status"},{"key":"primary_contact","value":"<integer>","description":"ID of the primary client contact"},{"key":"primary_subject","value":"<integer>","description":"ID of the primary subject"},{"key":"reference_value_1","value":"<string>","description":"Value of reference number 1"},{"key":"reference_value_2","value":"<string>","description":"Value of reference number 2"},{"key":"reference_value_3","value":"<string>","description":"Value of reference number 3"},{"key":"workflow","value":"<integer>","description":"ID of the workflow"},{"key":"created_from","value":"<datestamp>","description":"ISO datestamp created from"},{"key":"created_to","value":"<datestamp>","description":"ISO datestamp created to"},{"key":"from","value":"<datestamp>","description":"Alias of created_from"},{"key":"to","value":"<datestamp>","description":"Alias of created_to"},{"key":"updated_from","value":"<datestamp>","description":"ISO datestamp updated from"},{"key":"updated_to","value":"<datestamp>","description":"ISO datestamp updated to"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-28\",\n        \"request_status\": \"1\",\n        \"request_data\": {\n            \"client\": [],\n            \"contact\": []\n        },\n        \"reference_value_1\": \"ABC-123456\",\n        \"reference_value_2\": \"SIU-123456\",\n        \"reference_value_3\": null,\n        \"case_country\": \"US\",\n        \"case_state\": \"CO\",\n        \"case_location\": \"Denver\",\n        \"budget_money\": \"1000.00\",\n        \"budget_hours\": \"24.00\",\n        \"admin_notes\": \"Administrative notes, not visible to the client, will be entered here.\",\n        \"notes\": \"Notes and instructions related to this case request will be entered here.\",\n        \"scheduling_notes\": \"Any specific notes related to scheduling (specific days, dates, or times) will be entered here.\",\n        \"is_request\": true,\n        \"last_status_change_at\": \"2026-02-02 20:28:46\",\n        \"referral_source_id\": null,\n        \"company_location_id\": \"2\",\n        \"created_at\": \"2026-02-02 20:28:46\",\n        \"updated_at\": \"2026-02-02 20:42:32\",\n        \"last_update_at\": \"2026-02-02 20:28:46\",\n        \"rating_average\": null,\n        \"request_number\": \"REQ-00001\",\n        \"case_or_request_number\": \"REQ-00001\",\n        \"route_prefix\": \"case_request\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"CaseType\": {\n            \"id\": \"1\",\n            \"name\": \"Workers' Compensation\"\n        },\n        \"CaseRegion\": {\n            \"id\": \"1\",\n            \"name\": \"Local\"\n        },\n        \"PrimarySubject\": {\n            \"id\": \"1\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"PrimaryContact\": {\n            \"id\": \"2\",\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"CaseFlags\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Rush\",\n                \"reference_id\": \"rush\"\n            }\n        ],\n        \"CaseServices\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Surveillance\",\n                \"reference_id\": null\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Background Check\",\n                \"reference_id\": null\n            }\n        ],\n        \"CaseFieldGroup\": [],\n        \"request_status_label\": \"Pending\"\n    }\n]"}],"_postman_id":"689aa8f0-5269-4b52-89f0-0e6804d4d0b5"},{"name":"Create a case request","id":"9355565b-efbd-4029-8d70-156b4a5ea25e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"casefile_request\": {\n    \"case_type_id\": \"<integer>\",\n    \"case_region_id\": \"<integer>\",\n    \"created_on\": \"<datestamp>\",\n    \"company_location_id\": \"<integer>\",\n    \"referral_source_id\": \"<integer>\",    \n    \"client\": {\n        \"name\": \"Kemmer, Feest and Gerhold\",\n        \"address_1\": \"4818 Windler Stravenue\",\n        \"city\": \"Walterfurt\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Mayra\",\n        \"last_name\": \"Walter\",\n        \"email\": \"Turner.Swift@yahoo.com\",\n        \"phone_office\": \"753-214-8503\",\n        \"phone_mobile\": \"338-279-7432\",\n        \"phone_fax\": \"391-370-0360\"\n    },\n    \"reference_value_1\": \"similique dolor aspernatur\",\n    \"reference_value_2\": \"quia eos sint\",\n    \"reference_value_3\": \"facere aut cupiditate\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"Biloxi\",\n    \"budget_money\": \"374\",\n    \"budget_hours\": \"326\",\n    \"notes\": \"Cum dolorum et beatae vel eius consequuntur voluptatum maxime quia. Tenetur eum cum nisi voluptatem. Quibusdam architecto similique omnis magnam nisi nulla nisi incidunt. Consequatur nisi nobis. Ea nulla molestiae in adipisci est voluptatem.\",\n    \"scheduling_notes\": \"Nemo cum deserunt ab est laboriosam.\",\n    \"admin_notes\": \"Qui perferendis tenetur.\",\n    \"case_services_list\": [<integer>,<integer>],\n    \"case_flags_list\": [<integer>,<integer>],\n    \"subjects\": [\n    \t{\n    \t\t\"subject_type_id\": \"<integer>\",\n    \t\t\"is_primary\": true,\n    \t\t\"is_pinned\": true,\n    \t\t\"custom_fields\": [\n    \t\t\t{\n    \t\t\t  \"id\": \"<integer>\",\n    \t\t\t  \"value\": {\n    \t\t\t  \t\"first_name\": \"Ricardo\",\n    \t\t\t  \t\"middle_name\": \"\",\n    \t\t\t  \t\"last_name\": \"King\"\n    \t\t\t  }\n    \t\t\t}\n            ]\n        }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/requests","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","requests"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"e6384bfd-3959-46aa-8ed1-536cbd8da717","name":"Create a case request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"casefile_request\": {\n    \"case_type_id\": \"<integer>\",\n    \"case_region_id\": \"<integer>\",\n    \"created_on\": \"<datestamp>\",\n    \"company_location_id\": \"<integer>\",\n    \"referral_source_id\": \"<integer>\",    \n    \"client\": {\n        \"name\": \"Goldner and Sons\",\n        \"address_1\": \"792 Daphne Overpass\",\n        \"city\": \"Christianaburgh\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Gretchen\",\n        \"last_name\": \"Keebler\",\n        \"email\": \"Magnus_Harvey@yahoo.com\",\n        \"phone_office\": \"263-781-4936\",\n        \"phone_mobile\": \"292-618-9309\",\n        \"phone_fax\": \"466-688-2388\"\n    },\n    \"reference_value_1\": \"in non consequatur\",\n    \"reference_value_2\": \"et illo eveniet\",\n    \"reference_value_3\": \"est voluptatum dolor\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"South Mandy\",\n    \"budget_money\": \"299\",\n    \"budget_hours\": \"56\",\n    \"notes\": \"Culpa omnis voluptate fugit sed ut aut. Fugiat et nihil non. Accusamus ab harum.\",\n    \"scheduling_notes\": \"Pariatur eos accusamus quidem officiis non dolores ea ipsam.\",\n    \"admin_notes\": \"Saepe sunt in quibusdam repudiandae nam voluptatem dicta corporis.\",\n    \"case_services_list\": [<integer>,<integer>],\n    \"case_flags_list\": [<integer>,<integer>],\n    \"subjects\": [\n    \t{\n    \t\t\"subject_type_id\": \"<integer>\",\n    \t\t\"is_primary\": true,\n    \t\t\"is_pinned\": true,\n    \t\t\"custom_fields\": [\n    \t\t\t{\n    \t\t\t  \"id\": \"<integer>\",\n    \t\t\t  \"value\": {\n    \t\t\t  \t\"first_name\": \"Owen\",\n    \t\t\t  \t\"middle_name\": \"\",\n    \t\t\t  \t\"last_name\": \"Koelpin\"\n    \t\t\t  }\n    \t\t\t}\n            ]\n        }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/requests"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"series_number\": \"2\",\n    \"case_type_tag\": \"WC\",\n    \"series_instance\": \"1\",\n    \"created_on\": \"2026-02-02\",\n    \"due_on\": \"2026-02-09\",\n    \"request_status\": \"1\",\n    \"request_data\": {\n        \"client\": {\n            \"name\": \"Torp, Satterfield and Cassin\",\n            \"address_1\": \"044 Collier Loaf\",\n            \"city\": \"South Ginotown\",\n            \"state\": \"CO\",\n            \"zip\": \"80202\",\n            \"country\": \"US\",\n            \"address_2\": \"\",\n            \"address_3\": \"\"\n        },\n        \"contact\": {\n            \"first_name\": \"Koby\",\n            \"last_name\": \"Renner\",\n            \"email\": \"Kaylah99@yahoo.com\",\n            \"phone_office\": \"942-399-2809\",\n            \"phone_mobile\": \"464-390-4721\",\n            \"phone_fax\": \"697-811-0208\",\n            \"middle_name\": \"\",\n            \"phone_home\": \"\",\n            \"phone_mobile_carrier\": \"\"\n        }\n    },\n    \"reference_value_1\": \"sint ex illo\",\n    \"reference_value_2\": \"aut incidunt non\",\n    \"reference_value_3\": \"iusto quia ad\",\n    \"case_country\": \"US\",\n    \"case_state\": \"CO\",\n    \"case_location\": \"Beerville\",\n    \"budget_money\": \"934.00\",\n    \"budget_hours\": \"515.00\",\n    \"admin_notes\": \"Sit hic autem.\",\n    \"notes\": \"Et velit ipsa quae reiciendis ea et. Quae error quibusdam assumenda assumenda. Officia facilis quae assumenda suscipit sed id est. Possimus sed autem ut temporibus. Tempore maiores doloremque fugit nesciunt.\",\n    \"scheduling_notes\": \"Officia et iste velit incidunt ut est sunt temporibus sed.\",\n    \"is_request\": true,\n    \"last_status_change_at\": \"2026-02-02 20:48:42\",\n    \"referral_source_id\": \"1\",\n    \"company_location_id\": \"2\",\n    \"created_at\": \"2026-02-02 20:48:42\",\n    \"updated_at\": \"2026-02-02 20:48:42\",\n    \"last_update_at\": \"2026-02-02 20:48:42\",\n    \"rating_average\": null,\n    \"request_number\": \"REQ-00002\",\n    \"case_or_request_number\": \"REQ-00002\",\n    \"route_prefix\": \"case_request\",\n    \"Client\": null,\n    \"CaseType\": {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\"\n    },\n    \"CaseRegion\": {\n        \"id\": \"1\",\n        \"name\": \"Local\"\n    },\n    \"PrimarySubject\": {\n        \"id\": \"2\",\n        \"name\": \"Dicki, Jarret\"\n    },\n    \"PrimaryContact\": null,\n    \"CaseFlags\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Rush\",\n            \"reference_id\": \"rush\"\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Suspected Fraud\",\n            \"reference_id\": \"fraud\"\n        }\n    ],\n    \"CaseServices\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\",\n            \"reference_id\": null\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Background Check\",\n            \"reference_id\": null\n        }\n    ],\n    \"CaseFieldGroup\": [],\n    \"request_status_label\": \"Pending\"\n}"}],"_postman_id":"9355565b-efbd-4029-8d70-156b4a5ea25e"},{"name":"Update a case request","id":"03f8bae3-a603-460a-beab-ec2c84f5b945","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"protocolVersion":"auto"},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"casefile_request\": {\n    \"case_region_id\": \"<integer>\",\n    \"created_on\": \"<datestamp>\",\n    \"company_location_id\": \"<integer>\",\n    \"referral_source_id\": \"<integer>\",\n    \"client\": {\n        \"name\": \"Cummings Group\",\n        \"address_1\": \"822 Federico Landing\",\n        \"city\": \"Padbergmouth\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Melba\",\n        \"last_name\": \"Langworth\",\n        \"email\": \"Nelson75@yahoo.com\",\n        \"phone_office\": \"356-554-7938\",\n        \"phone_mobile\": \"969-252-9716\",\n        \"phone_fax\": \"641-858-4043\"\n    },\n    \"reference_value_1\": \"nostrum aliquam nihil\",\n    \"reference_value_2\": \"id dolor modi\",\n    \"reference_value_3\": \"voluptatem tempore incidunt\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"Weissnatmouth\",\n    \"notes\": \"Reprehenderit necessitatibus minima voluptatibus. Accusamus voluptate et. Dolores veniam cum.\",\n    \"scheduling_notes\": \"Quam aut et similique corrupti consectetur.\",\n    \"admin_notes\": \"Occaecati maxime iure quas ipsam.\",\n    \"case_services_list\": [<integer>,<integer>],\n    \"case_flags_list\": [<integer>,<integer>]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/requests/:case_request_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","requests",":case_request_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case request</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_request_id"}]}},"response":[{"id":"2833af0e-595e-4ac0-844e-ebc209227b95","name":"Update a case request","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"casefile_request\": {\n    \"case_region_id\": \"<integer>\",\n    \"created_on\": \"<datestamp>\",\n    \"company_location_id\": \"<integer>\",\n    \"referral_source_id\": \"<integer>\",\n    \"client\": {\n        \"name\": \"Green - Stroman\",\n        \"address_1\": \"02746 Savannah Brook\",\n        \"city\": \"New Graham\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Eden\",\n        \"last_name\": \"Will\",\n        \"email\": \"Annamae26@hotmail.com\",\n        \"phone_office\": \"448-226-2221\",\n        \"phone_mobile\": \"586-927-1289\",\n        \"phone_fax\": \"894-853-0373\"\n    },\n    \"reference_value_1\": \"rerum quidem fugit\",\n    \"reference_value_2\": \"quia id dolor\",\n    \"reference_value_3\": \"aut ipsum aut\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"Levittown\",\n    \"notes\": \"Quos eum eveniet et occaecati veniam aliquam omnis perspiciatis. Soluta voluptatibus est. Sit repellendus et temporibus est iure qui occaecati occaecati.\",\n    \"scheduling_notes\": \"Libero qui sit exercitationem aut est quibusdam adipisci.\",\n    \"admin_notes\": \"Dolore amet repudiandae a nihil.\",\n    \"case_services_list\": [<integer>,<integer>],\n    \"case_flags_list\": [<integer>,<integer>]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/case/requests/:case_request_id","host":["/api/v1"],"path":["case","requests",":case_request_id"],"variable":[{"key":"case_request_id","value":"<integer>","description":"ID of the case request"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"series_number\": \"1\",\n    \"case_type_tag\": \"WC\",\n    \"series_instance\": \"1\",\n    \"created_on\": \"2026-02-02\",\n    \"due_on\": \"2026-02-09\",\n    \"request_status\": \"1\",\n    \"request_data\": {\n        \"client\": {\n            \"name\": \"Schultz LLC\",\n            \"address_1\": \"2256 Kay Canyon\",\n            \"city\": \"Spokane\",\n            \"state\": \"CO\",\n            \"zip\": \"80202\",\n            \"country\": \"US\",\n            \"address_2\": \"\",\n            \"address_3\": \"\"\n        },\n        \"contact\": {\n            \"first_name\": \"Scotty\",\n            \"last_name\": \"Deckow\",\n            \"email\": \"Libbie_Deckow14@hotmail.com\",\n            \"phone_office\": \"708-825-0361\",\n            \"phone_mobile\": \"444-634-2741\",\n            \"phone_fax\": \"862-745-5536\",\n            \"middle_name\": \"\",\n            \"phone_home\": \"\",\n            \"phone_mobile_carrier\": \"\"\n        }\n    },\n    \"reference_value_1\": \"placeat voluptates quis\",\n    \"reference_value_2\": \"ut non sit\",\n    \"reference_value_3\": \"nulla quis vero\",\n    \"case_country\": \"US\",\n    \"case_state\": \"CO\",\n    \"case_location\": \"Elveraburgh\",\n    \"budget_money\": \"1000.00\",\n    \"budget_hours\": \"24.00\",\n    \"admin_notes\": \"Neque dolorem culpa laudantium aut ea sit qui.\",\n    \"notes\": \"Delectus culpa qui. Et blanditiis alias non. Temporibus dolores blanditiis dolores delectus fugiat occaecati dolores consectetur totam. Laboriosam dolorem sint eum exercitationem molestias. Qui sint similique autem rerum et ad dolore.\",\n    \"scheduling_notes\": \"Est soluta natus saepe non.\",\n    \"is_request\": true,\n    \"last_status_change_at\": \"2026-02-02 20:28:46\",\n    \"referral_source_id\": \"1\",\n    \"company_location_id\": \"2\",\n    \"created_at\": \"2026-02-02 20:28:46\",\n    \"updated_at\": \"2026-02-02 20:48:57\",\n    \"last_update_at\": \"2026-02-02 20:28:46\",\n    \"rating_average\": null,\n    \"request_number\": \"REQ-00001\",\n    \"case_or_request_number\": \"REQ-00001\",\n    \"route_prefix\": \"case_request\",\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"CaseType\": {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\"\n    },\n    \"CaseRegion\": {\n        \"id\": \"1\",\n        \"name\": \"Local\"\n    },\n    \"PrimarySubject\": {\n        \"id\": \"1\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"PrimaryContact\": {\n        \"id\": \"2\",\n        \"first_name\": \"Sample\",\n        \"last_name\": \"Contact\",\n        \"email\": null,\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_office\": \"\",\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\"\n    },\n    \"CaseFlags\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Rush\",\n            \"reference_id\": \"rush\"\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Suspected Fraud\",\n            \"reference_id\": \"fraud\"\n        }\n    ],\n    \"CaseServices\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\",\n            \"reference_id\": null\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Background Check\",\n            \"reference_id\": null\n        }\n    ],\n    \"CaseFieldGroup\": [],\n    \"request_status_label\": \"Pending\"\n}"}],"_postman_id":"03f8bae3-a603-460a-beab-ec2c84f5b945"}],"id":"a23638d0-a2e6-4d5e-8824-b07e2b5c01ab","description":"<p>Case requests provide an interface new case referrals that may be approved and converted to a case. Case requests may also be declined for various reasons. If you always intend to approve case requests, consider creating cases directly.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338163-What-are-Case-Requests\">What are case requests?</a></p>\n","_postman_id":"a23638d0-a2e6-4d5e-8824-b07e2b5c01ab","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Reviews","item":[{"name":"Get a case review","id":"862668b5-e160-459a-b6e9-63fe68d7f484","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/reviews/:case_review_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","reviews",":case_review_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case review</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_review_id"}]}},"response":[{"id":"259ccaeb-6749-490b-8750-57c362f123af","name":"Get a case review","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case/reviews/:case_review_id","host":["/api/v1"],"path":["case","reviews",":case_review_id"],"variable":[{"key":"case_review_id","value":"<integer>","description":"ID of the case review"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"entry_date\": \"2026-02-07\",\n    \"rating_average\": null,\n    \"completed_at\": null,\n    \"created_at\": \"2026-02-02 21:02:29\",\n    \"updated_at\": \"2026-02-02 21:02:29\",\n    \"notes\": \"N/A\",\n    \"entry_status\": \"submitted\",\n    \"Review\": {\n        \"id\": \"1\",\n        \"name\": \"Daily Surveillance Review\",\n        \"review_type\": \"1\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"User\": {\n        \"id\": \"3\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"CompletedBy\": null,\n    \"ReviewEntryFieldGroup\": {\n        \"56\": {\n            \"review_entry_id\": \"1\",\n            \"field_id\": \"56\",\n            \"value\": \"15\",\n            \"value_date\": \"2026-02-07\",\n            \"rating_weight\": \"1.00\",\n            \"Field\": {\n                \"id\": \"56\",\n                \"name\": \"Minutes of Video\",\n                \"field_type_id\": \"11\"\n            }\n        },\n        \"57\": {\n            \"review_entry_id\": \"1\",\n            \"field_id\": \"57\",\n            \"value\": \"Sunny\",\n            \"value_date\": \"2026-02-07\",\n            \"rating_weight\": \"1.00\",\n            \"Field\": {\n                \"id\": \"57\",\n                \"name\": \"Weather\",\n                \"field_type_id\": \"2\"\n            }\n        },\n        \"58\": {\n            \"review_entry_id\": \"1\",\n            \"field_id\": \"58\",\n            \"value\": \"1\",\n            \"value_date\": \"2026-02-07\",\n            \"rating_weight\": \"1.00\",\n            \"Field\": {\n                \"id\": \"58\",\n                \"name\": \"Opportunity for Video\",\n                \"field_type_id\": \"13\"\n            }\n        },\n        \"59\": {\n            \"review_entry_id\": \"1\",\n            \"field_id\": \"59\",\n            \"value\": \"Recommend another day of surveillance next weekend.\",\n            \"value_date\": \"2026-02-07\",\n            \"rating_weight\": \"1.00\",\n            \"Field\": {\n                \"id\": \"59\",\n                \"name\": \"Recommendations\",\n                \"field_type_id\": \"6\"\n            }\n        },\n        \"60\": {\n            \"review_entry_id\": \"1\",\n            \"field_id\": \"60\",\n            \"value\": \"0\",\n            \"value_date\": \"2026-02-07\",\n            \"rating_weight\": \"1.00\",\n            \"Field\": {\n                \"id\": \"60\",\n                \"name\": \"Evidence of Fraud\",\n                \"field_type_id\": \"12\"\n            }\n        }\n    }\n}"}],"_postman_id":"862668b5-e160-459a-b6e9-63fe68d7f484"},{"name":"List case reviews","id":"e10c3116-3440-487c-bed9-3a988327fd31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/reviews","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","reviews"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"22e8a723-197f-4c89-be21-f29393cc2677","name":"List case reviews","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/reviews"},"status":"OK","code":200,"_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\": \"1\",\n        \"entry_date\": \"2026-02-07\",\n        \"rating_average\": null,\n        \"completed_at\": null,\n        \"created_at\": \"2026-02-02 21:02:29\",\n        \"updated_at\": \"2026-02-02 21:02:29\",\n        \"notes\": \"N/A\",\n        \"entry_status\": \"submitted\",\n        \"Review\": {\n            \"id\": \"1\",\n            \"name\": \"Daily Surveillance Review\",\n            \"review_type\": \"1\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"3\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"CompletedBy\": null,\n        \"ReviewEntryFieldGroup\": {\n            \"56\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"56\",\n                \"value\": \"15\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"56\",\n                    \"name\": \"Minutes of Video\",\n                    \"field_type_id\": \"11\"\n                }\n            },\n            \"57\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"57\",\n                \"value\": \"Sunny\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"57\",\n                    \"name\": \"Weather\",\n                    \"field_type_id\": \"2\"\n                }\n            },\n            \"58\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"58\",\n                \"value\": \"1\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"58\",\n                    \"name\": \"Opportunity for Video\",\n                    \"field_type_id\": \"13\"\n                }\n            },\n            \"59\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"59\",\n                \"value\": \"Recommend another day of surveillance next weekend.\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"59\",\n                    \"name\": \"Recommendations\",\n                    \"field_type_id\": \"6\"\n                }\n            },\n            \"60\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"60\",\n                \"value\": \"0\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"60\",\n                    \"name\": \"Evidence of Fraud\",\n                    \"field_type_id\": \"12\"\n                }\n            }\n        }\n    }\n]"}],"_postman_id":"e10c3116-3440-487c-bed9-3a988327fd31"},{"name":"Search case reviews","id":"10b30fd7-b6a7-4ab4-a613-e63feffa8eb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/reviews?id=<integer>&case=<integer>&review=<id>&status=<pending|complete|submitted|attention>&user=<integer>&user_last_name=<string>&user_first_name=<string>&is_auto_generated=<bool>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","reviews"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case review</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the reivew</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the review (question set) associated with the review</p>\n","type":"text/plain"},"key":"review","value":"<id>"},{"description":{"content":"<p>Status (enum) of the review</p>\n","type":"text/plain"},"key":"status","value":"<pending|complete|submitted|attention>"},{"description":{"content":"<p>ID of the user associated with the review</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>Last name of the user associated with the review</p>\n","type":"text/plain"},"key":"user_last_name","value":"<string>"},{"description":{"content":"<p>First name of the user associated with the review</p>\n","type":"text/plain"},"key":"user_first_name","value":"<string>"},{"description":{"content":"<p>If the review is auto generated or manually generated</p>\n","type":"text/plain"},"key":"is_auto_generated","value":"<bool>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"4d4c2d82-1d1c-42eb-abfb-22ebccb7ca88","name":"Search case reviews","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case/reviews?id=<integer>&case=<integer>&review=<id>&status=<pending|complete|submitted|attention>&user=<integer>&user_last_name=<string>&user_first_name=<string>&is_auto_generated=<bool>&page=<integer>","host":["/api/v1"],"path":["case","reviews"],"query":[{"key":"id","value":"<integer>","description":"ID of the case review"},{"key":"case","value":"<integer>","description":"ID of the case associated with the reivew"},{"key":"review","value":"<id>","description":"ID of the review (question set) associated with the review"},{"key":"status","value":"<pending|complete|submitted|attention>","description":"Status (enum) of the review"},{"key":"user","value":"<integer>","description":"ID of the user associated with the review"},{"key":"user_last_name","value":"<string>","description":"Last name of the user associated with the review"},{"key":"user_first_name","value":"<string>","description":"First name of the user associated with the review"},{"key":"is_auto_generated","value":"<bool>","description":"If the review is auto generated or manually generated"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"entry_date\": \"2026-02-07\",\n        \"rating_average\": null,\n        \"completed_at\": null,\n        \"created_at\": \"2026-02-02 21:02:29\",\n        \"updated_at\": \"2026-02-02 21:02:29\",\n        \"notes\": \"N/A\",\n        \"entry_status\": \"submitted\",\n        \"Review\": {\n            \"id\": \"1\",\n            \"name\": \"Daily Surveillance Review\",\n            \"review_type\": \"1\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"3\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"CompletedBy\": null,\n        \"ReviewEntryFieldGroup\": {\n            \"56\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"56\",\n                \"value\": \"15\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"56\",\n                    \"name\": \"Minutes of Video\",\n                    \"field_type_id\": \"11\"\n                }\n            },\n            \"57\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"57\",\n                \"value\": \"Sunny\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"57\",\n                    \"name\": \"Weather\",\n                    \"field_type_id\": \"2\"\n                }\n            },\n            \"58\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"58\",\n                \"value\": \"1\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"58\",\n                    \"name\": \"Opportunity for Video\",\n                    \"field_type_id\": \"13\"\n                }\n            },\n            \"59\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"59\",\n                \"value\": \"Recommend another day of surveillance next weekend.\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"59\",\n                    \"name\": \"Recommendations\",\n                    \"field_type_id\": \"6\"\n                }\n            },\n            \"60\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"60\",\n                \"value\": \"0\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"60\",\n                    \"name\": \"Evidence of Fraud\",\n                    \"field_type_id\": \"12\"\n                }\n            }\n        }\n    }\n]"}],"_postman_id":"10b30fd7-b6a7-4ab4-a613-e63feffa8eb4"}],"id":"db9afcf5-01cb-4180-b481-5c3a5daefb5b","description":"<p>Case reviews track stastitcs and work performance for cases based on a variety of criteria. Case review data can be used to track key performance indicators and other reporting metrics.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338143-Case-Reviews-Gathering-Information-About-your-Cases\">Case Reviews: Gathering Information About your Cases</a></p>\n","_postman_id":"db9afcf5-01cb-4180-b481-5c3a5daefb5b","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Services","item":[{"name":"Get a case service","id":"01227e08-627e-4fac-9f97-93744c55e82e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_services/:case_service_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_services",":case_service_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case service</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_service_id"}]}},"response":[{"id":"f3ca5a2c-b8d5-4061-814b-acd71bdbdb15","name":"Get a case service","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_services/:case_service_id","host":["/api/v1"],"path":["case_services",":case_service_id"],"variable":[{"key":"case_service_id","value":"<integer>","description":"ID of the case service"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Surveillance\",\n    \"reference_id\": null,\n    \"notes\": \"Video Surveillance\",\n    \"description\": \"Video Surveillance\"\n}"}],"_postman_id":"01227e08-627e-4fac-9f97-93744c55e82e"},{"name":"List case services","id":"01ba24ac-769e-4ac0-abee-815f971ec0c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_services","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_services"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"2511ccfc-8672-416f-83fe-a2e23c846010","name":"List case services","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_services"},"status":"OK","code":200,"_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\": \"2\",\n        \"name\": \"Background Check\",\n        \"reference_id\": null,\n        \"notes\": \"Background Checks\",\n        \"description\": \"Background Checks\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Surveillance\",\n        \"reference_id\": null,\n        \"notes\": \"Video Surveillance\",\n        \"description\": \"Video Surveillance\"\n    }\n]"}],"_postman_id":"01ba24ac-769e-4ac0-abee-815f971ec0c2"},{"name":"Search case services","id":"b5e009ac-7293-46b3-8e3d-3bd0b6e614f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_services?id=<integer>&name=<string>&reference_id=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_services"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case service</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the case service</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Reference or lookup code associated with the case service </p>\n","type":"text/plain"},"key":"reference_id","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"ea4a503c-7862-40b4-b06f-a6b99298f859","name":"Search case services","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_services?id=<integer>&name=<string>&reference_id=<string>&page=<integer>","host":["/api/v1"],"path":["case_services"],"query":[{"key":"id","value":"<integer>","description":"ID of the case service"},{"key":"name","value":"<string>","description":"Name of the case service"},{"key":"reference_id","value":"<string>","description":"Reference or lookup code associated with the case service "},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"name\": \"Background Check\",\n        \"reference_id\": null,\n        \"notes\": \"Background Checks\",\n        \"description\": \"Background Checks\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Surveillance\",\n        \"reference_id\": null,\n        \"notes\": \"Video Surveillance\",\n        \"description\": \"Video Surveillance\"\n    }\n]"}],"_postman_id":"b5e009ac-7293-46b3-8e3d-3bd0b6e614f5"}],"id":"5d36444e-09bd-46f0-91fc-5fffa6c4ece4","description":"<p>Case services are the actions you are tasked to perform on a case.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337063-Customizing-your-Case-Services\">Customizing your case services</a></p>\n","_postman_id":"5d36444e-09bd-46f0-91fc-5fffa6c4ece4","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Status Change History","item":[{"name":"Get a case status change history","id":"9f53a542-3a08-4486-824c-1eecc6a747d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/cases/status_history/:case_id/:case_status_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases","status_history",":case_id",":case_status_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_id"},{"description":{"content":"<p>ID of the case status</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_status_id"}]}},"response":[{"id":"2cdbf4d1-0cba-4eba-94ff-124584045509","name":"Get a case status change history","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/cases/status_history/:case_id/:case_status_id","host":["/api/v1"],"path":["cases","status_history",":case_id",":case_status_id"],"variable":[{"key":"case_id","value":"<integer>","description":"ID of the case"},{"key":"case_status_id","value":"<integer>","description":"ID of the case status"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"casefile_id\": \"3\",\n    \"case_status_id\": \"1\",\n    \"user_id\": \"1\",\n    \"changed_at\": \"2026-02-02 20:49:46\",\n    \"exited_at\": \"2026-02-02 20:58:37\",\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-09\",\n        \"last_status_change_at\": \"2026-02-02 20:58:37\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"CaseStatus\": {\n        \"id\": \"1\",\n        \"name\": \"New\",\n        \"color\": \"#8dcbff\"\n    },\n    \"User\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    }\n}"}],"_postman_id":"9f53a542-3a08-4486-824c-1eecc6a747d0"},{"name":"List case status change history (global)","id":"8db71242-a7e7-48f5-9745-3943917f09ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/cases/status_history","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases","status_history"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"ef2a1d02-0f45-4526-9de3-63f08889d7b1","name":"List case status change history (global)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/cases/status_history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"casefile_id\": \"3\",\n        \"case_status_id\": \"3\",\n        \"user_id\": \"1\",\n        \"changed_at\": \"2026-02-02 20:58:37\",\n        \"exited_at\": null,\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"last_status_change_at\": \"2026-02-02 20:58:37\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"3\",\n            \"name\": \"Open / Working\",\n            \"color\": \"#9af862\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"case_status_id\": \"1\",\n        \"user_id\": \"1\",\n        \"changed_at\": \"2026-02-02 20:49:46\",\n        \"exited_at\": \"2026-02-02 20:58:37\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"last_status_change_at\": \"2026-02-02 20:58:37\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"1\",\n            \"name\": \"New\",\n            \"color\": \"#8dcbff\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        }\n    }\n]"}],"_postman_id":"8db71242-a7e7-48f5-9745-3943917f09ae"},{"name":"List case status change history (for a case)","id":"30f74733-3e2a-4215-8017-e6bd2d6ea3c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/cases/status_history/:case_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases","status_history",":case_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_id"}]}},"response":[{"id":"e3462180-e45c-4549-9251-52497beb0353","name":"List case status change history (for a case)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/cases/status_history/:case_id","host":["/api/v1"],"path":["cases","status_history",":case_id"],"variable":[{"key":"case_id","value":"<integer>","description":"ID of the case"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"casefile_id\": \"3\",\n        \"case_status_id\": \"3\",\n        \"user_id\": \"1\",\n        \"changed_at\": \"2026-02-02 20:58:37\",\n        \"exited_at\": null,\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"last_status_change_at\": \"2026-02-02 20:58:37\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"3\",\n            \"name\": \"Open / Working\",\n            \"color\": \"#9af862\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"case_status_id\": \"1\",\n        \"user_id\": \"1\",\n        \"changed_at\": \"2026-02-02 20:49:46\",\n        \"exited_at\": \"2026-02-02 20:58:37\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"last_status_change_at\": \"2026-02-02 20:58:37\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"1\",\n            \"name\": \"New\",\n            \"color\": \"#8dcbff\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        }\n    }\n]"}],"_postman_id":"30f74733-3e2a-4215-8017-e6bd2d6ea3c2"}],"id":"e4abe2d2-b3d2-4928-b2d2-bf695835f978","description":"<p>Case status change history tracks the movements between case statuses. Common use cases involve tracking turnaround time and time-in-status performance metrics.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338263-Changing-the-Status-of-a-Case\">Changing the Status of a Case</a></p>\n","_postman_id":"e4abe2d2-b3d2-4928-b2d2-bf695835f978","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Statuses","item":[{"name":"Get a case status","id":"6a7e43cc-1a69-4e51-9541-d74cd7237888","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_statuses/:case_status_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_statuses",":case_status_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case status</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_status_id"}]}},"response":[{"id":"269ed707-26c5-400f-8c86-3c93fb111171","name":"Get a case status","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_statuses/:case_status_id","host":["/api/v1"],"path":["case_statuses",":case_status_id"],"variable":[{"key":"case_status_id","value":"<integer>","description":"ID of the case status"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"case_status_rank\": \"1\",\n    \"case_status_category\": \"1\",\n    \"is_readonly\": false,\n    \"name\": \"New\",\n    \"notes\": \"Submitted case information needs to be reviewed for accuracy before assignment.\",\n    \"description\": \"Submitted case information needs to be reviewed for accuracy before assignment.\"\n}"}],"_postman_id":"6a7e43cc-1a69-4e51-9541-d74cd7237888"},{"name":"List case statuses","id":"08be709a-9ec9-40b5-afaf-4b85850aa34f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_statuses","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_statuses"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"a8012437-df6d-4bb5-afbe-81321095b92e","name":"List case statuses","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_statuses"},"status":"OK","code":200,"_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\": \"7\",\n        \"case_status_rank\": \"7\",\n        \"case_status_category\": \"4\",\n        \"is_readonly\": false,\n        \"name\": \"Closed\",\n        \"notes\": \"All invoices are paid and no further work is required on the case.\",\n        \"description\": \"All invoices are paid and no further work is required on the case.\"\n    },\n    {\n        \"id\": \"6\",\n        \"case_status_rank\": \"6\",\n        \"case_status_category\": \"3\",\n        \"is_readonly\": false,\n        \"name\": \"Invoiced\",\n        \"notes\": \"The invoice has been sent to the client and is awaiting payment.\",\n        \"description\": \"The invoice has been sent to the client and is awaiting payment.\"\n    },\n    {\n        \"id\": \"5\",\n        \"case_status_rank\": \"5\",\n        \"case_status_category\": \"3\",\n        \"is_readonly\": false,\n        \"name\": \"Report Delivered\",\n        \"notes\": \"All work on this case is complete and the final report has been delivered.\",\n        \"description\": \"All work on this case is complete and the final report has been delivered.\"\n    },\n    {\n        \"id\": \"4\",\n        \"case_status_rank\": \"4\",\n        \"case_status_category\": \"2\",\n        \"is_readonly\": false,\n        \"name\": \"Quality Assurance\",\n        \"notes\": \"All investigative activities are complete and client deliverables are being reviewed for accuracy.\",\n        \"description\": \"All investigative activities are complete and client deliverables are being reviewed for accuracy.\"\n    },\n    {\n        \"id\": \"3\",\n        \"case_status_rank\": \"3\",\n        \"case_status_category\": \"2\",\n        \"is_readonly\": false,\n        \"name\": \"Open / Working\",\n        \"notes\": \"The case is in the field and new information is being collected by investigator(s).\",\n        \"description\": \"The case is in the field and new information is being collected by investigator(s).\"\n    },\n    {\n        \"id\": \"2\",\n        \"case_status_rank\": \"2\",\n        \"case_status_category\": \"1\",\n        \"is_readonly\": false,\n        \"name\": \"Pending Assignment\",\n        \"notes\": \"Case information has been reviewed for accuracy and is ready for assignment.\",\n        \"description\": \"Case information has been reviewed for accuracy and is ready for assignment.\"\n    },\n    {\n        \"id\": \"1\",\n        \"case_status_rank\": \"1\",\n        \"case_status_category\": \"1\",\n        \"is_readonly\": false,\n        \"name\": \"New\",\n        \"notes\": \"Submitted case information needs to be reviewed for accuracy before assignment.\",\n        \"description\": \"Submitted case information needs to be reviewed for accuracy before assignment.\"\n    }\n]"}],"_postman_id":"08be709a-9ec9-40b5-afaf-4b85850aa34f"},{"name":"Search case statuses","id":"1a6d343d-e1e4-4fa6-b13a-5f0a9cf4fe1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_statuses?id=<integer>&name=<string>&category=<integer>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_statuses"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case status</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the case status</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>ID of the case status category</p>\n","type":"text/plain"},"key":"category","value":"<integer>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"f72ee1a3-9333-4659-be5e-c37cd1f40835","name":"Search case statuses","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_statuses?id=<integer>&name=<string>&category=<integer>&page=<integer>","host":["/api/v1"],"path":["case_statuses"],"query":[{"key":"id","value":"<integer>","description":"ID of the case status"},{"key":"name","value":"<string>","description":"Name of the case status"},{"key":"category","value":"<integer>","description":"ID of the case status category"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"7\",\n        \"case_status_rank\": \"7\",\n        \"case_status_category\": \"4\",\n        \"is_readonly\": false,\n        \"name\": \"Closed\",\n        \"notes\": \"All invoices are paid and no further work is required on the case.\",\n        \"description\": \"All invoices are paid and no further work is required on the case.\"\n    },\n    {\n        \"id\": \"6\",\n        \"case_status_rank\": \"6\",\n        \"case_status_category\": \"3\",\n        \"is_readonly\": false,\n        \"name\": \"Invoiced\",\n        \"notes\": \"The invoice has been sent to the client and is awaiting payment.\",\n        \"description\": \"The invoice has been sent to the client and is awaiting payment.\"\n    },\n    {\n        \"id\": \"5\",\n        \"case_status_rank\": \"5\",\n        \"case_status_category\": \"3\",\n        \"is_readonly\": false,\n        \"name\": \"Report Delivered\",\n        \"notes\": \"All work on this case is complete and the final report has been delivered.\",\n        \"description\": \"All work on this case is complete and the final report has been delivered.\"\n    },\n    {\n        \"id\": \"4\",\n        \"case_status_rank\": \"4\",\n        \"case_status_category\": \"2\",\n        \"is_readonly\": false,\n        \"name\": \"Quality Assurance\",\n        \"notes\": \"All investigative activities are complete and client deliverables are being reviewed for accuracy.\",\n        \"description\": \"All investigative activities are complete and client deliverables are being reviewed for accuracy.\"\n    },\n    {\n        \"id\": \"3\",\n        \"case_status_rank\": \"3\",\n        \"case_status_category\": \"2\",\n        \"is_readonly\": false,\n        \"name\": \"Open / Working\",\n        \"notes\": \"The case is in the field and new information is being collected by investigator(s).\",\n        \"description\": \"The case is in the field and new information is being collected by investigator(s).\"\n    },\n    {\n        \"id\": \"2\",\n        \"case_status_rank\": \"2\",\n        \"case_status_category\": \"1\",\n        \"is_readonly\": false,\n        \"name\": \"Pending Assignment\",\n        \"notes\": \"Case information has been reviewed for accuracy and is ready for assignment.\",\n        \"description\": \"Case information has been reviewed for accuracy and is ready for assignment.\"\n    },\n    {\n        \"id\": \"1\",\n        \"case_status_rank\": \"1\",\n        \"case_status_category\": \"1\",\n        \"is_readonly\": false,\n        \"name\": \"New\",\n        \"notes\": \"Submitted case information needs to be reviewed for accuracy before assignment.\",\n        \"description\": \"Submitted case information needs to be reviewed for accuracy before assignment.\"\n    }\n]"}],"_postman_id":"1a6d343d-e1e4-4fa6-b13a-5f0a9cf4fe1f"}],"id":"2f86bfd9-7e34-4032-a293-dd500e24e285","description":"<p>Case services are the buckets that track progress throughout the lifecycle of a case.</p>\n<p>See also: <a href=\"https://support.trackops.com/hc/en-us/articles/212336943-How-to-Customize-your-Case-Statuses\">How to Customize your Case Statuses</a></p>\n","_postman_id":"2f86bfd9-7e34-4032-a293-dd500e24e285","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Types","item":[{"name":"Get a case type","id":"5587cdff-0498-49c0-ba15-79bd44853b69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_types/:case_type_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_types",":case_type_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case type</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_type_id"}]}},"response":[{"id":"7e483c77-b354-4d66-93ce-9e8ae57be8fb","name":"Get a case type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_types/:case_type_id","host":["/api/v1"],"path":["case_types",":case_type_id"],"variable":[{"key":"case_type_id","value":"<integer>","description":"ID of the case type"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Workers' Compensation\",\n    \"reference_id\": \"\",\n    \"tag\": \"WC\",\n    \"notes\": \"Insurance fraud investigation\",\n    \"reference_label_1\": \"Claim Number\",\n    \"reference_label_2\": \"SIU Number\",\n    \"reference_label_3\": \"\",\n    \"description\": \"Insurance fraud investigation\",\n    \"Fields\": [\n        {\n            \"id\": \"61\",\n            \"name\": \"Insured\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        }\n    ]\n}"}],"_postman_id":"5587cdff-0498-49c0-ba15-79bd44853b69"},{"name":"List case types","id":"ca28c196-2e53-4846-8c32-6abf16b8e17f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_types","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_types"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"762d31d6-5a31-4530-bd7b-f010fefcb43f","name":"List case types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"frame-ancestors 'none';object-src 'self' https://d1ssnvhbal8zta.cloudfront.net;media-src 'self' https://d1ssnvhbal8zta.cloudfront.net;script-src 'self' 'nonce-2d602f19348823262457b76e3825a35a' https://js.stripe.com;upgrade-insecure-requests;block-all-mixed-content;"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Powered-By","value":"PHP/8.3.28"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Date","value":"Tue, 17 Feb 2026 18:27:34 GMT"},{"key":"Content-Length","value":"376"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\",\n        \"reference_id\": \"\",\n        \"tag\": \"WC\",\n        \"notes\": \"Insurance fraud investigation\",\n        \"reference_label_1\": \"Claim Number\",\n        \"reference_label_2\": \"SIU Number\",\n        \"reference_label_3\": \"\",\n        \"description\": \"Insurance fraud investigation\",\n        \"Fields\": [\n            {\n                \"id\": \"61\",\n                \"name\": \"Insured\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            }\n        ]\n    }\n]"}],"_postman_id":"ca28c196-2e53-4846-8c32-6abf16b8e17f"},{"name":"Search case types","id":"2473aa7e-bdde-4c5b-ae08-842c18691e62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_types?id=<integer>&name=<string>&tag=<string>&reference_id=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_types"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case type</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the case type</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>2 character tag associated with the case type</p>\n","type":"text/plain"},"key":"tag","value":"<string>"},{"description":{"content":"<p>Reference or lookup code associated with the case type</p>\n","type":"text/plain"},"key":"reference_id","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"7aebbff7-879b-4436-8e61-1263ee4e0369","name":"Search case types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_types?id=<integer>&name=<string>&tag=<string>&reference_id=<string>&page=<integer>","host":["/api/v1"],"path":["case_types"],"query":[{"key":"id","value":"<integer>","description":"ID of the case type"},{"key":"name","value":"<string>","description":"Name of the case type"},{"key":"tag","value":"<string>","description":"2 character tag associated with the case type"},{"key":"reference_id","value":"<string>","description":"Reference or lookup code associated with the case type"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\",\n        \"reference_id\": \"\",\n        \"tag\": \"WC\",\n        \"notes\": \"Insurance fraud investigation\",\n        \"reference_label_1\": \"Claim Number\",\n        \"reference_label_2\": \"SIU Number\",\n        \"reference_label_3\": \"\",\n        \"description\": \"Insurance fraud investigation\",\n        \"Fields\": [\n            {\n                \"id\": \"61\",\n                \"name\": \"Insured\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            }\n        ]\n    }\n]"}],"_postman_id":"2473aa7e-bdde-4c5b-ae08-842c18691e62"}],"id":"2010948d-b0cd-42c8-8740-b6476aa008eb","description":"<p>Case types are the glue that connect and configure various case components together. Case types can be customized to capture unique data for each type of investigation you work.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337083-Setting-up-your-Case-Types\">Setting up your Case Types</a></p>\n","_postman_id":"2010948d-b0cd-42c8-8740-b6476aa008eb","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Update Categories","item":[{"name":"Get a case update category","id":"9948baf6-2ee4-4705-9bc8-81b8deb57a8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/update_categories/:case_update_category_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["update_categories",":case_update_category_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case update category</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_update_category_id"}]}},"response":[{"id":"dea0efdc-4b09-4922-a6e0-9f4754bb0927","name":"Get a case update category","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/update_categories/:case_update_category_id","host":["/api/v1"],"path":["update_categories",":case_update_category_id"],"variable":[{"key":"case_update_category_id","value":"<integer>","description":"ID of the case update category"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Report\",\n    \"tag\": \"reoport\",\n    \"default_option_expense\": false,\n    \"AccessGroups\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Admin\"\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Public\"\n        },\n        {\n            \"id\": \"3\",\n            \"name\": \"Internal\"\n        }\n    ]\n}"}],"_postman_id":"9948baf6-2ee4-4705-9bc8-81b8deb57a8c"},{"name":"List case update categories","id":"5d020817-d248-4db4-9c04-ef049f957578","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/update_categories","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["update_categories"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"ce7616a7-e554-4354-9eb8-c6b5db3a8f7a","name":"List case update categories","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/update_categories"},"status":"OK","code":200,"_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\": \"2\",\n        \"name\": \"Surveillance Log\",\n        \"tag\": \"surv\",\n        \"default_option_expense\": true,\n        \"AccessGroups\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Admin\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Public\"\n            },\n            {\n                \"id\": \"3\",\n                \"name\": \"Internal\"\n            }\n        ]\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Report\",\n        \"tag\": \"reoport\",\n        \"default_option_expense\": false,\n        \"AccessGroups\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Admin\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Public\"\n            },\n            {\n                \"id\": \"3\",\n                \"name\": \"Internal\"\n            }\n        ]\n    }\n]"}],"_postman_id":"5d020817-d248-4db4-9c04-ef049f957578"},{"name":"Search case update categories","id":"20a8070b-efac-4230-942b-8d5c4e8318e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/update_categories?id=<integer>&name=<string>&tag=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["update_categories"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case update category</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the case update category</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Document tag of the case update category</p>\n","type":"text/plain"},"key":"tag","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"2baa727d-37a8-4db5-95d7-6a08aef12ce0","name":"Search case update categories","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/update_categories?id=<integer>&name=<string>&tag=<string>&page=<integer>","host":["/api/v1"],"path":["update_categories"],"query":[{"key":"id","value":"<integer>","description":"ID of the case update category"},{"key":"name","value":"<string>","description":"Name of the case update category"},{"key":"tag","value":"<string>","description":"Document tag of the case update category"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"name\": \"Surveillance Log\",\n        \"tag\": \"surv\",\n        \"default_option_expense\": true,\n        \"AccessGroups\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Admin\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Public\"\n            },\n            {\n                \"id\": \"3\",\n                \"name\": \"Internal\"\n            }\n        ]\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Report\",\n        \"tag\": \"reoport\",\n        \"default_option_expense\": false,\n        \"AccessGroups\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Admin\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Public\"\n            },\n            {\n                \"id\": \"3\",\n                \"name\": \"Internal\"\n            }\n        ]\n    }\n]"}],"_postman_id":"20a8070b-efac-4230-942b-8d5c4e8318e4"}],"id":"030e6c3b-88e4-4d78-9cce-52561abb20cb","description":"<p>Case update categories allow you to organize case updates by a specific type or genre. </p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/29141381155469-Managing-Case-Update-Categories\">Managing Case Update Categories</a></p>\n","_postman_id":"030e6c3b-88e4-4d78-9cce-52561abb20cb","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Updates","item":[{"name":"Get a case update","id":"894b55ce-540b-4c26-9f0d-113133de9fc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/updates/:case_update_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","updates",":case_update_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case update</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_update_id"}]}},"response":[{"id":"c375cd35-6207-4df0-b039-1de2c676544f","name":"Get a case update","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case/updates/:case_update_id","host":["/api/v1"],"path":["case","updates",":case_update_id"],"variable":[{"key":"case_update_id","value":"<integer>","description":"ID of the case update"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"title\": \"Surveillance / McFly / Denver, CO\",\n    \"body\": \"<p>On February 7 2026 the investigator initiated surveillance at the primary residence at approximately 8:00AM.&nbsp; The investigator conducted mobile surveillance and observed the claimant for approximately 2 hours before he entered into the school.&nbsp; After 2 hours, the investigator terminated surveillance due to inactivity.</p>\",\n    \"activity_at\": \"2026-02-07 13:00:00\",\n    \"last_sent_at\": null,\n    \"update_thread_id\": \"1\",\n    \"update_category_id\": \"2\",\n    \"review_entry_id\": \"2\",\n    \"update_status\": \"1\",\n    \"is_valid\": false,\n    \"is_pinned\": false,\n    \"created_at\": \"2026-02-02 21:15:28\",\n    \"updated_at\": \"2026-02-02 21:15:28\",\n    \"validated_at\": null,\n    \"attachment_count\": \"0\",\n    \"is_allday\": false,\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"CreatedBy\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"UpdateCategory\": {\n        \"id\": \"2\",\n        \"tag\": \"surv\",\n        \"name\": \"Surveillance Log\"\n    },\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"files_list\": [],\n    \"UpdateDetails\": [\n        {\n            \"id\": \"1\",\n            \"update_detail_rank\": \"1\",\n            \"update_id\": \"1\",\n            \"start_at\": \"08:00:00\",\n            \"notes\": \"Arrived on site\"\n        },\n        {\n            \"id\": \"2\",\n            \"update_detail_rank\": \"2\",\n            \"update_id\": \"1\",\n            \"start_at\": \"09:00:00\",\n            \"notes\": \"Claimant departed the residence\"\n        },\n        {\n            \"id\": \"3\",\n            \"update_detail_rank\": \"3\",\n            \"update_id\": \"1\",\n            \"start_at\": \"09:15:00\",\n            \"notes\": \"Followed claimant to Hill Valley High School\"\n        },\n        {\n            \"id\": \"4\",\n            \"update_detail_rank\": \"4\",\n            \"update_id\": \"1\",\n            \"start_at\": \"10:00:00\",\n            \"notes\": \"Claimant walked inside high school\"\n        },\n        {\n            \"id\": \"5\",\n            \"update_detail_rank\": \"5\",\n            \"update_id\": \"1\",\n            \"start_at\": \"12:00:00\",\n            \"notes\": \"Terminated surveillance due to lack of activity\"\n        }\n    ],\n    \"combined_body\": \"<p>On February 7 2026 the investigator initiated surveillance at the primary residence at approximately 8:00AM.&nbsp; The investigator conducted mobile surveillance and observed the claimant for approximately 2 hours before he entered into the school.&nbsp; After 2 hours, the investigator terminated surveillance due to inactivity.</p><p><span><strong>8:00 AM - </strong></span>Arrived on site</p><p><span><strong>9:00 AM - </strong></span>Claimant departed the residence</p><p><span><strong>9:15 AM - </strong></span>Followed claimant to Hill Valley High School</p><p><span><strong>10:00 AM - </strong></span>Claimant walked inside high school</p><p><span><strong>12:00 PM - </strong></span>Terminated surveillance due to lack of activity</p>\"\n}"}],"_postman_id":"894b55ce-540b-4c26-9f0d-113133de9fc3"},{"name":"List case updates","id":"a045e237-08ec-41c1-b4e1-fe4fca0bdd79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/updates","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","updates"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"9f86f894-fd09-475d-8a87-85a17624b7a5","name":"List case updates","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/updates"},"status":"OK","code":200,"_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\": \"1\",\n        \"title\": \"Surveillance / McFly / Denver, CO\",\n        \"body\": \"<p>On February 7 2026 the investigator initiated surveillance at the primary residence at approximately 8:00AM.&nbsp; The investigator conducted mobile surveillance and observed the claimant for approximately 2 hours before he entered into the school.&nbsp; After 2 hours, the investigator terminated surveillance due to inactivity.</p>\",\n        \"activity_at\": \"2026-02-07 13:00:00\",\n        \"last_sent_at\": null,\n        \"update_thread_id\": \"1\",\n        \"update_category_id\": \"2\",\n        \"review_entry_id\": \"2\",\n        \"update_status\": \"1\",\n        \"is_valid\": false,\n        \"is_pinned\": false,\n        \"created_at\": \"2026-02-02 21:15:28\",\n        \"updated_at\": \"2026-02-02 21:15:28\",\n        \"validated_at\": null,\n        \"attachment_count\": \"0\",\n        \"is_allday\": false,\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"AccessGroup\": {\n            \"id\": \"2\",\n            \"name\": \"Public\"\n        },\n        \"CreatedBy\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"UpdateCategory\": {\n            \"id\": \"2\",\n            \"tag\": \"surv\",\n            \"name\": \"Surveillance Log\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"files_list\": [],\n        \"UpdateDetails\": [\n            {\n                \"id\": \"1\",\n                \"update_detail_rank\": \"1\",\n                \"update_id\": \"1\",\n                \"start_at\": \"08:00:00\",\n                \"notes\": \"Arrived on site\"\n            },\n            {\n                \"id\": \"2\",\n                \"update_detail_rank\": \"2\",\n                \"update_id\": \"1\",\n                \"start_at\": \"09:00:00\",\n                \"notes\": \"Claimant departed the residence\"\n            },\n            {\n                \"id\": \"3\",\n                \"update_detail_rank\": \"3\",\n                \"update_id\": \"1\",\n                \"start_at\": \"09:15:00\",\n                \"notes\": \"Followed claimant to Hill Valley High School\"\n            },\n            {\n                \"id\": \"4\",\n                \"update_detail_rank\": \"4\",\n                \"update_id\": \"1\",\n                \"start_at\": \"10:00:00\",\n                \"notes\": \"Claimant walked inside high school\"\n            },\n            {\n                \"id\": \"5\",\n                \"update_detail_rank\": \"5\",\n                \"update_id\": \"1\",\n                \"start_at\": \"12:00:00\",\n                \"notes\": \"Terminated surveillance due to lack of activity\"\n            }\n        ],\n        \"combined_body\": \"<p>On February 7 2026 the investigator initiated surveillance at the primary residence at approximately 8:00AM.&nbsp; The investigator conducted mobile surveillance and observed the claimant for approximately 2 hours before he entered into the school.&nbsp; After 2 hours, the investigator terminated surveillance due to inactivity.</p><p><span><strong>8:00 AM - </strong></span>Arrived on site</p><p><span><strong>9:00 AM - </strong></span>Claimant departed the residence</p><p><span><strong>9:15 AM - </strong></span>Followed claimant to Hill Valley High School</p><p><span><strong>10:00 AM - </strong></span>Claimant walked inside high school</p><p><span><strong>12:00 PM - </strong></span>Terminated surveillance due to lack of activity</p>\"\n    }\n]"}],"_postman_id":"a045e237-08ec-41c1-b4e1-fe4fca0bdd79"},{"name":"Search case updates","id":"f21b888f-4e42-475a-8a0c-bf7ac2d98e83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/updates?id=<integer>&access_group=<integer>&case=<integer>&created_by=<integer>&subject=<integer>&title=<string>&update_status=<integer>&update_category=<integer>&activity_from=<datestamp>&activity_to=<datestamp>&from=<datestamp>&to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&validated_from=<datestamp>&validated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","updates"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case update</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the access group associated with the case update</p>\n","type":"text/plain"},"key":"access_group","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the case update</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the author of the case update</p>\n","type":"text/plain"},"key":"created_by","value":"<integer>"},{"description":{"content":"<p>ID of the subject associated with the case update</p>\n","type":"text/plain"},"key":"subject","value":"<integer>"},{"description":{"content":"<p>Title of the case update</p>\n","type":"text/plain"},"key":"title","value":"<string>"},{"description":{"content":"<p>ID of the case update status</p>\n","type":"text/plain"},"key":"update_status","value":"<integer>"},{"description":{"content":"<p>ID of the case update category associated with the case update</p>\n","type":"text/plain"},"key":"update_category","value":"<integer>"},{"description":{"content":"<p>ISO date of activity from</p>\n","type":"text/plain"},"key":"activity_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of activity to</p>\n","type":"text/plain"},"key":"activity_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of activity_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of activity_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date of created from</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of created_to</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date of updated from </p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of updated to</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date of validated from</p>\n","type":"text/plain"},"key":"validated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of validated to</p>\n","type":"text/plain"},"key":"validated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"ac615c74-dcb1-489e-8b5b-35cdd53e0d7d","name":"Search case updates","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case/updates?id=<integer>&access_group=<integer>&case=<integer>&created_by=<integer>&subject=<integer>&title=<string>&update_status=<integer>&update_category=<integer>&activity_from=<datestamp>&activity_to=<datestamp>&from=<datestamp>&to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&validated_from=<datestamp>&validated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["case","updates"],"query":[{"key":"id","value":"<integer>","description":"ID of the case update"},{"key":"access_group","value":"<integer>","description":"ID of the access group associated with the case update"},{"key":"case","value":"<integer>","description":"ID of the case associated with the case update"},{"key":"created_by","value":"<integer>","description":"ID of the author of the case update"},{"key":"subject","value":"<integer>","description":"ID of the subject associated with the case update"},{"key":"title","value":"<string>","description":"Title of the case update"},{"key":"update_status","value":"<integer>","description":"ID of the case update status"},{"key":"update_category","value":"<integer>","description":"ID of the case update category associated with the case update"},{"key":"activity_from","value":"<datestamp>","description":"ISO date of activity from"},{"key":"activity_to","value":"<datestamp>","description":"ISO date of activity to"},{"key":"from","value":"<datestamp>","description":"Alias of activity_from"},{"key":"to","value":"<datestamp>","description":"Alias of activity_to"},{"key":"created_from","value":"<datestamp>","description":"ISO date of created from"},{"key":"created_to","value":"<datestamp>","description":"ISO date of created_to"},{"key":"updated_from","value":"<datestamp>","description":"ISO date of updated from "},{"key":"updated_to","value":"<datestamp>","description":"ISO date of updated to"},{"key":"validated_from","value":"<datestamp>","description":"ISO date of validated from"},{"key":"validated_to","value":"<datestamp>","description":"ISO date of validated to"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"title\": \"Surveillance / McFly / Denver, CO\",\n        \"body\": \"<p>On February 7 2026 the investigator initiated surveillance at the primary residence at approximately 8:00AM.&nbsp; The investigator conducted mobile surveillance and observed the claimant for approximately 2 hours before he entered into the school.&nbsp; After 2 hours, the investigator terminated surveillance due to inactivity.</p>\",\n        \"activity_at\": \"2026-02-07 13:00:00\",\n        \"last_sent_at\": null,\n        \"update_thread_id\": \"1\",\n        \"update_category_id\": \"2\",\n        \"review_entry_id\": \"2\",\n        \"update_status\": \"1\",\n        \"is_valid\": false,\n        \"is_pinned\": false,\n        \"created_at\": \"2026-02-02 21:15:28\",\n        \"updated_at\": \"2026-02-02 21:15:28\",\n        \"validated_at\": null,\n        \"attachment_count\": \"0\",\n        \"is_allday\": false,\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"AccessGroup\": {\n            \"id\": \"2\",\n            \"name\": \"Public\"\n        },\n        \"CreatedBy\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"UpdateCategory\": {\n            \"id\": \"2\",\n            \"tag\": \"surv\",\n            \"name\": \"Surveillance Log\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"files_list\": [],\n        \"UpdateDetails\": [\n            {\n                \"id\": \"1\",\n                \"update_detail_rank\": \"1\",\n                \"update_id\": \"1\",\n                \"start_at\": \"08:00:00\",\n                \"notes\": \"Arrived on site\"\n            },\n            {\n                \"id\": \"2\",\n                \"update_detail_rank\": \"2\",\n                \"update_id\": \"1\",\n                \"start_at\": \"09:00:00\",\n                \"notes\": \"Claimant departed the residence\"\n            },\n            {\n                \"id\": \"3\",\n                \"update_detail_rank\": \"3\",\n                \"update_id\": \"1\",\n                \"start_at\": \"09:15:00\",\n                \"notes\": \"Followed claimant to Hill Valley High School\"\n            },\n            {\n                \"id\": \"4\",\n                \"update_detail_rank\": \"4\",\n                \"update_id\": \"1\",\n                \"start_at\": \"10:00:00\",\n                \"notes\": \"Claimant walked inside high school\"\n            },\n            {\n                \"id\": \"5\",\n                \"update_detail_rank\": \"5\",\n                \"update_id\": \"1\",\n                \"start_at\": \"12:00:00\",\n                \"notes\": \"Terminated surveillance due to lack of activity\"\n            }\n        ],\n        \"combined_body\": \"<p>On February 7 2026 the investigator initiated surveillance at the primary residence at approximately 8:00AM.&nbsp; The investigator conducted mobile surveillance and observed the claimant for approximately 2 hours before he entered into the school.&nbsp; After 2 hours, the investigator terminated surveillance due to inactivity.</p><p><span><strong>8:00 AM - </strong></span>Arrived on site</p><p><span><strong>9:00 AM - </strong></span>Claimant departed the residence</p><p><span><strong>9:15 AM - </strong></span>Followed claimant to Hill Valley High School</p><p><span><strong>10:00 AM - </strong></span>Claimant walked inside high school</p><p><span><strong>12:00 PM - </strong></span>Terminated surveillance due to lack of activity</p>\"\n    }\n]"}],"_postman_id":"f21b888f-4e42-475a-8a0c-bf7ac2d98e83"},{"name":"Create a case update","id":"2a47c243-a2cd-4256-ae21-a36b21cd14c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"update\": {\n        \"title\": \"debitis corporis rerum\",\n        \"body\": \"Autem necessitatibus qui. Ut commodi assumenda. Fugiat dolor et sunt qui. Maxime quis tempore consequatur omnis aliquam ipsam.\",\n        \"access_group_id\": \"<integer>\",\n        \"subject_id\": \"<integer>\",\n        \"casefile_id\": \"<integer>\",\n        \"is_validated\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/updates","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","updates"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"42f32b3b-2ab1-42a3-bbb7-6c14498eea19","name":"Create a case update","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"update\": {\n        \"title\": \"nobis minima qui\",\n        \"body\": \"Reiciendis nisi consequuntur dignissimos dolore accusamus deserunt harum ea. Excepturi aliquid ratione. Deserunt eos qui dolores.\",\n        \"access_group_id\": \"<integer>\",\n        \"subject_id\": \"<integer>\",\n        \"casefile_id\": \"<integer>\",\n        \"is_validated\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/updates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"title\": \"modi iusto odio\",\n    \"body\": \"<p>Et quisquam similique. Rerum ratione nisi molestiae aliquam. Necessitatibus ut dolorum. Asperiores quia aut sit quia fugiat officia quasi. Totam iure eveniet.</p>\",\n    \"activity_at\": \"2026-02-02 21:18:17\",\n    \"last_sent_at\": null,\n    \"update_thread_id\": \"2\",\n    \"update_category_id\": null,\n    \"review_entry_id\": null,\n    \"update_status\": \"2\",\n    \"is_valid\": true,\n    \"is_pinned\": false,\n    \"created_at\": \"2026-02-02 21:18:17\",\n    \"updated_at\": \"2026-02-02 21:18:17\",\n    \"validated_at\": \"2026-02-02 21:18:17\",\n    \"attachment_count\": \"0\",\n    \"is_allday\": false,\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"AccessGroup\": {\n        \"id\": \"1\",\n        \"name\": \"Admin\"\n    },\n    \"CreatedBy\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"UpdateCategory\": null,\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"files_list\": [],\n    \"UpdateDetails\": []\n}"},{"id":"873d8f88-4000-42f6-87d1-bd579c023202","name":"Create a case update (with linked attachments)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"update\": {\n        \"title\": \"nemo recusandae et\",\n        \"body\": \"Eos ipsum temporibus dolor ut sint maiores a voluptatem est. Qui consequuntur sit animi vel et aut dolore minima. Quae atque ut quidem fugit aut qui laudantium voluptas. Magni tempora laudantium sed omnis. Deleniti quia veniam alias eos maxime. Similique omnis accusantium repellendus.\",\n        \"access_group_id\": \"<integer>\",\n        \"subject_id\": \"<integer>\",\n        \"casefile_id\": \"<integer>\",\n        \"files_list\": [1],\n        \"is_validated\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/updates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"title\": \"harum laudantium illum\",\n    \"body\": \"<p>Nisi impedit excepturi quasi esse excepturi est sunt recusandae. Harum omnis labore et. Architecto ipsum amet. Voluptatibus explicabo ut et eius voluptas voluptatum inventore a qui.</p>\",\n    \"activity_at\": \"2026-02-02 21:24:35\",\n    \"last_sent_at\": null,\n    \"update_thread_id\": \"3\",\n    \"update_category_id\": null,\n    \"review_entry_id\": null,\n    \"update_status\": \"2\",\n    \"is_valid\": true,\n    \"is_pinned\": false,\n    \"created_at\": \"2026-02-02 21:24:35\",\n    \"updated_at\": \"2026-02-02 21:24:35\",\n    \"validated_at\": \"2026-02-02 21:24:35\",\n    \"attachment_count\": \"0\",\n    \"is_allday\": false,\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"CreatedBy\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"UpdateCategory\": null,\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"files_list\": [\n        \"1\"\n    ],\n    \"UpdateDetails\": []\n}"}],"_postman_id":"2a47c243-a2cd-4256-ae21-a36b21cd14c5"},{"name":"Update a case update","id":"341df4f0-73c8-4ddd-8d69-aa5aa85219e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"update\": {\n        \"title\": \"a laboriosam et\",\n        \"body\": \"Architecto alias maiores dolor impedit provident dolores dolor aut. Voluptatem blanditiis incidunt. Id magnam aut velit velit qui blanditiis. Rerum voluptatem velit perferendis quis. Eius necessitatibus eveniet exercitationem rerum ad expedita autem.\",\n        \"is_validated\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/updates/<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","updates","<integer>"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"6730d205-5722-4aa0-a94f-7fd0da74a83a","name":"Update a case update","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"update\": {\n        \"title\": \"quod et qui\",\n        \"body\": \"Repellat animi amet perferendis quia. Culpa aut quia eum sapiente deserunt. Dolorem ea aut. Dolores nesciunt et tempora quis. Aut aliquam facilis et impedit voluptatem tempora. Odio dolor eum aut.\",\n        \"is_validated\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/updates/<integer>"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"title\": \"sapiente praesentium tenetur\",\n    \"body\": \"<p>Omnis laudantium neque iure sint aliquid ea magni ut. Placeat maxime eum odit atque repellendus. Facere itaque odit atque similique delectus fugit nobis a. Quibusdam laborum ad ratione quas dignissimos neque necessitatibus pariatur.</p>\",\n    \"activity_at\": \"2026-02-07 13:00:00\",\n    \"last_sent_at\": null,\n    \"update_thread_id\": \"1\",\n    \"update_category_id\": \"2\",\n    \"review_entry_id\": \"2\",\n    \"update_status\": \"2\",\n    \"is_valid\": true,\n    \"is_pinned\": false,\n    \"created_at\": \"2026-02-02 21:15:28\",\n    \"updated_at\": \"2026-02-02 21:25:12\",\n    \"validated_at\": \"2026-02-02 21:22:57\",\n    \"attachment_count\": \"0\",\n    \"is_allday\": false,\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"CreatedBy\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"UpdateCategory\": {\n        \"id\": \"2\",\n        \"tag\": \"surv\",\n        \"name\": \"Surveillance Log\"\n    },\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"files_list\": [],\n    \"UpdateDetails\": [\n        {\n            \"id\": \"1\",\n            \"update_detail_rank\": \"1\",\n            \"update_id\": \"1\",\n            \"start_at\": \"08:00:00\",\n            \"notes\": \"Arrived on site\"\n        },\n        {\n            \"id\": \"2\",\n            \"update_detail_rank\": \"2\",\n            \"update_id\": \"1\",\n            \"start_at\": \"09:00:00\",\n            \"notes\": \"Claimant departed the residence\"\n        },\n        {\n            \"id\": \"3\",\n            \"update_detail_rank\": \"3\",\n            \"update_id\": \"1\",\n            \"start_at\": \"09:15:00\",\n            \"notes\": \"Followed claimant to Hill Valley High School\"\n        },\n        {\n            \"id\": \"4\",\n            \"update_detail_rank\": \"4\",\n            \"update_id\": \"1\",\n            \"start_at\": \"10:00:00\",\n            \"notes\": \"Claimant walked inside high school\"\n        },\n        {\n            \"id\": \"5\",\n            \"update_detail_rank\": \"5\",\n            \"update_id\": \"1\",\n            \"start_at\": \"12:00:00\",\n            \"notes\": \"Terminated surveillance due to lack of activity\"\n        }\n    ]\n}"}],"_postman_id":"341df4f0-73c8-4ddd-8d69-aa5aa85219e6"}],"id":"7496492c-7c9e-4ab8-8f6c-178a8e5a8ec8","description":"<p>\"Case Updates\" are the primary means of communication between all parties on a case, including managers, investigators, and clients.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338103-Case-Updates-Communicating-with-your-Clients-and-Staff\">Case Updates: Communicating with your Clients and Staff</a></p>\n","_postman_id":"7496492c-7c9e-4ab8-8f6c-178a8e5a8ec8","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Cases","item":[{"name":"Case Contacts (Assignments)","item":[{"name":"Get a case assignment","id":"148259ac-6034-4d8f-84c6-3229436a1dfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/case/contacts/:case_id/:user_id/:assign_type_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","contacts",":case_id",":user_id",":assign_type_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_id"},{"description":{"content":"<p>ID of the case contact (user)</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"user_id"},{"description":{"content":"<p>ID of the assign type</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"assign_type_id"}]}},"response":[{"id":"cda33ebd-3501-4bed-a7cd-a0e6e25d44eb","name":"Get a case assignment","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/case/contacts/:case_id/:user_id/:assign_type_id","host":["/api/v1"],"path":["case","contacts",":case_id",":user_id",":assign_type_id"],"variable":[{"key":"case_id","value":"<integer>","description":"ID of the case"},{"key":"user_id","value":"<integer>","description":"ID of the case contact (user)"},{"key":"assign_type_id","value":"<integer>","description":"ID of the assign type"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"casefile_id\": \"3\",\n    \"user_id\": \"3\",\n    \"assign_type_id\": \"1\",\n    \"is_primary\": true,\n    \"notified_at\": null,\n    \"confirmed_at\": null,\n    \"viewed_at\": null,\n    \"created_at\": \"2026-02-02 20:58:37\",\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"client_id\": \"4\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-09\",\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\"\n    },\n    \"User\": {\n        \"id\": \"3\",\n        \"client_id\": \"2\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"AssignType\": {\n        \"id\": \"1\",\n        \"name\": \"Investigator\"\n    }\n}"}],"_postman_id":"148259ac-6034-4d8f-84c6-3229436a1dfa"},{"name":"List case contacts","id":"77389143-8b5f-454e-94c5-2b7b1d0ddeab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/case/contacts","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","contacts"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"076dfddc-066e-4241-8483-e9de8c983181","name":"List case contacts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/case/contacts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"1\",\n        \"assign_type_id\": \"3\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": \"2026-02-02 21:22:54\",\n        \"created_at\": \"2026-02-02 20:58:32\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"client_id\": \"2\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"AssignType\": {\n            \"id\": \"3\",\n            \"name\": \"Case Manager\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"1\",\n        \"assign_type_id\": \"5\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": \"2026-02-02 21:22:54\",\n        \"created_at\": \"2026-02-02 20:58:46\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"client_id\": \"2\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"AssignType\": {\n            \"id\": \"5\",\n            \"name\": \"Salesperson\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"2\",\n        \"assign_type_id\": \"4\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": null,\n        \"created_at\": \"2026-02-02 20:49:46\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"2\",\n            \"client_id\": \"4\",\n            \"account_code\": null,\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"AssignType\": {\n            \"id\": \"4\",\n            \"name\": \"Client Contact\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"3\",\n        \"assign_type_id\": \"1\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": null,\n        \"created_at\": \"2026-02-02 20:58:37\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"3\",\n            \"client_id\": \"2\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"AssignType\": {\n            \"id\": \"1\",\n            \"name\": \"Investigator\"\n        }\n    }\n]"}],"_postman_id":"77389143-8b5f-454e-94c5-2b7b1d0ddeab"},{"name":"Search case contacts","id":"d42f6b69-67a4-4dd0-af55-74224b7875f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"case_contact\": {\n        \"casefile_id\": {case_id},\n        \"user_id\": ,\n        \"assign_type_id\": ,\n        \"is_primary\": true\n    }\n}"},"url":"/api/v1/case/contacts?assign_type=<integer>&case=<integer>&case_type=<integer>&user=<integer>&assigned_from=<datestamp>&assigned_to=<datestamp>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","contacts"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case assignment type (case role)</p>\n","type":"text/plain"},"key":"assign_type","value":"<integer>"},{"description":{"content":"<p>ID of the case</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the case type associated with the case</p>\n","type":"text/plain"},"key":"case_type","value":"<integer>"},{"description":{"content":"<p>ID of the assigned user</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ISO date of the assignment date from</p>\n","type":"text/plain"},"key":"assigned_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the assignment date to</p>\n","type":"text/plain"},"key":"assigned_to","value":"<datestamp>"}],"variable":[]}},"response":[{"id":"c5249594-bd3a-448e-bb9c-044838a9fe54","name":"Search case contacts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"case_contact\": {\n        \"casefile_id\": {case_id},\n        \"user_id\": ,\n        \"assign_type_id\": ,\n        \"is_primary\": true\n    }\n}"},"url":{"raw":"/api/v1/case/contacts?assign_type=<integer>&case=<integer>&case_type=<integer>&user=<integer>&assigned_from=<datestamp>&assigned_to=<datestamp>","host":["/api/v1"],"path":["case","contacts"],"query":[{"key":"assign_type","value":"<integer>","description":"ID of the case assignment type (case role)"},{"key":"case","value":"<integer>","description":"ID of the case"},{"key":"case_type","value":"<integer>","description":"ID of the case type associated with the case"},{"key":"user","value":"<integer>","description":"ID of the assigned user"},{"key":"assigned_from","value":"<datestamp>","description":"ISO date of the assignment date from"},{"key":"assigned_to","value":"<datestamp>","description":"ISO date of the assignment date to"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"1\",\n        \"assign_type_id\": \"3\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": \"2026-02-02 21:22:54\",\n        \"created_at\": \"2026-02-02 20:58:32\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"client_id\": \"2\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"AssignType\": {\n            \"id\": \"3\",\n            \"name\": \"Case Manager\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"1\",\n        \"assign_type_id\": \"5\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": \"2026-02-02 21:22:54\",\n        \"created_at\": \"2026-02-02 20:58:46\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"client_id\": \"2\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"AssignType\": {\n            \"id\": \"5\",\n            \"name\": \"Salesperson\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"2\",\n        \"assign_type_id\": \"4\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": null,\n        \"created_at\": \"2026-02-02 20:49:46\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"2\",\n            \"client_id\": \"4\",\n            \"account_code\": null,\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"AssignType\": {\n            \"id\": \"4\",\n            \"name\": \"Client Contact\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"3\",\n        \"assign_type_id\": \"1\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": null,\n        \"created_at\": \"2026-02-02 20:58:37\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"3\",\n            \"client_id\": \"2\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"AssignType\": {\n            \"id\": \"1\",\n            \"name\": \"Investigator\"\n        }\n    }\n]"}],"_postman_id":"d42f6b69-67a4-4dd0-af55-74224b7875f8"},{"name":"Assign a user to a case","id":"9d2a4917-b462-42b6-96a8-6a8bc62cfc70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"case_contact\": {\n        \"casefile_id\": \"<integer>\",\n        \"user_id\": \"<integer>\",\n        \"assign_type_id\": \"<integer>\",\n        \"is_primary\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/contacts","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","contacts"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"4843ae49-c527-4621-95c1-59fb7cc2e1ca","name":"Assign a user to a case","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"case_contact\": {\n        \"casefile_id\": \"<integer>\",\n        \"user_id\": \"<integer>\",\n        \"assign_type_id\": \"<integer>\",\n        \"is_primary\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/contacts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"casefile_id\": \"3\",\n    \"user_id\": \"3\",\n    \"assign_type_id\": \"1\",\n    \"is_primary\": true,\n    \"notified_at\": \"2026-02-02 21:30:16\",\n    \"confirmed_at\": null,\n    \"viewed_at\": null,\n    \"created_at\": \"2026-02-02 21:30:16\",\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"client_id\": \"4\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-09\",\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\"\n    },\n    \"User\": {\n        \"id\": \"3\",\n        \"client_id\": \"2\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"AssignType\": {\n        \"id\": \"1\",\n        \"name\": \"Investigator\"\n    }\n}"}],"_postman_id":"9d2a4917-b462-42b6-96a8-6a8bc62cfc70"}],"id":"597ad741-0afe-4c70-8bcf-34f7c58f7562","description":"<p>Case contacts are the parties who are assigned to cases in various capacities. Contacts are comprised of both clients and staff and fall into one of the following <a href=\"https://support.trackops.com/hc/en-us/articles/115002690423-Configuring-your-Assignment-Types\">case assignment types</a>:</p>\n<ul>\n<li><p>Additional Employee</p>\n</li>\n<li><p>Affiliate Contact</p>\n</li>\n<li><p>Case Manager</p>\n</li>\n<li><p>Client Contact</p>\n</li>\n<li><p>Investigator</p>\n</li>\n<li><p>Salesperson</p>\n</li>\n<li><p>Vendor Contact</p>\n</li>\n</ul>\n<p><strong>Note:</strong> The terms used for the above assignment types are customizable and may be different based on your configuration.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338123-Assigning-Additional-Staff-and-Contacts-to-Cases\">Assigning Additional Staff and Contacts to Cases</a></p>\n","_postman_id":"597ad741-0afe-4c70-8bcf-34f7c58f7562","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Status Changes","item":[{"name":"Change a case status","id":"577ba146-316f-450b-9057-23f211a9ed82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status_change\": {\n        \"casefile_id\": \"<integer>\",\n        \"case_status_id\": \"<integer>\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/status_changes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","status_changes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"8eb01c40-e6a8-4d92-9eab-b5bb7c58b558","name":"Change a case status","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status_change\": {\n        \"casefile_id\": \"<integer>\",\n        \"case_status_id\": \"<integer>\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/status_changes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"casefile_id\": \"3\",\n    \"case_status_id\": \"1\",\n    \"user_id\": \"1\",\n    \"changed_at\": \"2026-02-02 21:31:12\",\n    \"exited_at\": null\n}"}],"_postman_id":"577ba146-316f-450b-9057-23f211a9ed82"}],"id":"a84f3387-a723-4e04-b516-3df590ab69f3","description":"<p>Case status changes track the date and time a case progressed to the next milestone in the <a href=\"https://support.trackops.com/hc/en-us/articles/36944946614157-Managing-Workflows\">case workflow</a>.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338263-Changing-the-Status-of-a-Case\">Changing the Status of a Case</a></p>\n","_postman_id":"a84f3387-a723-4e04-b516-3df590ab69f3","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Get a case","id":"bde586bc-c0da-4f60-84a4-36a5c9a0b9d9","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"protocolVersion":"auto"},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/cases/:case_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases",":case_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_id"}]}},"response":[{"id":"75e57b94-4f5a-4004-9ee5-b4092bb61ed8","name":"Get a case","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":{"raw":"/api/v1/cases/:case_id","host":["/api/v1"],"path":["cases",":case_id"],"variable":[{"key":"case_id","value":"<integer>","description":"ID of the case"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"series_number\": \"1\",\n    \"case_type_tag\": \"WC\",\n    \"series_instance\": \"1\",\n    \"created_on\": \"2026-02-02\",\n    \"due_on\": \"2026-02-09\",\n    \"reference_value_1\": \"placeat voluptates quis\",\n    \"reference_value_2\": \"ut non sit\",\n    \"reference_value_3\": \"nulla quis vero\",\n    \"case_country\": \"US\",\n    \"case_state\": \"CO\",\n    \"case_location\": \"Elveraburgh\",\n    \"budget_money\": \"1000.00\",\n    \"budget_hours\": \"24.00\",\n    \"expense_total\": \"250.00\",\n    \"expense_hour_total\": \"5.00\",\n    \"expense_budget_hour_total\": \"5.00\",\n    \"invoice_estimate\": \"385.00\",\n    \"invoice_total\": \"0.00\",\n    \"admin_notes\": \"Neque dolorem culpa laudantium aut ea sit qui.\",\n    \"notes\": \"Delectus culpa qui. Et blanditiis alias non. Temporibus dolores blanditiis dolores delectus fugiat occaecati dolores consectetur totam. Laboriosam dolorem sint eum exercitationem molestias. Qui sint similique autem rerum et ad dolore.\",\n    \"scheduling_notes\": \"Est soluta natus saepe non.\",\n    \"is_request\": false,\n    \"last_status_change_at\": \"2026-02-02 21:31:12\",\n    \"referral_source_id\": null,\n    \"company_location_id\": \"2\",\n    \"workflow_id\": \"1\",\n    \"created_at\": \"2026-02-02 20:49:46\",\n    \"opened_at\": null,\n    \"completed_at\": null,\n    \"closed_at\": null,\n    \"updated_at\": \"2026-02-02 21:31:12\",\n    \"last_update_at\": \"2026-02-02 21:25:12\",\n    \"rating_average\": null,\n    \"case_number\": \"00001WC-01\",\n    \"case_or_request_number\": \"00001WC-01\",\n    \"route_prefix\": \"case\",\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"account_code\": \"\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"account_code\": null,\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"CaseType\": {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\",\n        \"reference_id\": \"\"\n    },\n    \"CaseRegion\": {\n        \"id\": \"1\",\n        \"name\": \"Local\",\n        \"reference_id\": \"local\"\n    },\n    \"CaseStatus\": {\n        \"id\": \"1\",\n        \"name\": \"New\",\n        \"case_status_category\": \"1\",\n        \"is_readonly\": false\n    },\n    \"PrimaryContact\": {\n        \"id\": \"2\",\n        \"first_name\": \"Sample\",\n        \"last_name\": \"Contact\",\n        \"email\": null,\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_office\": \"\",\n        \"account_code\": null,\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\"\n    },\n    \"PrimarySubject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"PrimaryInvestigator\": {\n        \"id\": \"3\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"phone_home\": \"555-555-5557\",\n        \"phone_mobile\": \"555-555-5556\",\n        \"phone_office\": \"555-555-5555\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"PrimaryManager\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_office\": \"\",\n        \"account_code\": \"\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"PrimarySalesperson\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_office\": \"\",\n        \"account_code\": \"\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"CaseFlags\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Rush\",\n            \"reference_id\": \"rush\"\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Suspected Fraud\",\n            \"reference_id\": \"fraud\"\n        }\n    ],\n    \"CaseServices\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\",\n            \"reference_id\": null\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Background Check\",\n            \"reference_id\": null\n        }\n    ],\n    \"CaseFieldGroup\": {\n        \"61\": {\n            \"casefile_id\": \"3\",\n            \"field_id\": \"61\",\n            \"case_field_rank\": \"1\",\n            \"value\": \"Hill Valley University\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"61\",\n                \"name\": \"Insured\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"bde586bc-c0da-4f60-84a4-36a5c9a0b9d9"},{"name":"List cases","id":"705bad26-0e6e-4732-ac10-12b8ed9f6a9d","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"protocolVersion":"auto"},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/cases","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"394383df-4e41-4a67-9e59-0a1b2ff74230","name":"List cases","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/cases"},"status":"OK","code":200,"_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\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-09\",\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\",\n        \"case_country\": \"US\",\n        \"case_state\": \"CO\",\n        \"case_location\": \"Elveraburgh\",\n        \"budget_money\": \"1000.00\",\n        \"budget_hours\": \"24.00\",\n        \"expense_total\": \"250.00\",\n        \"expense_hour_total\": \"5.00\",\n        \"expense_budget_hour_total\": \"5.00\",\n        \"invoice_estimate\": \"385.00\",\n        \"invoice_total\": \"0.00\",\n        \"admin_notes\": \"Neque dolorem culpa laudantium aut ea sit qui.\",\n        \"notes\": \"Delectus culpa qui. Et blanditiis alias non. Temporibus dolores blanditiis dolores delectus fugiat occaecati dolores consectetur totam. Laboriosam dolorem sint eum exercitationem molestias. Qui sint similique autem rerum et ad dolore.\",\n        \"scheduling_notes\": \"Est soluta natus saepe non.\",\n        \"is_request\": false,\n        \"last_status_change_at\": \"2026-02-02 21:31:12\",\n        \"referral_source_id\": null,\n        \"company_location_id\": \"2\",\n        \"workflow_id\": \"1\",\n        \"created_at\": \"2026-02-02 20:49:46\",\n        \"opened_at\": null,\n        \"completed_at\": null,\n        \"closed_at\": null,\n        \"updated_at\": \"2026-02-02 21:31:12\",\n        \"last_update_at\": \"2026-02-02 21:25:12\",\n        \"rating_average\": null,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"account_code\": \"\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"account_code\": null,\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"CaseType\": {\n            \"id\": \"1\",\n            \"name\": \"Workers' Compensation\",\n            \"reference_id\": \"\"\n        },\n        \"CaseRegion\": {\n            \"id\": \"1\",\n            \"name\": \"Local\",\n            \"reference_id\": \"local\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"1\",\n            \"name\": \"New\",\n            \"case_status_category\": \"1\",\n            \"is_readonly\": false\n        },\n        \"PrimaryContact\": {\n            \"id\": \"2\",\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": null,\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"PrimarySubject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"PrimaryInvestigator\": {\n            \"id\": \"3\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"phone_home\": \"555-555-5557\",\n            \"phone_mobile\": \"555-555-5556\",\n            \"phone_office\": \"555-555-5555\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"PrimaryManager\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": \"\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"PrimarySalesperson\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": \"\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"CaseFlags\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Rush\",\n                \"reference_id\": \"rush\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Suspected Fraud\",\n                \"reference_id\": \"fraud\"\n            }\n        ],\n        \"CaseServices\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Surveillance\",\n                \"reference_id\": null\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Background Check\",\n                \"reference_id\": null\n            }\n        ],\n        \"CaseFieldGroup\": {\n            \"61\": {\n                \"casefile_id\": \"3\",\n                \"field_id\": \"61\",\n                \"case_field_rank\": \"1\",\n                \"value\": \"Hill Valley University\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"61\",\n                    \"name\": \"Insured\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"1\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-09\",\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\",\n        \"case_country\": \"US\",\n        \"case_state\": \"CO\",\n        \"case_location\": \"Elveraburgh\",\n        \"budget_money\": \"1000.00\",\n        \"budget_hours\": \"24.00\",\n        \"expense_total\": \"0.00\",\n        \"expense_hour_total\": \"0.00\",\n        \"expense_budget_hour_total\": \"0.00\",\n        \"invoice_estimate\": \"0.00\",\n        \"invoice_total\": \"0.00\",\n        \"admin_notes\": \"Neque dolorem culpa laudantium aut ea sit qui.\",\n        \"notes\": \"Delectus culpa qui. Et blanditiis alias non. Temporibus dolores blanditiis dolores delectus fugiat occaecati dolores consectetur totam. Laboriosam dolorem sint eum exercitationem molestias. Qui sint similique autem rerum et ad dolore.\",\n        \"scheduling_notes\": \"Est soluta natus saepe non.\",\n        \"is_request\": true,\n        \"last_status_change_at\": \"2026-02-02 20:28:46\",\n        \"referral_source_id\": \"1\",\n        \"company_location_id\": \"2\",\n        \"workflow_id\": \"1\",\n        \"created_at\": \"2026-02-02 20:28:46\",\n        \"opened_at\": null,\n        \"completed_at\": null,\n        \"closed_at\": null,\n        \"updated_at\": \"2026-02-02 20:48:57\",\n        \"last_update_at\": \"2026-02-02 20:28:46\",\n        \"rating_average\": null,\n        \"request_number\": \"REQ-00001\",\n        \"case_or_request_number\": \"REQ-00001\",\n        \"route_prefix\": \"case_request\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"account_code\": \"\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"account_code\": null,\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"CaseType\": {\n            \"id\": \"1\",\n            \"name\": \"Workers' Compensation\",\n            \"reference_id\": \"\"\n        },\n        \"CaseRegion\": {\n            \"id\": \"1\",\n            \"name\": \"Local\",\n            \"reference_id\": \"local\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"1\",\n            \"name\": \"New\",\n            \"case_status_category\": \"1\",\n            \"is_readonly\": false\n        },\n        \"PrimaryContact\": {\n            \"id\": \"2\",\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": null,\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"PrimarySubject\": {\n            \"id\": \"1\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"PrimaryInvestigator\": null,\n        \"PrimaryManager\": null,\n        \"PrimarySalesperson\": null,\n        \"CaseFlags\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Rush\",\n                \"reference_id\": \"rush\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Suspected Fraud\",\n                \"reference_id\": \"fraud\"\n            }\n        ],\n        \"CaseServices\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Surveillance\",\n                \"reference_id\": null\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Background Check\",\n                \"reference_id\": null\n            }\n        ],\n        \"CaseFieldGroup\": []\n    }\n]"}],"_postman_id":"705bad26-0e6e-4732-ac10-12b8ed9f6a9d"},{"name":"Search cases","id":"da3fe1b4-810a-4dc2-9e85-e7cb7df34cfc","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"protocolVersion":"auto"},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/cases?id=<integer>&case_number=<string>&client=<integer>&client_location=<integer>&case_status=<integer>&primary_case_manager=<integer>&primary_contact=<integer>&primary_investigator=<integer>&primary_salesperson=<integer>&primary_subject=<integer>&reference_value_1=<string>&reference_value_2=<string>&reference_value_3=<string>&series_number=<integer>&series_instance=<integer>&workflow=<integer>&created_from=<datestamp>&created_to=<datestamp>&created_from_system=<datestamp>&created_to_system=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&expand_field_values=<boolean>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Formatted case  number</p>\n","type":"text/plain"},"key":"case_number","value":"<string>"},{"description":{"content":"<p>ID of the client associated with the case</p>\n","type":"text/plain"},"key":"client","value":"<integer>"},{"description":{"content":"<p>ID of the client location associated with the case</p>\n","type":"text/plain"},"key":"client_location","value":"<integer>"},{"description":{"content":"<p>ID of the case status associated with the case</p>\n","type":"text/plain"},"key":"case_status","value":"<integer>"},{"description":{"content":"<p>ID of the primary case manager associated with the case</p>\n","type":"text/plain"},"key":"primary_case_manager","value":"<integer>"},{"description":{"content":"<p>ID of the primary client contact associated with the case</p>\n","type":"text/plain"},"key":"primary_contact","value":"<integer>"},{"description":{"content":"<p>ID of the primary investigator associated with the case</p>\n","type":"text/plain"},"key":"primary_investigator","value":"<integer>"},{"description":{"content":"<p>ID of the primary salesperson associated with the case</p>\n","type":"text/plain"},"key":"primary_salesperson","value":"<integer>"},{"description":{"content":"<p>ID of the primary subject associated with the case</p>\n","type":"text/plain"},"key":"primary_subject","value":"<integer>"},{"description":{"content":"<p>Reference value 1</p>\n","type":"text/plain"},"key":"reference_value_1","value":"<string>"},{"description":{"content":"<p>Reference value 2</p>\n","type":"text/plain"},"key":"reference_value_2","value":"<string>"},{"description":{"content":"<p>Reference value 3</p>\n","type":"text/plain"},"key":"reference_value_3","value":"<string>"},{"description":{"content":"<p>Numeric case series number</p>\n","type":"text/plain"},"key":"series_number","value":"<integer>"},{"description":{"content":"<p>Numeric case series instance</p>\n","type":"text/plain"},"key":"series_instance","value":"<integer>"},{"description":{"content":"<p>ID of the workflow associated with the case</p>\n","type":"text/plain"},"key":"workflow","value":"<integer>"},{"description":{"content":"<p>ISO date the case was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the case was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the case was created \"from\" (immutable)</p>\n","type":"text/plain"},"key":"created_from_system","value":"<datestamp>"},{"description":{"content":"<p>ISO date the case was created \"from\" (immutable)</p>\n","type":"text/plain"},"key":"created_to_system","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the case was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the case was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Expand custom field objects</p>\n","type":"text/plain"},"key":"expand_field_values","value":"<boolean>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"ef3840b2-6aab-4741-8f80-20b869c51cb8","name":"Search cases","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/cases?id=<integer>&case_number=<string>&client=<integer>&client_location=<integer>&case_status=<integer>&primary_case_manager=<integer>&primary_contact=<integer>&primary_investigator=<integer>&primary_salesperson=<integer>&primary_subject=<integer>&reference_value_1=<string>&reference_value_2=<string>&reference_value_3=<string>&series_number=<integer>&series_instance=<integer>&workflow=<integer>&created_from=<datestamp>&created_to=<datestamp>&created_from_system=<datestamp>&created_to_system=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&expand_field_values=<boolean>&page=<integer>","host":["/api/v1"],"path":["cases"],"query":[{"key":"id","value":"<integer>","description":"ID of the case"},{"key":"case_number","value":"<string>","description":"Formatted case  number"},{"key":"client","value":"<integer>","description":"ID of the client associated with the case"},{"key":"client_location","value":"<integer>","description":"ID of the client location associated with the case"},{"key":"case_status","value":"<integer>","description":"ID of the case status associated with the case"},{"key":"primary_case_manager","value":"<integer>","description":"ID of the primary case manager associated with the case"},{"key":"primary_contact","value":"<integer>","description":"ID of the primary client contact associated with the case"},{"key":"primary_investigator","value":"<integer>","description":"ID of the primary investigator associated with the case"},{"key":"primary_salesperson","value":"<integer>","description":"ID of the primary salesperson associated with the case"},{"key":"primary_subject","value":"<integer>","description":"ID of the primary subject associated with the case"},{"key":"reference_value_1","value":"<string>","description":"Reference value 1"},{"key":"reference_value_2","value":"<string>","description":"Reference value 2"},{"key":"reference_value_3","value":"<string>","description":"Reference value 3"},{"key":"series_number","value":"<integer>","description":"Numeric case series number"},{"key":"series_instance","value":"<integer>","description":"Numeric case series instance"},{"key":"workflow","value":"<integer>","description":"ID of the workflow associated with the case"},{"key":"created_from","value":"<datestamp>","description":"ISO date the case was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the case was created \"to\""},{"key":"created_from_system","value":"<datestamp>","description":"ISO date the case was created \"from\" (immutable)"},{"key":"created_to_system","value":"<datestamp>","description":"ISO date the case was created \"from\" (immutable)"},{"key":"from","value":"<datestamp>","description":"Alias of created_from"},{"key":"to","value":"<datestamp>","description":"Alias of created_to"},{"key":"updated_from","value":"<datestamp>","description":"ISO date the case was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the case was updated \"to\""},{"key":"expand_field_values","value":"<boolean>","description":"Expand custom field objects"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_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\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-09\",\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\",\n        \"case_country\": \"US\",\n        \"case_state\": \"CO\",\n        \"case_location\": \"Elveraburgh\",\n        \"budget_money\": \"1000.00\",\n        \"budget_hours\": \"24.00\",\n        \"expense_total\": \"250.00\",\n        \"expense_hour_total\": \"5.00\",\n        \"expense_budget_hour_total\": \"5.00\",\n        \"invoice_estimate\": \"385.00\",\n        \"invoice_total\": \"0.00\",\n        \"admin_notes\": \"Neque dolorem culpa laudantium aut ea sit qui.\",\n        \"notes\": \"Delectus culpa qui. Et blanditiis alias non. Temporibus dolores blanditiis dolores delectus fugiat occaecati dolores consectetur totam. Laboriosam dolorem sint eum exercitationem molestias. Qui sint similique autem rerum et ad dolore.\",\n        \"scheduling_notes\": \"Est soluta natus saepe non.\",\n        \"is_request\": false,\n        \"last_status_change_at\": \"2026-02-02 21:31:12\",\n        \"referral_source_id\": null,\n        \"company_location_id\": \"2\",\n        \"workflow_id\": \"1\",\n        \"created_at\": \"2026-02-02 20:49:46\",\n        \"opened_at\": null,\n        \"completed_at\": null,\n        \"closed_at\": null,\n        \"updated_at\": \"2026-02-02 21:31:12\",\n        \"last_update_at\": \"2026-02-02 21:25:12\",\n        \"rating_average\": null,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"account_code\": \"\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"account_code\": null,\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"CaseType\": {\n            \"id\": \"1\",\n            \"name\": \"Workers' Compensation\",\n            \"reference_id\": \"\"\n        },\n        \"CaseRegion\": {\n            \"id\": \"1\",\n            \"name\": \"Local\",\n            \"reference_id\": \"local\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"1\",\n            \"name\": \"New\",\n            \"case_status_category\": \"1\",\n            \"is_readonly\": false\n        },\n        \"PrimaryContact\": {\n            \"id\": \"2\",\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": null,\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"PrimarySubject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"PrimaryInvestigator\": {\n            \"id\": \"3\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"phone_home\": \"555-555-5557\",\n            \"phone_mobile\": \"555-555-5556\",\n            \"phone_office\": \"555-555-5555\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"PrimaryManager\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": \"\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"PrimarySalesperson\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": \"\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"CaseFlags\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Rush\",\n                \"reference_id\": \"rush\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Suspected Fraud\",\n                \"reference_id\": \"fraud\"\n            }\n        ],\n        \"CaseServices\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Surveillance\",\n                \"reference_id\": null\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Background Check\",\n                \"reference_id\": null\n            }\n        ],\n        \"CaseFieldGroup\": {\n            \"61\": {\n                \"casefile_id\": \"3\",\n                \"field_id\": \"61\",\n                \"case_field_rank\": \"1\",\n                \"value\": \"Hill Valley University\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"61\",\n                    \"name\": \"Insured\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"1\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-09\",\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\",\n        \"case_country\": \"US\",\n        \"case_state\": \"CO\",\n        \"case_location\": \"Elveraburgh\",\n        \"budget_money\": \"1000.00\",\n        \"budget_hours\": \"24.00\",\n        \"expense_total\": \"0.00\",\n        \"expense_hour_total\": \"0.00\",\n        \"expense_budget_hour_total\": \"0.00\",\n        \"invoice_estimate\": \"0.00\",\n        \"invoice_total\": \"0.00\",\n        \"admin_notes\": \"Neque dolorem culpa laudantium aut ea sit qui.\",\n        \"notes\": \"Delectus culpa qui. Et blanditiis alias non. Temporibus dolores blanditiis dolores delectus fugiat occaecati dolores consectetur totam. Laboriosam dolorem sint eum exercitationem molestias. Qui sint similique autem rerum et ad dolore.\",\n        \"scheduling_notes\": \"Est soluta natus saepe non.\",\n        \"is_request\": true,\n        \"last_status_change_at\": \"2026-02-02 20:28:46\",\n        \"referral_source_id\": \"1\",\n        \"company_location_id\": \"2\",\n        \"workflow_id\": \"1\",\n        \"created_at\": \"2026-02-02 20:28:46\",\n        \"opened_at\": null,\n        \"completed_at\": null,\n        \"closed_at\": null,\n        \"updated_at\": \"2026-02-02 20:48:57\",\n        \"last_update_at\": \"2026-02-02 20:28:46\",\n        \"rating_average\": null,\n        \"request_number\": \"REQ-00001\",\n        \"case_or_request_number\": \"REQ-00001\",\n        \"route_prefix\": \"case_request\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"account_code\": \"\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"account_code\": null,\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"CaseType\": {\n            \"id\": \"1\",\n            \"name\": \"Workers' Compensation\",\n            \"reference_id\": \"\"\n        },\n        \"CaseRegion\": {\n            \"id\": \"1\",\n            \"name\": \"Local\",\n            \"reference_id\": \"local\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"1\",\n            \"name\": \"New\",\n            \"case_status_category\": \"1\",\n            \"is_readonly\": false\n        },\n        \"PrimaryContact\": {\n            \"id\": \"2\",\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": null,\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"PrimarySubject\": {\n            \"id\": \"1\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"PrimaryInvestigator\": null,\n        \"PrimaryManager\": null,\n        \"PrimarySalesperson\": null,\n        \"CaseFlags\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Rush\",\n                \"reference_id\": \"rush\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Suspected Fraud\",\n                \"reference_id\": \"fraud\"\n            }\n        ],\n        \"CaseServices\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Surveillance\",\n                \"reference_id\": null\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Background Check\",\n                \"reference_id\": null\n            }\n        ],\n        \"CaseFieldGroup\": []\n    }\n]"}],"_postman_id":"da3fe1b4-810a-4dc2-9e85-e7cb7df34cfc"},{"name":"Create a case","id":"e74d81a0-b3a9-41cd-9afc-6c805ac001f5","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"protocolVersion":"auto"},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"casefile\": {\n      \"case_type_id\": \"<integer>\",\n      \"client_id\": \"<integer>\",\n      \"primary_contact_id\": \"<integer>\",\n      \"case_region_id\": \"<integer>\",\n      \"created_on\": \"<datestamp>\",\n      \"company_location_id\": \"<integer>\",\n      \"reference_value_1\": \"sit officia quaerat\",\n      \"reference_value_2\": \"nihil iusto asperiores\",\n      \"reference_value_3\": \"veritatis labore in\",\n      \"referral_source_id\": \"<integer>\",\n      \"due_on\": \"<datestamp>\",\n      \"case_country\": \"<country-code>\",\n      \"case_state\": \"<string> | <state-code>\",\n      \"case_location\": \"West Lindaside\",\n      \"budget_money\": \"72\",\n      \"budget_hours\": \"820\",\n      \"notes\": \"Eaque ipsum tempora perspiciatis qui. Nihil voluptas amet voluptas sunt neque. Ullam corrupti vitae explicabo maiores inventore ad voluptatem cumque. Cupiditate ex aut laudantium perferendis id qui.\",\n      \"scheduling_notes\": \"Repellendus ab sapiente minus.}\",\n      \"admin_notes\": \"Voluptatem sapiente repellat libero est dolor sunt cum quod et.\",\n      \"case_services_list\": [<integer>,<integer>],\n      \"case_flags_list\": [<integer>,<integer>],\n      \"subjects\": [\n        {\n            \"subject_type_id\": \"<integer>\",\n            \"is_primary\": true,\n            \"is_pinned\": true,\n            \"custom_fields\": [\n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"first_name\": \"Elizabeth\",\n                    \"middle_name\": \"Dashawn\",\n                    \"last_name\": \"Kassulke\"\n                    }\n                },     \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Aut aut ut a consequuntur totam.\"\n                },      \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Nulla unde aut occaecati sit et praesentium sint consequatur nemo. Adipisci quis sint deserunt similique debitis.\"\n                },\n                {\n                    \"id\": \"<integer>\", \n                    \"value\": \"<datestamp>\"\n                },              \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"address_1\": \"0574 Asha Cliffs\",\n                    \"address_2\": \"Apt #561\",\n                    \"address_3\": \"\",\n                    \"city\": \"North Chloebury\",\n                    \"state\": \"<string>\",\n                    \"zip\": \"<string>\",\n                    \"country\": \"<country-code>\"\n                    }\n                }\n            ]\n        }\n  \t]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/cases","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c1b065ec-7243-410b-9697-d1ae3b586238","name":"Create a case","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"casefile\": {\n      \"case_type_id\": \"<integer>\",\n      \"client_id\": \"<integer>\",\n      \"primary_contact_id\": \"<integer>\",\n      \"case_region_id\": \"<integer>\",\n      \"created_on\": \"<datestamp>\",\n      \"company_location_id\": \"<integer>\",\n      \"reference_value_1\": \"est odio inventore\",\n      \"reference_value_2\": \"rerum et qui\",\n      \"reference_value_3\": \"odio laboriosam dolorem\",\n      \"referral_source_id\": \"<integer>\",\n      \"due_on\": \"<datestamp>\",\n      \"case_country\": \"<country-code>\",\n      \"case_state\": \"<string> | <state-code>\",\n      \"case_location\": \"New Bria\",\n      \"budget_money\": \"739\",\n      \"budget_hours\": \"644\",\n      \"notes\": \"Tempora similique odit quis dolorem cupiditate. Repellendus explicabo sunt. Et et vel autem sit eos aut. Dignissimos tempora non vero voluptas ipsa. Nostrum provident accusantium quas est ut. Placeat modi illo cumque illum a dolore.\",\n      \"scheduling_notes\": \"Non ut fugit possimus modi cum.}\",\n      \"admin_notes\": \"Minima vel pariatur.\",\n      \"case_services_list\": [<integer>,<integer>],\n      \"case_flags_list\": [<integer>,<integer>],\n      \"subjects\": [\n        {\n            \"subject_type_id\": \"<integer>\",\n            \"is_primary\": true,\n            \"is_pinned\": true,\n            \"custom_fields\": [\n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"first_name\": \"Jarret\",\n                    \"middle_name\": \"Aubrey\",\n                    \"last_name\": \"Hartmann\"\n                    }\n                },     \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Quia libero cum placeat eaque.\"\n                },      \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Velit harum nulla eius recusandae enim tenetur. Optio rem et labore id. Dolore enim sequi velit dolores eius facere voluptas amet. Iste officiis totam quaerat fuga numquam fuga hic occaecati. Sit cum eos corporis adipisci soluta quo. Ullam et doloremque laborum molestiae blanditiis.\"\n                },\n                {\n                    \"id\": \"<integer>\", \n                    \"value\": \"<datestamp>\"\n                },              \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"address_1\": \"451 Champlin Prairie\",\n                    \"address_2\": \"Apt #291\",\n                    \"address_3\": \"\",\n                    \"city\": \"Tavaresview\",\n                    \"state\": \"<string>\",\n                    \"zip\": \"<string>\",\n                    \"country\": \"<country-code>\"\n                    }\n                }\n            ]\n        }\n  \t]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/cases"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"4\",\n    \"series_number\": \"2\",\n    \"case_type_tag\": \"WC\",\n    \"series_instance\": \"1\",\n    \"created_on\": \"2026-02-02\",\n    \"due_on\": \"2026-02-09\",\n    \"reference_value_1\": \"eum quasi aliquam\",\n    \"reference_value_2\": \"suscipit sed sequi\",\n    \"reference_value_3\": \"non non laborum\",\n    \"case_country\": \"US\",\n    \"case_state\": \"CO\",\n    \"case_location\": \"New Lacy\",\n    \"budget_money\": \"415.00\",\n    \"budget_hours\": \"945.00\",\n    \"expense_total\": \"0.00\",\n    \"expense_hour_total\": \"0.00\",\n    \"expense_budget_hour_total\": \"0.00\",\n    \"invoice_estimate\": \"0.00\",\n    \"invoice_total\": \"0.00\",\n    \"admin_notes\": \"Eos voluptates ullam rerum aspernatur.\",\n    \"notes\": \"Unde illum veritatis quis cupiditate consequatur. Eveniet repudiandae possimus repudiandae enim sed est praesentium. Odio reprehenderit aut et reprehenderit laboriosam. Et occaecati amet voluptatem dolores. Accusamus quam at ea neque saepe aut maxime recusandae itaque.\",\n    \"scheduling_notes\": \"Iusto enim ut architecto at cum tempore.}\",\n    \"is_request\": false,\n    \"last_status_change_at\": \"2026-02-02 21:33:48\",\n    \"referral_source_id\": \"1\",\n    \"company_location_id\": \"2\",\n    \"workflow_id\": \"1\",\n    \"created_at\": \"2026-02-02 21:33:48\",\n    \"opened_at\": null,\n    \"completed_at\": null,\n    \"closed_at\": null,\n    \"updated_at\": \"2026-02-02 21:33:48\",\n    \"last_update_at\": \"2026-02-02 21:33:48\",\n    \"rating_average\": null,\n    \"case_number\": \"00002WC-01\",\n    \"case_or_request_number\": \"00002WC-01\",\n    \"route_prefix\": \"case\",\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"account_code\": \"\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"account_code\": null,\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"CaseType\": {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\",\n        \"reference_id\": \"\"\n    },\n    \"CaseRegion\": {\n        \"id\": \"1\",\n        \"name\": \"Local\",\n        \"reference_id\": \"local\"\n    },\n    \"CaseStatus\": {\n        \"id\": \"1\",\n        \"name\": \"New\",\n        \"case_status_category\": \"1\",\n        \"is_readonly\": false\n    },\n    \"PrimaryContact\": {\n        \"id\": \"2\",\n        \"first_name\": \"Sample\",\n        \"last_name\": \"Contact\",\n        \"email\": null,\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_office\": \"\",\n        \"account_code\": null,\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\"\n    },\n    \"PrimarySubject\": {\n        \"id\": \"4\",\n        \"name\": \"Ortiz, Beverly Ford\"\n    },\n    \"PrimaryInvestigator\": null,\n    \"PrimaryManager\": null,\n    \"PrimarySalesperson\": null,\n    \"CaseFlags\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Rush\",\n            \"reference_id\": \"rush\"\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Suspected Fraud\",\n            \"reference_id\": \"fraud\"\n        }\n    ],\n    \"CaseServices\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\",\n            \"reference_id\": null\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Background Check\",\n            \"reference_id\": null\n        }\n    ],\n    \"CaseFieldGroup\": {\n        \"61\": {\n            \"casefile_id\": \"4\",\n            \"field_id\": \"61\",\n            \"case_field_rank\": \"1\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"61\",\n                \"name\": \"Insured\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        }\n    }\n}"},{"id":"293e54ba-8c1f-4125-8cea-a4378e8edf08","name":"Create a case with custom fields","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"casefile\": {\n      \"case_type_id\": \"<integer>\",\n      \"client_id\": \"<integer>\",\n      \"primary_contact_id\": \"<integer>\",\n      \"case_region_id\": \"<integer>\",\n      \"created_on\": \"<datestamp>\",\n      \"company_location_id\": \"<integer>\",\n      \"reference_value_1\": \"suscipit consequatur aspernatur\",\n      \"reference_value_2\": \"iure aut in\",\n      \"reference_value_3\": \"excepturi ad delectus\",\n      \"referral_source_id\": \"<integer>\",\n      \"due_on\": \"<datestamp>\",\n      \"case_country\": \"<country-code>\",\n      \"case_state\": \"<string> | <state-code>\",\n      \"case_location\": \"Port Gracehaven\",\n      \"budget_money\": \"478\",\n      \"budget_hours\": \"299\",\n      \"notes\": \"Aut porro dolorem sunt architecto omnis odio. Quisquam explicabo facilis dolor modi blanditiis maxime libero officiis consectetur. Fugit rerum labore et consequatur cumque accusamus. Exercitationem minus eum quae itaque consequatur harum neque sed. Aut ab veniam non odit. Quis non sit alias id.\",\n      \"scheduling_notes\": \"Dolores adipisci amet dolorem quia.}\",\n      \"admin_notes\": \"Dignissimos ut quas ut dignissimos dicta.\",\n      \"case_services_list\": [<integer>,<integer>],\n      \"case_flags_list\": [<integer>,<integer>],\n      \"custom_fields\": [\n    \t{\n    \t\t\"id\": \"<integer>\",\n    \t\t\"value\": \"laudantium exercitationem nisi\"\n    \t}\n  \t  ],\n      \"subjects\": [\n        {\n            \"subject_type_id\": \"<integer>\",\n            \"is_primary\": true,\n            \"is_pinned\": true,\n            \"custom_fields\": [\n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"first_name\": \"Cornell\",\n                    \"middle_name\": \"Liam\",\n                    \"last_name\": \"Hand\"\n                    }\n                },     \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Aut minima maiores quam est fugiat dolorem in deserunt.\"\n                },      \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Repellat aspernatur necessitatibus corrupti ab ipsam sint quasi. Eius culpa inventore. Enim impedit voluptatibus quibusdam laudantium sunt libero eius asperiores. Vel alias autem. Repellat vel officia deserunt aliquid sint excepturi quo quos. Similique dolores et autem voluptates eligendi ab.\"\n                },\n                {\n                    \"id\": \"<integer>\", \n                    \"value\": \"<datestamp>\"\n                },              \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"address_1\": \"098 Keyon Ridges\",\n                    \"address_2\": \"Apt #904\",\n                    \"address_3\": \"\",\n                    \"city\": \"Mavisville\",\n                    \"state\": \"<string>\",\n                    \"zip\": \"<string>\",\n                    \"country\": \"<country-code>\"\n                    }\n                }\n            ]\n        }\n  \t]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/cases"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5\",\n    \"series_number\": \"3\",\n    \"case_type_tag\": \"WC\",\n    \"series_instance\": \"1\",\n    \"created_on\": \"2026-02-02\",\n    \"due_on\": \"2026-02-09\",\n    \"reference_value_1\": \"tenetur vero quae\",\n    \"reference_value_2\": \"aut earum qui\",\n    \"reference_value_3\": \"est aut laborum\",\n    \"case_country\": \"US\",\n    \"case_state\": \"CO\",\n    \"case_location\": \"East Reanna\",\n    \"budget_money\": \"445.00\",\n    \"budget_hours\": \"191.00\",\n    \"expense_total\": \"0.00\",\n    \"expense_hour_total\": \"0.00\",\n    \"expense_budget_hour_total\": \"0.00\",\n    \"invoice_estimate\": \"0.00\",\n    \"invoice_total\": \"0.00\",\n    \"admin_notes\": \"Fuga voluptate consequatur reprehenderit doloremque.\",\n    \"notes\": \"Non esse alias sit voluptas tenetur. Voluptates quia aperiam. Fugit ut harum distinctio ad doloremque ut commodi ea.\",\n    \"scheduling_notes\": \"Et eos velit maiores dignissimos amet quod.}\",\n    \"is_request\": false,\n    \"last_status_change_at\": \"2026-02-02 21:38:18\",\n    \"referral_source_id\": \"1\",\n    \"company_location_id\": \"2\",\n    \"workflow_id\": \"1\",\n    \"created_at\": \"2026-02-02 21:38:18\",\n    \"opened_at\": null,\n    \"completed_at\": null,\n    \"closed_at\": null,\n    \"updated_at\": \"2026-02-02 21:38:18\",\n    \"last_update_at\": \"2026-02-02 21:38:18\",\n    \"rating_average\": null,\n    \"case_number\": \"00003WC-01\",\n    \"case_or_request_number\": \"00003WC-01\",\n    \"route_prefix\": \"case\",\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"account_code\": \"\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"account_code\": null,\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"CaseType\": {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\",\n        \"reference_id\": \"\"\n    },\n    \"CaseRegion\": {\n        \"id\": \"1\",\n        \"name\": \"Local\",\n        \"reference_id\": \"local\"\n    },\n    \"CaseStatus\": {\n        \"id\": \"1\",\n        \"name\": \"New\",\n        \"case_status_category\": \"1\",\n        \"is_readonly\": false\n    },\n    \"PrimaryContact\": {\n        \"id\": \"2\",\n        \"first_name\": \"Sample\",\n        \"last_name\": \"Contact\",\n        \"email\": null,\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_office\": \"\",\n        \"account_code\": null,\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\"\n    },\n    \"PrimarySubject\": {\n        \"id\": \"5\",\n        \"name\": \"Johns, Arnoldo Ewald\"\n    },\n    \"PrimaryInvestigator\": null,\n    \"PrimaryManager\": null,\n    \"PrimarySalesperson\": null,\n    \"CaseFlags\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Rush\",\n            \"reference_id\": \"rush\"\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Suspected Fraud\",\n            \"reference_id\": \"fraud\"\n        }\n    ],\n    \"CaseServices\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\",\n            \"reference_id\": null\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Background Check\",\n            \"reference_id\": null\n        }\n    ],\n    \"CaseFieldGroup\": {\n        \"61\": {\n            \"casefile_id\": \"5\",\n            \"field_id\": \"61\",\n            \"case_field_rank\": \"1\",\n            \"value\": \"sequi expedita culpa\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"61\",\n                \"name\": \"Insured\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"e74d81a0-b3a9-41cd-9afc-6c805ac001f5"},{"name":"Update a case","id":"00ba831d-9b78-4613-b6b5-9e2455f67227","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"protocolVersion":"auto"},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"casefile\": {\n    \"case_region_id\": \"<integer>\",\n    \"created_on\": \"<datestamp>\",\n    \"company_location_id\": \"<integer>\",\n    \"reference_value_1\": \"labore nobis unde\",\n    \"reference_value_2\": \"soluta repellendus ex\",\n    \"reference_value_3\": \"ut et eum\",\n    \"referral_source_id\": \"<integer>\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"Watsicachester\",\n    \"notes\": \"Maxime rerum nulla doloribus quia consequatur laborum. Nam dolorem amet. Ex ex quaerat architecto nihil eos et velit nisi. Culpa eaque dignissimos odio dicta. Eos dolor odit soluta sit veritatis distinctio sit autem. Voluptatum quo ullam delectus quia iusto distinctio enim sunt.\",\n    \"scheduling_notes\": \"Qui non incidunt ut modi maiores tenetur totam.}\",\n    \"admin_notes\": \"Voluptatem corrupti ut quia quibusdam repellat.\",\n    \"case_services_list\": [<integer>,<integer>],\n    \"case_flags_list\": [<integer>,<integer>]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/cases/:case_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases",":case_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_id"}]}},"response":[{"id":"ef46dd7b-0bfe-4dbe-93fa-6c06398ad788","name":"Update a case","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"casefile\": {\n    \"case_region_id\": \"<integer>\",\n    \"created_on\": \"<datestamp>\",\n    \"company_location_id\": \"<integer>\",\n    \"reference_value_1\": \"est ea natus\",\n    \"reference_value_2\": \"beatae at eligendi\",\n    \"reference_value_3\": \"quae sit recusandae\",\n    \"referral_source_id\": \"<integer>\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"East Madisyn\",\n    \"notes\": \"Ut ut sequi quia quo. Officiis et ipsam consequatur dolorem. Sint rerum inventore vel dolores magni nobis voluptatem.\",\n    \"scheduling_notes\": \"Quo est sed sint explicabo vel est.}\",\n    \"admin_notes\": \"Et expedita deserunt saepe quia non aperiam accusantium dignissimos.\",\n    \"case_services_list\": [<integer>,<integer>],\n    \"case_flags_list\": [<integer>,<integer>]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/cases/:case_id","host":["/api/v1"],"path":["cases",":case_id"],"variable":[{"key":"case_id","value":"<integer>","description":"ID of the case"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"series_number\": \"1\",\n    \"case_type_tag\": \"WC\",\n    \"series_instance\": \"1\",\n    \"created_on\": \"2026-02-03\",\n    \"due_on\": \"2026-02-10\",\n    \"reference_value_1\": \"natus voluptatem dolorem\",\n    \"reference_value_2\": \"blanditiis ea ea\",\n    \"reference_value_3\": \"beatae nam eligendi\",\n    \"case_country\": \"US\",\n    \"case_state\": \"CO\",\n    \"case_location\": \"Paucekmouth\",\n    \"budget_money\": \"1000.00\",\n    \"budget_hours\": \"24.00\",\n    \"expense_total\": \"1154933.01\",\n    \"expense_hour_total\": \"1424.00\",\n    \"expense_budget_hour_total\": \"1424.00\",\n    \"invoice_estimate\": \"107366.00\",\n    \"invoice_total\": \"537.50\",\n    \"admin_notes\": \"Ipsum ullam ab.\",\n    \"notes\": \"Vel hic impedit eos voluptatem qui earum. Voluptates occaecati officiis quaerat dolorem deleniti. Et molestiae quia assumenda sit libero dignissimos tenetur et. Consequatur officia voluptates asperiores tempore nihil voluptatem. Est laboriosam voluptatem et qui voluptatibus ipsum. Sunt non porro velit in quia dolores tempore ut laudantium.\",\n    \"scheduling_notes\": \"Nesciunt aut sit minima non nesciunt.}\",\n    \"is_request\": false,\n    \"last_status_change_at\": \"2026-02-03 16:11:02\",\n    \"referral_source_id\": \"1\",\n    \"company_location_id\": \"2\",\n    \"workflow_id\": \"1\",\n    \"created_at\": \"2026-02-02 20:49:46\",\n    \"opened_at\": \"2026-02-03 16:10:30\",\n    \"completed_at\": \"2026-02-03 16:10:30\",\n    \"closed_at\": \"2026-02-03 16:11:02\",\n    \"updated_at\": \"2026-02-03 18:22:03\",\n    \"last_update_at\": \"2026-02-02 21:25:12\",\n    \"rating_average\": null,\n    \"case_number\": \"00001WC-01\",\n    \"case_or_request_number\": \"00001WC-01\",\n    \"route_prefix\": \"case\",\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"account_code\": \"\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Homenick Group Location\",\n            \"account_code\": \"SAMPLE\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"CaseType\": {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\",\n        \"reference_id\": \"\"\n    },\n    \"CaseRegion\": {\n        \"id\": \"1\",\n        \"name\": \"Local\",\n        \"reference_id\": \"local\"\n    },\n    \"CaseStatus\": {\n        \"id\": \"7\",\n        \"name\": \"Closed\",\n        \"case_status_category\": \"4\",\n        \"is_readonly\": false\n    },\n    \"PrimaryContact\": {\n        \"id\": \"2\",\n        \"first_name\": \"Virginia\",\n        \"last_name\": \"Kuhn\",\n        \"email\": \"Wallace61@example.net\",\n        \"phone_home\": \"896-830-8304\",\n        \"phone_mobile\": \"206-795-4505\",\n        \"phone_office\": \"223-637-5881 99-636-381-8566\",\n        \"account_code\": \"velit-soluta-ut\",\n        \"name\": \"Kuhn, Virginia\",\n        \"proper_name\": \"Virginia Kuhn\"\n    },\n    \"PrimarySubject\": {\n        \"id\": \"6\",\n        \"name\": \"Terry, Mona Lauretta\"\n    },\n    \"PrimaryInvestigator\": {\n        \"id\": \"3\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"phone_home\": \"555-555-5557\",\n        \"phone_mobile\": \"555-555-5556\",\n        \"phone_office\": \"555-555-5555\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"PrimaryManager\": {\n        \"id\": \"1\",\n        \"first_name\": \"Jefferey\",\n        \"last_name\": \"Lebsack\",\n        \"email\": \"Mikel_Spinka@example.com\",\n        \"phone_home\": \"271-735-9609\",\n        \"phone_mobile\": \"775-495-5387\",\n        \"phone_office\": \"546-505-4894 x952\",\n        \"account_code\": \"nobis-quibusdam-omnis\",\n        \"name\": \"Lebsack, Jefferey\",\n        \"proper_name\": \"Jefferey Lebsack\"\n    },\n    \"PrimarySalesperson\": {\n        \"id\": \"1\",\n        \"first_name\": \"Jefferey\",\n        \"last_name\": \"Lebsack\",\n        \"email\": \"Mikel_Spinka@example.com\",\n        \"phone_home\": \"271-735-9609\",\n        \"phone_mobile\": \"775-495-5387\",\n        \"phone_office\": \"546-505-4894 x952\",\n        \"account_code\": \"nobis-quibusdam-omnis\",\n        \"name\": \"Lebsack, Jefferey\",\n        \"proper_name\": \"Jefferey Lebsack\"\n    },\n    \"CaseFlags\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Rush\",\n            \"reference_id\": \"rush\"\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Suspected Fraud\",\n            \"reference_id\": \"fraud\"\n        }\n    ],\n    \"CaseServices\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\",\n            \"reference_id\": null\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Background Check\",\n            \"reference_id\": null\n        }\n    ],\n    \"CaseFieldGroup\": {\n        \"61\": {\n            \"casefile_id\": \"3\",\n            \"field_id\": \"61\",\n            \"case_field_rank\": \"1\",\n            \"value\": \"Hill Valley University\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"61\",\n                \"name\": \"Insured\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"00ba831d-9b78-4613-b6b5-9e2455f67227"}],"id":"afd1c3ac-adb1-40d2-83e3-5216fe8c5f4b","description":"<p>Cases are the core objects that store the majority of data throughout the system. Other objects, such as subjects, cannot exist on their own without a case.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338303-How-to-Create-a-New-Case\">How to Create a New Case</a></p>\n","_postman_id":"afd1c3ac-adb1-40d2-83e3-5216fe8c5f4b","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Client Contacts","item":[{"name":"Client Contact Notes","item":[{"name":"List client contact notes","id":"19a4dd77-c763-41b2-9dc8-1bd72be15356","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/contact/notes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contact","notes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"053b610c-16d7-4ba3-9f20-95d39ef1a748","name":"List client contact notes","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/contact/notes"},"status":"OK","code":200,"_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\": \"1\",\n        \"body\": \"- Reviewed contract with client.\",\n        \"note_date\": \"2026-02-02\",\n        \"is_pinned\": true,\n        \"created_at\": \"2026-02-02 21:40:05\",\n        \"updated_at\": \"2026-02-02 21:40:05\",\n        \"User\": {\n            \"id\": \"2\",\n            \"account_code\": null,\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\",\n            \"Location\": {\n                \"id\": \"4\",\n                \"name\": \"Main Location\",\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"AccessGroup\": {\n            \"id\": \"2\",\n            \"name\": \"Public\"\n        },\n        \"Author\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"url\": null\n    }\n]"}],"_postman_id":"19a4dd77-c763-41b2-9dc8-1bd72be15356"},{"name":"Get a client contact note","id":"933d5bb2-39aa-4231-bbb8-15a61a617dad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/contact/notes/:client_contact_note_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contact","notes",":client_contact_note_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client contact note</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_contact_note_id"}]}},"response":[{"id":"21535d0b-2079-4329-8e6f-2bd0546c9ef2","name":"Get a client contact note","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/client/contact/notes/:client_contact_note_id","host":["/api/v1"],"path":["client","contact","notes",":client_contact_note_id"],"variable":[{"key":"client_contact_note_id","value":"<integer>","description":"ID of the client contact note"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"body\": \"- Reviewed contract with client.\",\n    \"note_date\": \"2026-02-02\",\n    \"is_pinned\": true,\n    \"created_at\": \"2026-02-02 21:40:05\",\n    \"updated_at\": \"2026-02-02 21:40:05\",\n    \"User\": {\n        \"id\": \"2\",\n        \"account_code\": null,\n        \"first_name\": \"Sample\",\n        \"last_name\": \"Contact\",\n        \"email\": null,\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\",\n        \"Location\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"Author\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"url\": null\n}"}],"_postman_id":"933d5bb2-39aa-4231-bbb8-15a61a617dad"},{"name":"Create a client contact note","id":"9204272a-f962-4d46-95b6-f032dd3887f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"contact_note\": {\n     \"user_id\": \"<integer>\",\n     \"author_id\": \"<integer>\",\n     \"access_group_id\": \"<integer>\",\n     \"note_date\": \"<datestamp>\",\n     \"body\": \"Maiores earum aut earum dolorem recusandae voluptatem. Sit distinctio et at adipisci qui. Rerum soluta numquam quae neque est. Omnis accusamus consequatur qui facere. Aut ut nostrum aut eligendi rerum.\",\n     \"is_pinned\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/contact/notes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contact","notes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"406902c8-11c6-4d53-9911-71c4f2c164ab","name":"Create a client contact note","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"contact_note\": {\n     \"user_id\": \"<integer>\",\n     \"author_id\": \"<integer>\",\n     \"access_group_id\": \"<integer>\",\n     \"note_date\": \"<datestamp>\",\n     \"body\": \"Qui et ex dolores vel. Earum doloremque dolores mollitia incidunt rerum eum unde.\",\n     \"is_pinned\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/contact/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"body\": \"Fuga veritatis et molestiae excepturi et. Asperiores ab laudantium aperiam sint est. Iste natus et voluptatibus blanditiis quia. Officiis quaerat ut et dolorem. Quae id optio accusantium quam rem omnis. Illo quia laudantium enim sequi aut nesciunt adipisci.\",\n    \"note_date\": \"2026-02-02\",\n    \"is_pinned\": true,\n    \"created_at\": \"2026-02-02 21:41:18\",\n    \"updated_at\": \"2026-02-02 21:41:18\",\n    \"User\": {\n        \"id\": \"2\",\n        \"account_code\": null,\n        \"first_name\": \"Sample\",\n        \"last_name\": \"Contact\",\n        \"email\": null,\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\",\n        \"Location\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"Author\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"url\": null\n}"}],"_postman_id":"9204272a-f962-4d46-95b6-f032dd3887f9"}],"id":"7e7f208f-2a95-465a-ae1c-d0fde499734b","_postman_id":"7e7f208f-2a95-465a-ae1c-d0fde499734b","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Get a client contact","id":"9702f5ab-e891-4039-a724-287456bf0fd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/contacts/:client_contact_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contacts",":client_contact_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client contact</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_contact_id"}]}},"response":[{"id":"01976de5-482f-485d-b3a2-0bd5ab6603dd","name":"Get a client contact","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/client/contacts/:client_contact_id","host":["/api/v1"],"path":["client","contacts",":client_contact_id"],"variable":[{"key":"client_contact_id","value":"<integer>","description":"ID of the client contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"first_name\": \"Sample\",\n    \"middle_name\": \"\",\n    \"last_name\": \"Contact\",\n    \"title\": \"\",\n    \"email\": null,\n    \"phone_home\": \"\",\n    \"phone_mobile\": \"\",\n    \"phone_mobile_carrier\": \"\",\n    \"phone_office\": \"\",\n    \"phone_fax\": \"\",\n    \"address_1\": null,\n    \"address_2\": null,\n    \"address_3\": null,\n    \"city\": null,\n    \"state\": null,\n    \"zip\": null,\n    \"country\": \"US\",\n    \"latitude\": null,\n    \"longitude\": null,\n    \"birthday\": null,\n    \"account_code\": null,\n    \"notes\": null,\n    \"admin_notes\": \"\",\n    \"created_at\": \"2011-04-04 23:15:30\",\n    \"updated_at\": \"2011-04-04 23:15:30\",\n    \"last_login_at\": null,\n    \"mfa_enabled\": false,\n    \"is_login_active\": false,\n    \"name\": \"Contact, Sample\",\n    \"proper_name\": \"Sample Contact\",\n    \"Location\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"address_1\": \"\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"country\": \"US\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"route_prefix\": \"client\"\n        },\n        \"Salesperson\": null\n    },\n    \"Role\": {\n        \"id\": \"6\",\n        \"name\": \"Client User\"\n    },\n    \"UserFieldGroup\": []\n}"}],"_postman_id":"9702f5ab-e891-4039-a724-287456bf0fd2"},{"name":"List client contacts","id":"17e33d3e-2d26-4919-acb5-c79a4490f723","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/contacts","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contacts"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"2a4fcab3-ec7d-46e0-b991-7306e32aba68","name":"List client contacts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/contacts"},"status":"OK","code":200,"_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\": \"2\",\n        \"first_name\": \"Sample\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Contact\",\n        \"title\": \"\",\n        \"email\": null,\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_mobile_carrier\": \"\",\n        \"phone_office\": \"\",\n        \"phone_fax\": \"\",\n        \"address_1\": null,\n        \"address_2\": null,\n        \"address_3\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": \"US\",\n        \"latitude\": null,\n        \"longitude\": null,\n        \"birthday\": null,\n        \"account_code\": null,\n        \"notes\": null,\n        \"admin_notes\": \"\",\n        \"created_at\": \"2011-04-04 23:15:30\",\n        \"updated_at\": \"2011-04-04 23:15:30\",\n        \"last_login_at\": null,\n        \"mfa_enabled\": false,\n        \"is_login_active\": false,\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\",\n        \"Location\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"address_1\": \"\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"\",\n            \"state\": \"\",\n            \"zip\": \"\",\n            \"country\": \"US\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"route_prefix\": \"client\"\n            },\n            \"Salesperson\": null\n        },\n        \"Role\": {\n            \"id\": \"6\",\n            \"name\": \"Client User\"\n        },\n        \"UserFieldGroup\": []\n    }\n]"}],"_postman_id":"17e33d3e-2d26-4919-acb5-c79a4490f723"},{"name":"Search client contacts","id":"01891c54-d2b0-4c61-8c80-48ce1a1090fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/contacts?id=<integer>&account_code=<string>&client=<integer>&client_location=<integer>&email=<string>&first_name=<string>&last_name=<string>&role=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>&expand_field_values=<boolean>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contacts"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the contact</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Reference number or lookup code for the contact</p>\n","type":"text/plain"},"key":"account_code","value":"<string>"},{"description":{"content":"<p>ID of the client associated with the contact</p>\n","type":"text/plain"},"key":"client","value":"<integer>"},{"description":{"content":"<p>ID of the client location associated with the contact</p>\n","type":"text/plain"},"key":"client_location","value":"<integer>"},{"description":{"content":"<p>Email address associated with the contact</p>\n","type":"text/plain"},"key":"email","value":"<string>"},{"description":{"content":"<p>First name of the contact</p>\n","type":"text/plain"},"key":"first_name","value":"<string>"},{"description":{"content":"<p>Last name of the contact</p>\n","type":"text/plain"},"key":"last_name","value":"<string>"},{"description":{"content":"<p>ID of the user role associated with the contact</p>\n","type":"text/plain"},"key":"role","value":"<integer>"},{"description":{"content":"<p>ISO date of the date created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"},{"description":{"content":"<p>Expand custom field objects</p>\n","type":"text/plain"},"key":"expand_field_values","value":"<boolean>"}],"variable":[]}},"response":[{"id":"9ca9febb-00f9-4513-a478-1a20513da356","name":"Search client contacts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/client/contacts?id=<integer>&account_code=<string>&client=<integer>&client_location=<integer>&email=<string>&first_name=<string>&last_name=<string>&role=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>&expand_field_values=<boolean>","host":["/api/v1"],"path":["client","contacts"],"query":[{"key":"id","value":"<integer>","description":"ID of the contact"},{"key":"account_code","value":"<string>","description":"Reference number or lookup code for the contact"},{"key":"client","value":"<integer>","description":"ID of the client associated with the contact"},{"key":"client_location","value":"<integer>","description":"ID of the client location associated with the contact"},{"key":"email","value":"<string>","description":"Email address associated with the contact"},{"key":"first_name","value":"<string>","description":"First name of the contact"},{"key":"last_name","value":"<string>","description":"Last name of the contact"},{"key":"role","value":"<integer>","description":"ID of the user role associated with the contact"},{"key":"created_from","value":"<datestamp>","description":"ISO date of the date created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date of the date created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date of the date updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date of the date updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"},{"key":"expand_field_values","value":"<boolean>","description":"Expand custom field objects"}]}},"status":"OK","code":200,"_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\": \"2\",\n        \"first_name\": \"Sample\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Contact\",\n        \"title\": \"\",\n        \"email\": null,\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_mobile_carrier\": \"\",\n        \"phone_office\": \"\",\n        \"phone_fax\": \"\",\n        \"address_1\": null,\n        \"address_2\": null,\n        \"address_3\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": \"US\",\n        \"latitude\": null,\n        \"longitude\": null,\n        \"birthday\": null,\n        \"account_code\": null,\n        \"notes\": null,\n        \"admin_notes\": \"\",\n        \"created_at\": \"2011-04-04 23:15:30\",\n        \"updated_at\": \"2011-04-04 23:15:30\",\n        \"last_login_at\": null,\n        \"mfa_enabled\": false,\n        \"is_login_active\": false,\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\",\n        \"Location\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"address_1\": \"\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"\",\n            \"state\": \"\",\n            \"zip\": \"\",\n            \"country\": \"US\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"route_prefix\": \"client\"\n            },\n            \"Salesperson\": null\n        },\n        \"Role\": {\n            \"id\": \"6\",\n            \"name\": \"Client User\"\n        },\n        \"UserFieldGroup\": []\n    }\n]"}],"_postman_id":"01891c54-d2b0-4c61-8c80-48ce1a1090fa"},{"name":"Create a client contact","id":"85987e25-38b6-4eb3-bdeb-ba8fa249048a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"contact\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"first_name\": \"Damian\",\n     \"middle_name\": \"Gus\",\n     \"last_name\": \"Pfannerstill\",\n     \"title\": \"National Brand Producer\",\n     \"email\": \"Reina_Keebler69@example.net\",\n     \"phone_home\": \"870-577-9364\",\n     \"phone_mobile\": \"711-447-4015\",\n     \"phone_office\": \"710-317-7429 28-698-231-8735\",\n     \"phone_fax\": \"805-633-4106\",\n     \"address_1\": \"41077 Hauck Turnpike\",\n     \"address_2\": \"STE 125\",\n     \"address_3\": \"\",\n     \"city\": \"West Dominiquestad\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",     \n     \"account_code\": \"molestias-voluptate-aut\",\n     \"notes\": \"Ipsam cumque consectetur unde magnam id mollitia. Et veniam vel quas rerum quo ipsa ea. Voluptatem eum eius. Rem dolor sed. Quia sunt non quisquam ut consequatur et magnam. Omnis voluptates porro et veritatis fuga est beatae aut.\",\n     \"admin_notes\": \"Dolorem vero ab ipsa sint vero occaecati ex. Beatae necessitatibus nemo. Sed ut sit. Ut aut cum harum deserunt.\"\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/contacts","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contacts"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"0ce481f6-e3a0-42fa-bec6-e0df066e24c2","name":"Create a client contact","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"contact\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"first_name\": \"Oma\",\n     \"middle_name\": \"Craig\",\n     \"last_name\": \"Ziemann\",\n     \"title\": \"Internal Applications Director\",\n     \"email\": \"Elyse.Gottlieb@example.org\",\n     \"phone_home\": \"323-455-3930\",\n     \"phone_mobile\": \"716-993-9902\",\n     \"phone_office\": \"413-276-8797 6-214-338-5414\",\n     \"phone_fax\": \"574-233-5470\",\n     \"address_1\": \"7562 Prosacco Garden\",\n     \"address_2\": \"STE 349\",\n     \"address_3\": \"\",\n     \"city\": \"Port Jakobhaven\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",     \n     \"account_code\": \"quia-molestiae-fugiat\",\n     \"notes\": \"Amet aut ut quis dolor iure ut. Magni doloremque itaque ab iusto similique voluptatem temporibus quam corporis.\",\n     \"admin_notes\": \"Ut architecto est tenetur est commodi. Nemo soluta et. Accusantium tenetur sed atque vero. Aliquid eos quia eveniet quia.\"\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/contacts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"4\",\n    \"first_name\": \"Stephen\",\n    \"middle_name\": \"Harmony\",\n    \"last_name\": \"Ferry\",\n    \"title\": \"Human Branding Technician\",\n    \"email\": \"Travon.Price99@example.org\",\n    \"phone_home\": \"337-272-3653\",\n    \"phone_mobile\": \"822-621-6640\",\n    \"phone_mobile_carrier\": null,\n    \"phone_office\": \"977-619-3088 49-291-715-9012\",\n    \"phone_fax\": \"417-742-8977\",\n    \"address_1\": \"9048 Morissette Ports\",\n    \"address_2\": \"STE 439\",\n    \"address_3\": \"\",\n    \"city\": \"New Ethelside\",\n    \"state\": \"CO\",\n    \"zip\": \"80202\",\n    \"country\": \"US\",\n    \"latitude\": \"39.740008\",\n    \"longitude\": \"-104.987401\",\n    \"birthday\": \"1976-07-04\",\n    \"account_code\": \"eos-id-deleniti\",\n    \"notes\": \"Dolores optio dolorem et aliquid expedita officia numquam asperiores dolores. Id similique qui eius nobis similique qui aperiam quis tempora. At unde sed optio recusandae tempore fuga nesciunt. Quo non repellendus labore dicta.\",\n    \"admin_notes\": \"Illum consectetur neque similique consectetur et quo totam. Nostrum culpa explicabo temporibus et eos et nihil quo.\",\n    \"created_at\": \"2026-02-02 21:42:22\",\n    \"updated_at\": \"2026-02-02 21:42:22\",\n    \"last_login_at\": null,\n    \"mfa_enabled\": \"0\",\n    \"is_login_active\": \"0\",\n    \"name\": \"Ferry, Stephen Harmony\",\n    \"proper_name\": \"Stephen Harmony Ferry\",\n    \"Location\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"address_1\": \"\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"country\": \"US\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"route_prefix\": \"client\"\n        },\n        \"Salesperson\": null\n    },\n    \"Role\": {\n        \"id\": \"6\",\n        \"name\": \"Client User\"\n    },\n    \"UserFieldGroup\": []\n}"}],"_postman_id":"85987e25-38b6-4eb3-bdeb-ba8fa249048a"},{"name":"Update a client contact","id":"f075d471-998c-491f-9ad3-21a003c849c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"contact\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"first_name\": \"Fiona\",\n     \"middle_name\": \"Rae\",\n     \"last_name\": \"Crist\",\n     \"title\": \"National Solutions Developer\",\n     \"email\": \"Raphaelle60@example.org\",\n     \"phone_home\": \"732-228-2665\",\n     \"phone_mobile\": \"825-637-4394\",\n     \"phone_office\": \"876-317-8787 49-970-413-8062\",\n     \"phone_fax\": \"689-344-6248\",\n     \"address_1\": \"1670 Emilia Ways\",\n     \"address_2\": \"STE 771\",\n     \"address_3\": \"\",\n     \"city\": \"West Eulalia\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"explicabo-doloremque-consequuntur\",\n     \"notes\": \"Repellendus dolorum laudantium consequuntur autem possimus dolores. Totam quidem et veniam ipsum voluptatem voluptatem id veritatis. Ut iste earum nobis. Nostrum fugiat asperiores debitis saepe. Sed ut quae qui ipsum nihil voluptatibus cumque labore perspiciatis.\",\n     \"admin_notes\": \"Qui animi recusandae. Eum sapiente sequi sint.\"\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/contacts/:client_contact_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contacts",":client_contact_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client contact</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_contact_id"}]}},"response":[{"id":"32fb8e31-6798-4943-8791-267d28a38da3","name":"Update a client contact","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"contact\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"first_name\": \"Fern\",\n     \"middle_name\": \"Linwood\",\n     \"last_name\": \"Mills\",\n     \"title\": \"National Directives Agent\",\n     \"email\": \"Bettye_Langosh64@example.com\",\n     \"phone_home\": \"625-877-8939\",\n     \"phone_mobile\": \"297-433-5415\",\n     \"phone_office\": \"866-906-1424 25-652-221-2479\",\n     \"phone_fax\": \"271-443-0404\",\n     \"address_1\": \"307 Bradly Tunnel\",\n     \"address_2\": \"STE 539\",\n     \"address_3\": \"\",\n     \"city\": \"Gilroy\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"magnam-ullam-excepturi\",\n     \"notes\": \"Quia blanditiis at cupiditate facilis eveniet vero. Et eos debitis tempore aut vel illum deleniti repellendus voluptates. Iste ab quae ad fugit veniam tempora quia qui iusto. Quia molestiae temporibus. Libero sint est nesciunt veniam aperiam.\",\n     \"admin_notes\": \"Facere nemo sint dolor reiciendis quibusdam magnam repellat accusantium commodi. Quaerat rerum consequatur omnis eaque commodi voluptas. Debitis necessitatibus itaque mollitia nisi omnis quisquam et vitae sapiente. Et iusto laboriosam nulla veniam amet dolorem adipisci sapiente et.\"\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/client/contacts/:client_contact_id","host":["/api/v1"],"path":["client","contacts",":client_contact_id"],"variable":[{"key":"client_contact_id","value":"<integer>","description":"ID of the client contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"first_name\": \"Virginia\",\n    \"middle_name\": \"Evan\",\n    \"last_name\": \"Kuhn\",\n    \"title\": \"Customer Accountability Architect\",\n    \"email\": \"Wallace61@example.net\",\n    \"phone_home\": \"896-830-8304\",\n    \"phone_mobile\": \"206-795-4505\",\n    \"phone_mobile_carrier\": \"\",\n    \"phone_office\": \"223-637-5881 99-636-381-8566\",\n    \"phone_fax\": \"312-391-5409\",\n    \"address_1\": \"523 Becker Causeway\",\n    \"address_2\": \"STE 649\",\n    \"address_3\": \"\",\n    \"city\": \"Wheaton\",\n    \"state\": \"CO\",\n    \"zip\": \"80202\",\n    \"country\": \"US\",\n    \"latitude\": \"39.740008\",\n    \"longitude\": \"-104.987401\",\n    \"birthday\": \"1976-07-04\",\n    \"account_code\": \"velit-soluta-ut\",\n    \"notes\": \"Laborum molestiae nemo. Ex omnis voluptatem natus. A perspiciatis voluptatum iure architecto illo dolores et numquam tempora. Temporibus aut porro.\",\n    \"admin_notes\": \"Soluta qui at quibusdam vel excepturi dolor. Nobis sint cum qui ut. At dicta facilis. Optio qui nisi totam. Excepturi est nesciunt ut et veniam perferendis ea ut cumque.\",\n    \"created_at\": \"2011-04-04 23:15:30\",\n    \"updated_at\": \"2026-02-02 21:42:32\",\n    \"last_login_at\": null,\n    \"mfa_enabled\": \"0\",\n    \"is_login_active\": \"0\",\n    \"name\": \"Kuhn, Virginia Evan\",\n    \"proper_name\": \"Virginia Evan Kuhn\",\n    \"Location\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"address_1\": \"\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"country\": \"US\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"route_prefix\": \"client\"\n        },\n        \"Salesperson\": null\n    },\n    \"Role\": {\n        \"id\": \"6\",\n        \"name\": \"Client User\"\n    },\n    \"UserFieldGroup\": []\n}"}],"_postman_id":"f075d471-998c-491f-9ad3-21a003c849c9"}],"id":"b50ad3d2-bee5-4a40-9825-6d92480e8bd3","description":"<p>Client contacts are the individual client users who submit case referrals and receive case updates.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338603-Creating-a-New-Client-Contact\">Creating a New Client Contact</a></p>\n","_postman_id":"b50ad3d2-bee5-4a40-9825-6d92480e8bd3","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Client Locations","item":[{"name":"Get a client location","id":"ee1dd33b-d7f9-4eaf-9be9-e15f448d20f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/locations/:client_location_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","locations",":client_location_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client location</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_location_id"}]}},"response":[{"id":"e364c66a-84d2-40b3-b398-1caf71f40316","name":"Get a client location","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/client/locations/:client_location_id","host":["/api/v1"],"path":["client","locations",":client_location_id"],"variable":[{"key":"client_location_id","value":"<integer>","description":"ID of the client location"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"4\",\n    \"root_id\": \"3\",\n    \"is_primary\": true,\n    \"name\": \"Main Location\",\n    \"account_code\": \"\",\n    \"address_1\": \"123 Main Street\",\n    \"address_2\": \"\",\n    \"address_3\": \"\",\n    \"city\": \"Beverly Hills\",\n    \"state\": \"CA\",\n    \"zip\": \"90210\",\n    \"country\": \"US\",\n    \"phone_primary\": \"555-555-5555\",\n    \"phone_secondary\": \"555-555-5556\",\n    \"phone_fax\": \"555-555-5557\",\n    \"email_invoice\": \"\",\n    \"website\": \"\",\n    \"notes\": \"\",\n    \"created_at\": \"2011-04-04 23:15:00\",\n    \"updated_at\": \"2026-02-02 21:44:51\",\n    \"route_prefix\": \"client\",\n    \"RootClient\": {\n        \"id\": \"3\",\n        \"name\": \"Sample Client\",\n        \"route_prefix\": \"client\"\n    },\n    \"Salesperson\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"CaseManager\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    }\n}"}],"_postman_id":"ee1dd33b-d7f9-4eaf-9be9-e15f448d20f7"},{"name":"List client locations","id":"fb8be3d5-0446-4d89-abb1-950fcb4d1b76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/locations","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","locations"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"47a6eb04-fc94-40d1-8a44-21b89d87537c","name":"List client locations","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/locations"},"status":"OK","code":200,"_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\": \"4\",\n        \"root_id\": \"3\",\n        \"is_primary\": true,\n        \"name\": \"Main Location\",\n        \"account_code\": \"\",\n        \"address_1\": \"\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"country\": \"US\",\n        \"phone_primary\": \"\",\n        \"phone_secondary\": \"\",\n        \"phone_fax\": \"\",\n        \"email_invoice\": \"\",\n        \"website\": \"\",\n        \"notes\": \"\",\n        \"created_at\": \"2011-04-04 23:15:00\",\n        \"updated_at\": \"2024-03-14 20:20:28\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"route_prefix\": \"client\"\n        },\n        \"Salesperson\": null,\n        \"CaseManager\": null\n    }\n]"}],"_postman_id":"fb8be3d5-0446-4d89-abb1-950fcb4d1b76"},{"name":"Search client locations","id":"07d92a86-4ae6-4100-b4a1-cadce28671d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/locations?id=<integer>&account_code=<string>&name=<string>&case_manager=<integer>&client=<integer>&client_name=<string>&salesperson=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","locations"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the client location</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Reference number or lookup code for the client location</p>\n","type":"text/plain"},"key":"account_code","value":"<string>"},{"description":{"content":"<p>Name of the client location</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>ID of the case manager assigned to the client location</p>\n","type":"text/plain"},"key":"case_manager","value":"<integer>"},{"description":{"content":"<p>ID of the client associated with the client location</p>\n","type":"text/plain"},"key":"client","value":"<integer>"},{"description":{"content":"<p>Name of the client associated with the client location</p>\n","type":"text/plain"},"key":"client_name","value":"<string>"},{"description":{"content":"<p>ID of the salesperson assigned to the client location</p>\n","type":"text/plain"},"key":"salesperson","value":"<integer>"},{"description":{"content":"<p>ISO date of the date created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"fc432496-1b92-4113-9722-790f1d509908","name":"Search client locations","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/client/locations?id=<integer>&account_code=<string>&name=<string>&case_manager=<integer>&client=<integer>&client_name=<string>&salesperson=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["client","locations"],"query":[{"key":"id","value":"<integer>","description":"ID of the client location"},{"key":"account_code","value":"<string>","description":"Reference number or lookup code for the client location"},{"key":"name","value":"<string>","description":"Name of the client location"},{"key":"case_manager","value":"<integer>","description":"ID of the case manager assigned to the client location"},{"key":"client","value":"<integer>","description":"ID of the client associated with the client location"},{"key":"client_name","value":"<string>","description":"Name of the client associated with the client location"},{"key":"salesperson","value":"<integer>","description":"ID of the salesperson assigned to the client location"},{"key":"created_from","value":"<datestamp>","description":"ISO date of the date created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date of the date created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date of the date updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date of the date updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_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\": \"4\",\n        \"root_id\": \"3\",\n        \"is_primary\": true,\n        \"name\": \"Main Location\",\n        \"account_code\": \"\",\n        \"address_1\": \"\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"country\": \"US\",\n        \"phone_primary\": \"\",\n        \"phone_secondary\": \"\",\n        \"phone_fax\": \"\",\n        \"email_invoice\": \"\",\n        \"website\": \"\",\n        \"notes\": \"\",\n        \"created_at\": \"2011-04-04 23:15:00\",\n        \"updated_at\": \"2024-03-14 20:20:28\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"route_prefix\": \"client\"\n        },\n        \"Salesperson\": null,\n        \"CaseManager\": null\n    }\n]"}],"_postman_id":"07d92a86-4ae6-4100-b4a1-cadce28671d4"},{"name":"Create a client location","id":"d736d13f-1fa6-46c1-b0db-ff4cd18de1f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"client_location\": {\n    \"root_id\": \"<integer>\",\n    \"salesperson_id\": \"<integer>\",\n    \"is_primary\": true,\n    \"name\": \"East Providence Office\",\n    \"email_invoice\": \"Raymundo78@example.net\",\n    \"phone_primary\": \"976-324-1888\",\n    \"phone_secondary\": \"907-621-4508\",\n    \"phone_fax\": \"475-796-7544\",\n    \"address_1\": \"1168 Stiedemann Square\",\n    \"address_2\": \"STE 338\",\n    \"address_3\": \"\",\n    \"city\": \"Nicoleshire\",\n    \"state\": \"<string>\",\n    \"zip\": \"<string>\",\n    \"country\": \"<country-code>\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/locations","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","locations"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"118ae3af-f054-4e68-9d70-3d32d099abde","name":"Create a client location","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"client_location\": {\n    \"root_id\": <integer>,\n    \"is_primary\": true,\n    \"name\": \"Konopelskiberg Office\",\n    \"email_invoice\": \"Dalton.Abshire39@example.com\",\n    \"phone_primary\": \"460-386-9221\",\n    \"phone_secondary\": \"871-520-8466\",\n    \"phone_fax\": \"779-610-4623\",\n    \"address_1\": \"939 Carroll Freeway\",\n    \"address_2\": \"STE 256\",\n    \"address_3\": \"\",\n    \"city\": \"North Cydneychester\",\n    \"state\": \"<string>\",\n    \"zip\": \"<string>\",\n    \"country\": \"<country-code>\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/locations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"5\",\n    \"root_id\": \"3\",\n    \"is_primary\": true,\n    \"name\": \"Rutheshire Office\",\n    \"account_code\": \"\",\n    \"address_1\": \"22840 Bahringer Dale\",\n    \"address_2\": \"STE 745\",\n    \"address_3\": \"\",\n    \"city\": \"New Anderson\",\n    \"state\": \"CO\",\n    \"zip\": \"80202\",\n    \"country\": \"US\",\n    \"phone_primary\": \"801-474-9794\",\n    \"phone_secondary\": \"841-542-6273\",\n    \"phone_fax\": \"557-332-3139\",\n    \"email_invoice\": \"Kali_Bechtelar12@example.net\",\n    \"website\": null,\n    \"notes\": \"\",\n    \"created_at\": \"2026-02-02 21:45:15\",\n    \"updated_at\": \"2026-02-02 21:45:15\",\n    \"route_prefix\": \"client\",\n    \"RootClient\": {\n        \"id\": \"3\",\n        \"name\": \"Sample Client\",\n        \"route_prefix\": \"client\"\n    },\n    \"Salesperson\": null,\n    \"CaseManager\": null\n}"}],"_postman_id":"d736d13f-1fa6-46c1-b0db-ff4cd18de1f3"},{"name":"Update a client location","id":"f411f8cf-a3e5-4a03-805b-2a4e0b5b8369","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"client_location\": {\n    \"root_id\": \"<integer>\",\n    \"is_primary\": true,\n    \"name\": \"New Princess Office\",\n    \"email_invoice\": \"Carolyne.Kuhlman25@example.net\",\n    \"phone_primary\": \"478-987-6582\",\n    \"phone_secondary\": \"987-493-7431\",\n    \"phone_fax\": \"637-596-9895\",\n    \"address_1\": \"9461 Maudie Mountain\",\n    \"address_2\": \"STE 119\",\n    \"city\": \"Royal Oak\",\n    \"state\": \"<string>\",\n    \"zip\": \"<string>\",\n    \"country\": \"<country-code>\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/locations/:client_location_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","locations",":client_location_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client location</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_location_id"}]}},"response":[{"id":"3fa2beea-0f9f-4d5d-969c-9e1f297d6502","name":"Update a client location","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"client_location\": {\n    \"root_id\": \"<integer>\",\n    \"is_primary\": true,\n    \"name\": \"Harmonyhaven Office\",\n    \"email_invoice\": \"Mary_Kling38@example.org\",\n    \"phone_primary\": \"273-343-2196\",\n    \"phone_secondary\": \"379-625-6875\",\n    \"phone_fax\": \"832-663-0029\",\n    \"address_1\": \"762 Brigitte Orchard\",\n    \"address_2\": \"STE 62\",\n    \"city\": \"Gaithersburg\",\n    \"state\": \"<string>\",\n    \"zip\": \"<string>\",\n    \"country\": \"<country-code>\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/client/locations/:client_location_id","host":["/api/v1"],"path":["client","locations",":client_location_id"],"variable":[{"key":"client_location_id","value":"<integer>","description":"ID of the client location"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":":status","value":200},{"key":"content-security-policy","value":"frame-ancestors 'none';object-src 'self' https://d1ssnvhbal8zta.cloudfront.net;media-src 'self' https://d1ssnvhbal8zta.cloudfront.net;script-src 'self' 'nonce-976ed80964da5407c7ddf70f528b62b6' https://js.stripe.com;upgrade-insecure-requests;block-all-mixed-content;"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"DENY"},{"key":"x-powered-by","value":"PHP/8.3.28"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-length","value":"889"},{"key":"date","value":"Wed, 18 Mar 2026 17:36:34 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"4\",\n    \"root_id\": \"3\",\n    \"is_primary\": true,\n    \"name\": \"Aliyabury Office\",\n    \"account_code\": \"\",\n    \"address_1\": \"52244 Dibbert Parkways\",\n    \"address_2\": \"STE 845\",\n    \"address_3\": \"\",\n    \"city\": \"Wizafort\",\n    \"state\": \"CO\",\n    \"zip\": \"80202\",\n    \"country\": \"US\",\n    \"phone_primary\": \"838-859-7343\",\n    \"phone_secondary\": \"397-502-5603\",\n    \"phone_fax\": \"525-854-3161\",\n    \"email_invoice\": \"Alford.Hegmann45@example.net\",\n    \"website\": \"\",\n    \"notes\": \"\",\n    \"created_at\": \"2011-04-04 23:15:00\",\n    \"updated_at\": \"2026-03-18 17:36:34\",\n    \"route_prefix\": \"client\",\n    \"RootClient\": {\n        \"id\": \"3\",\n        \"name\": \"Homenick Group Location\",\n        \"route_prefix\": \"client\"\n    },\n    \"Salesperson\": {\n        \"id\": \"1\",\n        \"first_name\": \"Jefferey\",\n        \"last_name\": \"Lebsack\",\n        \"email\": \"Mikel_Spinka@example.com\",\n        \"name\": \"Lebsack, Jefferey\",\n        \"proper_name\": \"Jefferey Lebsack\"\n    },\n    \"CaseManager\": {\n        \"id\": \"1\",\n        \"first_name\": \"Jefferey\",\n        \"last_name\": \"Lebsack\",\n        \"email\": \"Mikel_Spinka@example.com\",\n        \"name\": \"Lebsack, Jefferey\",\n        \"proper_name\": \"Jefferey Lebsack\"\n    }\n}"}],"_postman_id":"f411f8cf-a3e5-4a03-805b-2a4e0b5b8369"}],"id":"e4382008-e780-479d-977a-988c3a7b9adf","description":"<p>Client locations are the branches or offices (sub-clients) connected to a client. Cases, invoices and client contacts are always connected to a client location.</p>\n","_postman_id":"e4382008-e780-479d-977a-988c3a7b9adf","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Clients","item":[{"name":"Client Notes","item":[{"name":"Get a client note","id":"90848a63-5097-4881-91ec-42d1b9128d93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/client/notes/:client_note_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","notes",":client_note_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client note</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_note_id"}]}},"response":[{"id":"56fed307-d8e3-4ca5-a087-c476f8a2a5c7","name":"Get a client note","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/client/notes/:client_note_id","host":["/api/v1"],"path":["client","notes",":client_note_id"],"variable":[{"key":"client_note_id","value":"<integer>","description":"ID of the client note"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"body\": \"- Received signed contract from Suzie B Jones\\r\\n- Received first referral with authoriztion to work.\",\n    \"note_date\": \"2026-02-02\",\n    \"is_pinned\": false,\n    \"created_at\": \"2026-02-02 21:48:42\",\n    \"updated_at\": \"2026-02-02 21:48:42\",\n    \"Client\": {\n        \"id\": \"3\",\n        \"name\": \"Sample Client\",\n        \"root_id\": null,\n        \"route_prefix\": \"client\"\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"Author\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"url\": null\n}"}],"_postman_id":"90848a63-5097-4881-91ec-42d1b9128d93"},{"name":"List client notes","id":"0bc7146e-e025-41ff-a6f7-025652236992","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/client/notes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","notes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"273ac40d-8ba5-4803-8243-a8b06b5defb4","name":"List client notes","originalRequest":{"method":"GET","header":[],"url":"/api/v1/client/notes"},"status":"OK","code":200,"_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\": \"3\",\n        \"body\": \"- Received signed contract from Suzie B Jones\\r\\n- Received first referral with authoriztion to work.\",\n        \"note_date\": \"2026-02-02\",\n        \"is_pinned\": false,\n        \"created_at\": \"2026-02-02 21:48:42\",\n        \"updated_at\": \"2026-02-02 21:48:42\",\n        \"Client\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"root_id\": null,\n            \"route_prefix\": \"client\"\n        },\n        \"AccessGroup\": {\n            \"id\": \"2\",\n            \"name\": \"Public\"\n        },\n        \"Author\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"url\": null\n    }\n]"}],"_postman_id":"0bc7146e-e025-41ff-a6f7-025652236992"},{"name":"Create a client note","id":"ec9c964c-9a1a-431c-a425-32968eab15ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"client_note\": {\n     \"client_id\": <integer>,\n     \"author_id\": <integer>,\n     \"access_group_id\": <integer>,\n     \"note_date\": \"<datestamp>\",\n     \"body\": \"Sapiente ipsa ut ipsum impedit doloremque velit aut inventore. Nulla nulla iste. Consectetur enim ullam.\",\n     \"is_pinned\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/notes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","notes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"26460901-ce6c-42ab-b15d-d40bbdc810d5","name":"Create a client note","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"client_note\": {\n     \"client_id\": <integer>,\n     \"author_id\": <integer>,\n     \"access_group_id\": <integer>,\n     \"note_date\": \"<datestamp>\",\n     \"body\": \"Accusantium voluptatum beatae animi placeat dicta minima suscipit. Nemo illum est et et sunt quibusdam inventore dolorem quasi. Eveniet necessitatibus quaerat corrupti hic nisi. Reprehenderit vero et. Rerum atque nam nemo nobis qui ut.\",\n     \"is_pinned\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"4\",\n    \"body\": \"Dicta ex veniam. Libero aut vel.\",\n    \"note_date\": \"2026-02-02\",\n    \"is_pinned\": true,\n    \"created_at\": \"2026-02-02 21:49:31\",\n    \"updated_at\": \"2026-02-02 21:49:31\",\n    \"Client\": {\n        \"id\": \"3\",\n        \"name\": \"Sample Client\",\n        \"root_id\": null,\n        \"route_prefix\": \"client\"\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"Author\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"url\": null\n}"}],"_postman_id":"ec9c964c-9a1a-431c-a425-32968eab15ec"}],"id":"3a6df1e4-118b-4d9f-a715-6c30aac09577","description":"<p>Client notes store extra information, recent conversations, or other updates related to the client.</p>\n","_postman_id":"3a6df1e4-118b-4d9f-a715-6c30aac09577","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Get a client","id":"29e2dc06-5034-42e9-a5f9-f11a98eae8b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/clients/:client_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["clients",":client_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_id"}]}},"response":[{"id":"495a0507-727f-4177-9dca-55c8d2bbd140","name":"Get a client","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/clients/:client_id","host":["/api/v1"],"path":["clients",":client_id"],"variable":[{"key":"client_id","value":"<integer>","description":"ID of the client"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"name\": \"Sample Client\",\n    \"account_code\": \"SAMPLE\",\n    \"email_invoice\": \"example@trackops.com\",\n    \"website\": \"\",\n    \"notes\": \"First case received 01/01/2026\",\n    \"location_count\": \"2\",\n    \"user_count\": \"2\",\n    \"investigator_count\": \"0\",\n    \"created_at\": \"2011-04-04 23:15:00\",\n    \"updated_at\": \"2026-02-02 21:43:59\",\n    \"route_prefix\": \"client\",\n    \"Salesperson\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"CaseManager\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    }\n}"}],"_postman_id":"29e2dc06-5034-42e9-a5f9-f11a98eae8b9"},{"name":"List clients","id":"9d3eaa49-4b24-4bad-ad51-2f03d9c83395","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/clients","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["clients"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"42c831ce-c855-43ac-a832-8e2227f68f79","name":"List clients","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/clients"},"status":"OK","code":200,"_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\": \"3\",\n        \"name\": \"Sample Client\",\n        \"account_code\": \"SAMPLE\",\n        \"email_invoice\": \"example@trackops.com\",\n        \"website\": \"\",\n        \"notes\": \"First case received 01/01/2026\",\n        \"location_count\": \"2\",\n        \"user_count\": \"2\",\n        \"investigator_count\": \"0\",\n        \"created_at\": \"2011-04-04 23:15:00\",\n        \"updated_at\": \"2026-02-02 21:43:59\",\n        \"route_prefix\": \"client\",\n        \"Salesperson\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"CaseManager\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        }\n    }\n]"}],"_postman_id":"9d3eaa49-4b24-4bad-ad51-2f03d9c83395"},{"name":"Search clients","id":"2f2096a5-5834-468c-8d07-dd601ef0359c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/clients?id=<integer>&account_code=<string>&name=<string>&case_manager=<integer>&salesperson=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["clients"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the client</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Reference number or lookup code for the client</p>\n","type":"text/plain"},"key":"account_code","value":"<string>"},{"description":{"content":"<p>Name of the client</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>ID of the case manager assigned to the client</p>\n","type":"text/plain"},"key":"case_manager","value":"<integer>"},{"description":{"content":"<p>ID of the salesperson assigned to the client</p>\n","type":"text/plain"},"key":"salesperson","value":"<integer>"},{"description":{"content":"<p>ISO date of the date created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"a0fbd9bf-5a52-4d83-8b73-e58062e609e1","name":"Search clients","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/clients?id=<integer>&account_code=<string>&name=<string>&case_manager=<integer>&salesperson=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["clients"],"query":[{"key":"id","value":"<integer>","description":"ID of the client"},{"key":"account_code","value":"<string>","description":"Reference number or lookup code for the client"},{"key":"name","value":"<string>","description":"Name of the client"},{"key":"case_manager","value":"<integer>","description":"ID of the case manager assigned to the client"},{"key":"salesperson","value":"<integer>","description":"ID of the salesperson assigned to the client"},{"key":"created_from","value":"<datestamp>","description":"ISO date of the date created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date of the date created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date of the date updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date of the date updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_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\": \"3\",\n        \"name\": \"Sample Client\",\n        \"account_code\": \"SAMPLE\",\n        \"email_invoice\": \"example@trackops.com\",\n        \"website\": \"\",\n        \"notes\": \"First case received 01/01/2026\",\n        \"location_count\": \"2\",\n        \"user_count\": \"2\",\n        \"investigator_count\": \"0\",\n        \"created_at\": \"2011-04-04 23:15:00\",\n        \"updated_at\": \"2026-02-02 21:43:59\",\n        \"route_prefix\": \"client\",\n        \"Salesperson\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"CaseManager\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        }\n    }\n]"}],"_postman_id":"2f2096a5-5834-468c-8d07-dd601ef0359c"},{"name":"Create a client","id":"d499764f-e5fc-47aa-8b40-59b55b65c1f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"client\": {\n    \"name\": \"Mante - Jenkins\",\n    \"salesperson_id\": \"<integer>\",\n    \"website\": \"http://bert.net\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Odit atque nobis debitis totam velit. Repellendus quia nihil. Molestias harum quos omnis tempora placeat.\",\n    \"primary_location\": {\n      \"name\": \"Vaughnfurt Location\",\n      \"email_invoice\": \"Jaylon5@example.com\",\n      \"phone_primary\": \"282-341-4072\",\n      \"phone_secondary\": \"362-243-4890\",\n      \"phone_fax\": \"365-516-2861\",\n      \"address_1\": \"6861 Cassin Harbors\",\n      \"address_2\": \"STE 800\",\n      \"city\": \"West Laviniaberg\",\n      \"state\": \"<string>\",\n      \"zip\": <string>,\n      \"country\": \"<country-code>\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/clients","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["clients"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"42d15f5a-3063-4fd3-8bb6-8e7738fb2e05","name":"Create a client","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"client\": {\n    \"name\": \"Parker, Jaskolski and O'Keefe\",\n    \"salesperson_id\": \"<integer>\",\n    \"website\": \"https://vivien.org\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Totam et eaque rerum cupiditate quos. Ut et esse incidunt porro.\",\n    \"primary_location\": {\n      \"name\": \"Brandyntown Location\",\n      \"email_invoice\": \"Edison_Christiansen@example.com\",\n      \"phone_primary\": \"393-622-2562\",\n      \"phone_secondary\": \"317-966-5081\",\n      \"phone_fax\": \"902-626-2357\",\n      \"address_1\": \"813 Zemlak Harbors\",\n      \"address_2\": \"STE 874\",\n      \"city\": \"Westminster\",\n      \"state\": \"<string>\",\n      \"zip\": <string>,\n      \"country\": \"<country-code>\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/clients"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"6\",\n    \"name\": \"Pfeffer, Gutkowski and Ziemann\",\n    \"account_code\": \"\",\n    \"email_invoice\": null,\n    \"website\": \"http://buddy.org\",\n    \"notes\": \"Rerum omnis eos ullam animi qui debitis nihil animi. Et aliquam vitae deserunt omnis rerum beatae similique officiis quia. Repudiandae ut non et dolore. Omnis sint repellat omnis fugiat. Rerum id voluptatibus officia et sunt enim. Esse voluptatem velit a rerum.\",\n    \"location_count\": \"1\",\n    \"user_count\": \"0\",\n    \"investigator_count\": \"0\",\n    \"created_at\": \"2026-02-02 21:50:29\",\n    \"updated_at\": \"2026-02-02 21:50:29\",\n    \"route_prefix\": \"client\",\n    \"Salesperson\": null,\n    \"CaseManager\": null,\n    \"Locations\": [\n        {\n            \"id\": \"7\",\n            \"name\": \"Des Moines Location\",\n            \"email_invoice\": \"Verlie78@example.net\",\n            \"address_1\": \"65643 Oberbrunner Parkways\",\n            \"address_2\": \"STE 249\",\n            \"address_3\": \"\",\n            \"city\": \"Lake Colbyview\",\n            \"state\": \"CO\",\n            \"zip\": \"80202\",\n            \"country\": \"US\",\n            \"phone_primary\": \"569-763-5529\",\n            \"phone_secondary\": \"601-761-4404\",\n            \"phone_fax\": \"900-456-7469\",\n            \"notes\": \"\",\n            \"route_prefix\": \"client\"\n        }\n    ]\n}"}],"_postman_id":"d499764f-e5fc-47aa-8b40-59b55b65c1f6"},{"name":"Update a client","id":"75fe0c15-5e16-4962-9f6f-7b21534250a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"client\": {\n    \"name\": \"Morissette, Waters and Lowe Location\",\n    \"website\": \"http://eleanora.info\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Eius est facere pariatur sit. Assumenda est voluptas officiis laborum nam. Cum in omnis ad dolorum cum consectetur sit perspiciatis vitae. Repellendus quidem quae optio voluptatem et aut pariatur.\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/clients/:client_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["clients",":client_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_id"}]}},"response":[{"id":"2fc23591-5378-4ece-831d-d48c49f33aa9","name":"Update a client","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"client\": {\n    \"name\": \"Conn, Mitchell and Runolfsson Location\",\n    \"website\": \"http://alvah.biz\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Qui omnis voluptas est et distinctio dolores. Mollitia dolore quas qui adipisci. Ut asperiores quam qui quo natus nisi enim. Odio corporis qui quod amet architecto non accusantium. Non fuga nesciunt.\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/clients/:client_id","host":["/api/v1"],"path":["clients",":client_id"],"variable":[{"key":"client_id","value":"<integer>","description":"ID of the client"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"name\": \"Homenick Group Location\",\n    \"account_code\": \"SAMPLE\",\n    \"email_invoice\": \"example@trackops.com\",\n    \"website\": \"https://timmy.info\",\n    \"notes\": \"Distinctio omnis consectetur praesentium est. Beatae placeat rerum. Architecto beatae et. Consequatur unde itaque sed vitae et libero dicta necessitatibus quia.\",\n    \"location_count\": \"2\",\n    \"user_count\": \"2\",\n    \"investigator_count\": \"0\",\n    \"created_at\": \"2011-04-04 23:15:00\",\n    \"updated_at\": \"2026-02-02 21:50:41\",\n    \"route_prefix\": \"client\",\n    \"Salesperson\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"CaseManager\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"Locations\": [\n        {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"email_invoice\": \"\",\n            \"address_1\": \"123 Main Street\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"Beverly Hills\",\n            \"state\": \"CA\",\n            \"zip\": \"90210\",\n            \"country\": \"US\",\n            \"phone_primary\": \"555-555-5555\",\n            \"phone_secondary\": \"555-555-5556\",\n            \"phone_fax\": \"555-555-5557\",\n            \"notes\": \"\",\n            \"route_prefix\": \"client\"\n        },\n        {\n            \"id\": \"5\",\n            \"name\": \"Rutheshire Office\",\n            \"email_invoice\": \"Kali_Bechtelar12@example.net\",\n            \"address_1\": \"22840 Bahringer Dale\",\n            \"address_2\": \"STE 745\",\n            \"address_3\": \"\",\n            \"city\": \"New Anderson\",\n            \"state\": \"CO\",\n            \"zip\": \"80202\",\n            \"country\": \"US\",\n            \"phone_primary\": \"801-474-9794\",\n            \"phone_secondary\": \"841-542-6273\",\n            \"phone_fax\": \"557-332-3139\",\n            \"notes\": \"\",\n            \"route_prefix\": \"client\"\n        }\n    ]\n}"}],"_postman_id":"75fe0c15-5e16-4962-9f6f-7b21534250a9"}],"id":"1a302551-ac88-44c3-af03-511d85137278","description":"<p>Clients are parent organizations that contain client locations. Client specific settings that trickle down to client locations and client contacts are often defined at the client level.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/search/click?data=BAh7DjoHaWRpBJcHqAw6D2FjY291bnRfaWRpA7skAToJdHlwZUkiDGFydGljbGUGOgZFVDoIdXJsSSJTaHR0cHM6Ly9zdXBwb3J0LnRyYWNrb3BzLmNvbS9oYy9lbi11cy9hcnRpY2xlcy8yMTIzMzg1ODMtQ3JlYXRpbmctYS1OZXctQ2xpZW50BjsIVDoOc2VhcmNoX2lkSSIpYzNiYzE5MjQtMTlkOS00YmUxLWE3YzAtYjBiNDg4ZTU3Y2JmBjsIRjoJcmFua2kGOgtsb2NhbGVJIgplbi11cwY7CFQ6CnF1ZXJ5SSILY2xpZW50BjsIVDoScmVzdWx0c19jb3VudGkBhQ%3D%3D--4187ee1fffcc0a9a6fb751bc17c3e7db7804271c\">Creating a New Client</a></p>\n","_postman_id":"1a302551-ac88-44c3-af03-511d85137278","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Custom Fields","item":[{"name":"Get a custom field","id":"060cd096-f9cb-4a16-81e3-f3da1a42a4e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/fields/:custom_field_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["fields",":custom_field_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the custom field</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"custom_field_id"}]}},"response":[{"id":"a3a579c2-4400-48c1-84b7-1ff7057ae32c","name":"Get a custom field","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/fields/:custom_field_id","host":["/api/v1"],"path":["fields",":custom_field_id"],"variable":[{"key":"custom_field_id","value":"<integer>","description":"ID of the custom field"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"61\",\n    \"name\": \"Insured\",\n    \"choices\": \"\",\n    \"default_value\": \"\",\n    \"is_required\": false,\n    \"is_sensitive\": false,\n    \"FieldType\": {\n        \"id\": \"1\",\n        \"tag\": \"INPUT\",\n        \"name\": \"Input (Short Answer)\"\n    }\n}"}],"_postman_id":"060cd096-f9cb-4a16-81e3-f3da1a42a4e2"},{"name":"List custom fields","id":"870ddbe6-768e-49d9-a14d-b5ebce0c15a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/fields","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["fields"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"96e49a58-0c20-4eb3-8510-8b85cfe17270","name":"List custom fields","originalRequest":{"method":"GET","header":[],"url":"/api/v1/fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"61\",\n        \"name\": \"Insured\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"60\",\n        \"name\": \"Evidence of Fraud\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"59\",\n        \"name\": \"Recommendations\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"58\",\n        \"name\": \"Opportunity for Video\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"13\",\n            \"tag\": \"YESNONA\",\n            \"name\": \"Yes, No or N/A\"\n        }\n    },\n    {\n        \"id\": \"57\",\n        \"name\": \"Weather\",\n        \"choices\": \"[\\\"Sunny\\\",\\\"Cloudy\\\",\\\"Rainy\\\",\\\"Snowy\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"56\",\n        \"name\": \"Minutes of Video\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"11\",\n            \"tag\": \"NUMBER\",\n            \"name\": \"Number\"\n        }\n    },\n    {\n        \"id\": \"55\",\n        \"name\": \"Employment Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"54\",\n        \"name\": \"Employer Phone\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"53\",\n        \"name\": \"Employer Address\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"16\",\n            \"tag\": \"ADDRESS\",\n            \"name\": \"Address (Address, City, State, Zip, Country)\"\n        }\n    },\n    {\n        \"id\": \"52\",\n        \"name\": \"Contact Employer?\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"51\",\n        \"name\": \"Contact Claimant?\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"50\",\n        \"name\": \"Vehicle Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"49\",\n        \"name\": \"Glasses\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"48\",\n        \"name\": \"Family\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"47\",\n        \"name\": \"Relationship Status\",\n        \"choices\": \"[\\\"\\\",\\\"Single\\\",\\\"Dating\\\",\\\"Divorced (Dating)\\\",\\\"Divorced (Single)\\\",\\\"Married\\\",\\\"Widowed\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"46\",\n        \"name\": \"Eyes\",\n        \"choices\": \"[\\\"\\\",\\\"Amber\\\",\\\"Blue\\\",\\\"Brown\\\",\\\"Gray\\\",\\\"Green\\\",\\\"Hazel\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"45\",\n        \"name\": \"Hair\",\n        \"choices\": \"[\\\"\\\",\\\"Bald\\\",\\\"Black\\\",\\\"Blonde\\\",\\\"Brown\\\",\\\"White\\\",\\\"Other\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"44\",\n        \"name\": \"Occupation\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"43\",\n        \"name\": \"Notes\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"42\",\n        \"name\": \"Other Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"41\",\n        \"name\": \"Injury Restrictions\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"40\",\n        \"name\": \"Date of Loss\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"4\",\n            \"tag\": \"DATE\",\n            \"name\": \"Date\"\n        }\n    },\n    {\n        \"id\": \"39\",\n        \"name\": \"Injury\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"38\",\n        \"name\": \"Claim Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"37\",\n        \"name\": \"Employer\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"36\",\n        \"name\": \"Contact Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"35\",\n        \"name\": \"Physical Characteristics\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"34\",\n        \"name\": \"Email\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"21\",\n            \"tag\": \"EMAIL\",\n            \"name\": \"Email Address\"\n        }\n    },\n    {\n        \"id\": \"33\",\n        \"name\": \"Primary Contact\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"32\",\n        \"name\": \"Vehicle Description\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"31\",\n        \"name\": \"Registered To\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"30\",\n        \"name\": \"License Plate\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"29\",\n        \"name\": \"Office phone\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"28\",\n        \"name\": \"Weight\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"27\",\n        \"name\": \"Name\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"26\",\n        \"name\": \"Home Address\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"16\",\n            \"tag\": \"ADDRESS\",\n            \"name\": \"Address (Address, City, State, Zip, Country)\"\n        }\n    },\n    {\n        \"id\": \"16\",\n        \"name\": \"Other Characteristics\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"14\",\n        \"name\": \"Cell Phone\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"11\",\n        \"name\": \"Build\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"7\",\n        \"name\": \"Height\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"6\",\n        \"name\": \"Race\",\n        \"choices\": \"[\\\"\\\",\\\"Asian\\\",\\\"Black\\\",\\\"Hispanic\\\",\\\"Middle Eastern\\\",\\\"White\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"5\",\n        \"name\": \"Sex\",\n        \"choices\": \"[\\\"Male\\\",\\\"Female\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"15\",\n            \"tag\": \"RADIO\",\n            \"name\": \"Multiple Choice (Radio)\"\n        }\n    },\n    {\n        \"id\": \"4\",\n        \"name\": \"SSN\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": true,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"3\",\n        \"name\": \"Alias\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Date of Birth\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"22\",\n            \"tag\": \"BIRTHDAY\",\n            \"name\": \"Date (Birthday)\"\n        }\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Full Name\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"17\",\n            \"tag\": \"NAME\",\n            \"name\": \"Name (First, Middle, Last)\"\n        }\n    }\n]"}],"_postman_id":"870ddbe6-768e-49d9-a14d-b5ebce0c15a6"},{"name":"Search custom fields","id":"cafb055e-d3a7-4122-b259-cda75d84305b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/fields?id=<integer>&name=<string>&field_type=<integer>&field_type_tag=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["fields"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the custom field</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the custom field</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>ID of the field type</p>\n","type":"text/plain"},"key":"field_type","value":"<integer>"},{"description":{"content":"<p>Tag associated with the field type</p>\n","type":"text/plain"},"key":"field_type_tag","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"e86f27d9-7cb1-44b0-a2b9-83532122162e","name":"Search custom fields","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/fields?id=<integer>&name=<string>&field_type=<integer>&field_type_tag=<string>&page=<integer>","host":["/api/v1"],"path":["fields"],"query":[{"key":"id","value":"<integer>","description":"ID of the custom field"},{"key":"name","value":"<string>","description":"Name of the custom field"},{"key":"field_type","value":"<integer>","description":"ID of the field type"},{"key":"field_type_tag","value":"<string>","description":"Tag associated with the field type"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_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\": \"61\",\n        \"name\": \"Insured\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"60\",\n        \"name\": \"Evidence of Fraud\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"59\",\n        \"name\": \"Recommendations\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"58\",\n        \"name\": \"Opportunity for Video\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"13\",\n            \"tag\": \"YESNONA\",\n            \"name\": \"Yes, No or N/A\"\n        }\n    },\n    {\n        \"id\": \"57\",\n        \"name\": \"Weather\",\n        \"choices\": \"[\\\"Sunny\\\",\\\"Cloudy\\\",\\\"Rainy\\\",\\\"Snowy\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"56\",\n        \"name\": \"Minutes of Video\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"11\",\n            \"tag\": \"NUMBER\",\n            \"name\": \"Number\"\n        }\n    },\n    {\n        \"id\": \"55\",\n        \"name\": \"Employment Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"54\",\n        \"name\": \"Employer Phone\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"53\",\n        \"name\": \"Employer Address\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"16\",\n            \"tag\": \"ADDRESS\",\n            \"name\": \"Address (Address, City, State, Zip, Country)\"\n        }\n    },\n    {\n        \"id\": \"52\",\n        \"name\": \"Contact Employer?\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"51\",\n        \"name\": \"Contact Claimant?\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"50\",\n        \"name\": \"Vehicle Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"49\",\n        \"name\": \"Glasses\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"48\",\n        \"name\": \"Family\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"47\",\n        \"name\": \"Relationship Status\",\n        \"choices\": \"[\\\"\\\",\\\"Single\\\",\\\"Dating\\\",\\\"Divorced (Dating)\\\",\\\"Divorced (Single)\\\",\\\"Married\\\",\\\"Widowed\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"46\",\n        \"name\": \"Eyes\",\n        \"choices\": \"[\\\"\\\",\\\"Amber\\\",\\\"Blue\\\",\\\"Brown\\\",\\\"Gray\\\",\\\"Green\\\",\\\"Hazel\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"45\",\n        \"name\": \"Hair\",\n        \"choices\": \"[\\\"\\\",\\\"Bald\\\",\\\"Black\\\",\\\"Blonde\\\",\\\"Brown\\\",\\\"White\\\",\\\"Other\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"44\",\n        \"name\": \"Occupation\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"43\",\n        \"name\": \"Notes\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"42\",\n        \"name\": \"Other Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"41\",\n        \"name\": \"Injury Restrictions\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"40\",\n        \"name\": \"Date of Loss\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"4\",\n            \"tag\": \"DATE\",\n            \"name\": \"Date\"\n        }\n    },\n    {\n        \"id\": \"39\",\n        \"name\": \"Injury\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"38\",\n        \"name\": \"Claim Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"37\",\n        \"name\": \"Employer\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"36\",\n        \"name\": \"Contact Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"35\",\n        \"name\": \"Physical Characteristics\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"34\",\n        \"name\": \"Email\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"21\",\n            \"tag\": \"EMAIL\",\n            \"name\": \"Email Address\"\n        }\n    },\n    {\n        \"id\": \"33\",\n        \"name\": \"Primary Contact\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"32\",\n        \"name\": \"Vehicle Description\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"31\",\n        \"name\": \"Registered To\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"30\",\n        \"name\": \"License Plate\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"29\",\n        \"name\": \"Office phone\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"28\",\n        \"name\": \"Weight\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"27\",\n        \"name\": \"Name\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"26\",\n        \"name\": \"Home Address\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"16\",\n            \"tag\": \"ADDRESS\",\n            \"name\": \"Address (Address, City, State, Zip, Country)\"\n        }\n    },\n    {\n        \"id\": \"16\",\n        \"name\": \"Other Characteristics\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"14\",\n        \"name\": \"Cell Phone\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"11\",\n        \"name\": \"Build\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"7\",\n        \"name\": \"Height\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"6\",\n        \"name\": \"Race\",\n        \"choices\": \"[\\\"\\\",\\\"Asian\\\",\\\"Black\\\",\\\"Hispanic\\\",\\\"Middle Eastern\\\",\\\"White\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"5\",\n        \"name\": \"Sex\",\n        \"choices\": \"[\\\"Male\\\",\\\"Female\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"15\",\n            \"tag\": \"RADIO\",\n            \"name\": \"Multiple Choice (Radio)\"\n        }\n    },\n    {\n        \"id\": \"4\",\n        \"name\": \"SSN\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": true,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"3\",\n        \"name\": \"Alias\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Date of Birth\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"22\",\n            \"tag\": \"BIRTHDAY\",\n            \"name\": \"Date (Birthday)\"\n        }\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Full Name\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"17\",\n            \"tag\": \"NAME\",\n            \"name\": \"Name (First, Middle, Last)\"\n        }\n    }\n]"}],"_postman_id":"cafb055e-d3a7-4122-b259-cda75d84305b"}],"id":"4ac49f46-4eff-4661-af49-638826934777","description":"<p>Custom fields capture unique or business-specific information across various features in Trackops.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212336843-How-to-Create-Custom-Fields\">How to Create Custom Fields</a></p>\n","_postman_id":"4ac49f46-4eff-4661-af49-638826934777","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Expense Entries","item":[{"name":"Get an expense entry","id":"5d4bf2e1-8206-410f-bed6-497cedf21291","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/expense/entries/:expense_entry_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","entries",":expense_entry_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the expense entry</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"expense_entry_id"}]}},"response":[{"id":"0f4361d4-043d-45db-8c7a-fc568ef43330","name":"Get an expense entry","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/expense/entries/:expense_entry_id","host":["/api/v1"],"path":["expense","entries",":expense_entry_id"],"variable":[{"key":"expense_entry_id","value":"<integer>","description":"ID of the expense entry"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"entry_number\": \"1\",\n    \"entry_date\": \"2026-02-03\",\n    \"created_at\": \"2026-02-02 21:16:49\",\n    \"updated_at\": \"2026-02-03 15:32:49\",\n    \"hour_total\": \"662.00\",\n    \"wage_total\": \"467967.80\",\n    \"expense_total\": \"373800.48\",\n    \"entry_total\": \"841768.28\",\n    \"notes\": \"Deserunt autem quo consequatur eius asperiores est amet eos. Tempora suscipit accusantium iusto enim aut aut. Ex eaque quaerat ab. Sapiente veniam ea.\",\n    \"photo_file\": null,\n    \"expense_slip_id\": \"1\",\n    \"entry_status\": \"paid\",\n    \"formatted_entry_number\": \"EXP-00001\",\n    \"User\": {\n        \"id\": \"3\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-03\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"TrackingCategory\": {\n        \"id\": \"1\",\n        \"name\": \"Sales territory A\"\n    },\n    \"ExpenseDetails\": [\n        {\n            \"id\": \"13\",\n            \"expense_entry_id\": \"1\",\n            \"expense_detail_rank\": \"1\",\n            \"rate\": \"706.900\",\n            \"quantity\": \"662.000\",\n            \"total\": \"467967.80\",\n            \"notes\": \"Perferendis voluptatem nihil veniam.\",\n            \"is_invoiced\": false,\n            \"invoice_id\": null,\n            \"FinanceItem\": {\n                \"id\": \"1\",\n                \"name\": \"Work Hours\",\n                \"expense_alias\": \"Work Hours\"\n            },\n            \"ItemCode\": {\n                \"id\": \"1\",\n                \"code\": \"E109\",\n                \"name\": \"Local travel\"\n            }\n        },\n        {\n            \"id\": \"14\",\n            \"expense_entry_id\": \"1\",\n            \"expense_detail_rank\": \"2\",\n            \"rate\": \"753.630\",\n            \"quantity\": \"496.000\",\n            \"total\": \"373800.48\",\n            \"notes\": \"Aut provident reprehenderit nesciunt.\",\n            \"is_invoiced\": false,\n            \"invoice_id\": null,\n            \"FinanceItem\": {\n                \"id\": \"2\",\n                \"name\": \"Mileage\",\n                \"expense_alias\": \"Mileage\"\n            },\n            \"ItemCode\": null\n        }\n    ]\n}"}],"_postman_id":"5d4bf2e1-8206-410f-bed6-497cedf21291"},{"name":"List expense entries","id":"3b724d7b-b86a-4400-80ff-b77716fd45af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/expense/entries","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","entries"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"7e704226-abf8-4a19-aeb9-eb122c503f5f","name":"List expense entries","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/expense/entries"},"status":"OK","code":200,"_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\": \"1\",\n        \"entry_number\": \"1\",\n        \"entry_date\": \"2026-02-07\",\n        \"created_at\": \"2026-02-02 21:16:49\",\n        \"updated_at\": \"2026-02-02 21:16:49\",\n        \"hour_total\": \"5.00\",\n        \"wage_total\": \"225.00\",\n        \"expense_total\": \"25.00\",\n        \"entry_total\": \"250.00\",\n        \"notes\": \"\",\n        \"photo_file\": null,\n        \"expense_slip_id\": null,\n        \"entry_status\": \"pending\",\n        \"formatted_entry_number\": \"EXP-00001\",\n        \"User\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"TrackingCategory\": null,\n        \"ExpenseDetails\": [\n            {\n                \"id\": \"2\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"2\",\n                \"rate\": \"50.000\",\n                \"quantity\": \"4.000\",\n                \"total\": \"200.00\",\n                \"notes\": \"On-site hours\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"1\",\n                    \"name\": \"Work Hours\",\n                    \"expense_alias\": \"Work Hours\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"4\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"4\",\n                \"rate\": \"0.500\",\n                \"quantity\": \"40.000\",\n                \"total\": \"20.00\",\n                \"notes\": \"Mileage to and from claimant residence\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"2\",\n                    \"name\": \"Mileage\",\n                    \"expense_alias\": \"Mileage\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"1\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"1\",\n                \"rate\": \"25.000\",\n                \"quantity\": \"0.500\",\n                \"total\": \"12.50\",\n                \"notes\": \"Travel to claimant residence\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"3\",\n                    \"name\": \"Travel Hours\",\n                    \"expense_alias\": \"Travel Hours\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"3\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"3\",\n                \"rate\": \"25.000\",\n                \"quantity\": \"0.500\",\n                \"total\": \"12.50\",\n                \"notes\": \"Travel home from claimant residence\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"3\",\n                    \"name\": \"Travel Hours\",\n                    \"expense_alias\": \"Travel Hours\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"5\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"5\",\n                \"rate\": \"5.000\",\n                \"quantity\": \"1.000\",\n                \"total\": \"5.00\",\n                \"notes\": \"Tolls at the bridge\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"4\",\n                    \"name\": \"Miscellaneous\",\n                    \"expense_alias\": \"Miscellaneous\"\n                },\n                \"ItemCode\": null\n            }\n        ]\n    }\n]"}],"_postman_id":"3b724d7b-b86a-4400-80ff-b77716fd45af"},{"name":"Search expense entries","id":"22f0c108-3927-49f9-9722-dcbd2b9b8fa4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/expense/entries?id=<integer>&entry_number=<integer>&expense_slip=<integer>&case=<integer>&status=<pending|approved|declined|committed|paid|voided>&tracking_category=<integer>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&date_from=<datestamp>&date_to=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","entries"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the expense entry</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Entry number of the expense entry</p>\n","type":"text/plain"},"key":"entry_number","value":"<integer>"},{"description":{"content":"<p>ID of the expense payment slip associated with the expense entry</p>\n","type":"text/plain"},"key":"expense_slip","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the expense entry</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>The status (enum) associated with the expense entry</p>\n","type":"text/plain"},"key":"status","value":"<pending|approved|declined|committed|paid|voided>"},{"description":{"content":"<p>ID of the tracking category associated with the expense entry</p>\n","type":"text/plain"},"key":"tracking_category","value":"<integer>"},{"description":{"content":"<p>ID of the user associated with the expense entry</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ISO date the expense entry was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the expense entry was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the expense entry is for \"from\"</p>\n","type":"text/plain"},"key":"date_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the expense entry is for \"to\"</p>\n","type":"text/plain"},"key":"date_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of date_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of date_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the expense entry was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the expense entry was created \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"ddf36dc7-34c2-4042-a3b0-bace1b35c688","name":"Search expense entries","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/expense/entries?id=<integer>&entry_number=<integer>&expense_slip=<integer>&case=<integer>&status=<pending|approved|declined|committed|paid|voided>&tracking_category=<integer>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&date_from=<datestamp>&date_to=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["expense","entries"],"query":[{"key":"id","value":"<integer>","description":"ID of the expense entry"},{"key":"entry_number","value":"<integer>","description":"Entry number of the expense entry"},{"key":"expense_slip","value":"<integer>","description":"ID of the expense payment slip associated with the expense entry"},{"key":"case","value":"<integer>","description":"ID of the case associated with the expense entry"},{"key":"status","value":"<pending|approved|declined|committed|paid|voided>","description":"The status (enum) associated with the expense entry"},{"key":"tracking_category","value":"<integer>","description":"ID of the tracking category associated with the expense entry"},{"key":"user","value":"<integer>","description":"ID of the user associated with the expense entry"},{"key":"created_from","value":"<datestamp>","description":"ISO date the expense entry was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the expense entry was created \"to\""},{"key":"date_from","value":"<datestamp>","description":"ISO date the expense entry is for \"from\""},{"key":"date_to","value":"<datestamp>","description":"ISO date the expense entry is for \"to\""},{"key":"from","value":"<datestamp>","description":"Alias of date_from"},{"key":"to","value":"<datestamp>","description":"Alias of date_to"},{"key":"updated_from","value":"<datestamp>","description":"ISO date the expense entry was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the expense entry was created \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_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\": \"1\",\n        \"entry_number\": \"1\",\n        \"entry_date\": \"2026-02-07\",\n        \"created_at\": \"2026-02-02 21:16:49\",\n        \"updated_at\": \"2026-02-02 21:16:49\",\n        \"hour_total\": \"5.00\",\n        \"wage_total\": \"225.00\",\n        \"expense_total\": \"25.00\",\n        \"entry_total\": \"250.00\",\n        \"notes\": \"\",\n        \"photo_file\": null,\n        \"expense_slip_id\": null,\n        \"entry_status\": \"pending\",\n        \"formatted_entry_number\": \"EXP-00001\",\n        \"User\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"TrackingCategory\": null,\n        \"ExpenseDetails\": [\n            {\n                \"id\": \"2\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"2\",\n                \"rate\": \"50.000\",\n                \"quantity\": \"4.000\",\n                \"total\": \"200.00\",\n                \"notes\": \"On-site hours\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"1\",\n                    \"name\": \"Work Hours\",\n                    \"expense_alias\": \"Work Hours\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"4\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"4\",\n                \"rate\": \"0.500\",\n                \"quantity\": \"40.000\",\n                \"total\": \"20.00\",\n                \"notes\": \"Mileage to and from claimant residence\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"2\",\n                    \"name\": \"Mileage\",\n                    \"expense_alias\": \"Mileage\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"1\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"1\",\n                \"rate\": \"25.000\",\n                \"quantity\": \"0.500\",\n                \"total\": \"12.50\",\n                \"notes\": \"Travel to claimant residence\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"3\",\n                    \"name\": \"Travel Hours\",\n                    \"expense_alias\": \"Travel Hours\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"3\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"3\",\n                \"rate\": \"25.000\",\n                \"quantity\": \"0.500\",\n                \"total\": \"12.50\",\n                \"notes\": \"Travel home from claimant residence\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"3\",\n                    \"name\": \"Travel Hours\",\n                    \"expense_alias\": \"Travel Hours\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"5\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"5\",\n                \"rate\": \"5.000\",\n                \"quantity\": \"1.000\",\n                \"total\": \"5.00\",\n                \"notes\": \"Tolls at the bridge\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"4\",\n                    \"name\": \"Miscellaneous\",\n                    \"expense_alias\": \"Miscellaneous\"\n                },\n                \"ItemCode\": null\n            }\n        ]\n    }\n]"}],"_postman_id":"22f0c108-3927-49f9-9722-dcbd2b9b8fa4"},{"name":"Create an expense entry","id":"4eadb1f9-7b72-4dc9-a1b8-6655328000f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_entry\": {\n    \"casefile_id\": \"<integer>\",\n    \"user_id\": \"<integer>\",\n    \"tracking_category_id\": \"<integer>\",\n    \"entry_date\": \"<datestamp>\",\n    \"event_id\": null,\n    \"notes\": \"Ut consectetur est maiores ullam delectus non repudiandae quis dignissimos. Et culpa harum perferendis quis placeat. Qui qui doloribus cum est quaerat. Cum magnam deserunt aliquid sed qui debitis officiis reprehenderit maiores. Quidem excepturi dolore et unde omnis porro velit amet quia. Soluta sit veniam in molestias necessitatibus.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"896.61\",\n            \"quantity\": \"548\",\n            \"notes\": \"Provident consequatur qui repellendus accusamus voluptatibus iusto laboriosam ab accusamus.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"714.61\",\n            \"quantity\": \"426\",\n            \"notes\": \"Magni ut dolorum optio vero quae.\"\n        }      \n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/expense/entries","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","entries"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"9cd3d6ec-917f-4697-a868-058601b0235d","name":"Create an expense entry","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_entry\": {\n    \"casefile_id\": \"<integer>\",\n    \"user_id\": \"<integer>\",\n    \"tracking_category_id\": \"<integer>\",\n    \"entry_date\": \"<datestamp>\",\n    \"event_id\": null,\n    \"notes\": \"Deleniti ut ab aut facere fugiat beatae. Quos nesciunt placeat consequatur. Qui minima sequi hic. Tenetur mollitia ut consequuntur quos. Tenetur reprehenderit officia quos harum illum aliquam tenetur ut. Rerum neque unde odio non qui voluptate ab laboriosam corrupti.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"570.57\",\n            \"quantity\": \"860\",\n            \"notes\": \"Et sit consequatur sint id.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"690.02\",\n            \"quantity\": \"289\",\n            \"notes\": \"Veritatis quo architecto in amet enim pariatur voluptatem repudiandae corporis.\"\n        }      \n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/expense/entries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"entry_number\": \"2\",\n    \"entry_date\": \"2026-02-03\",\n    \"created_at\": \"2026-02-03 15:32:11\",\n    \"updated_at\": \"2026-02-03 15:32:11\",\n    \"hour_total\": \"755.00\",\n    \"wage_total\": \"250078.65\",\n    \"expense_total\": \"62736.08\",\n    \"entry_total\": \"312814.73\",\n    \"notes\": \"Magnam omnis eveniet ut non. Est est ut rerum et voluptas totam ut harum nostrum.\",\n    \"photo_file\": null,\n    \"expense_slip_id\": null,\n    \"entry_status\": \"pending\",\n    \"formatted_entry_number\": \"EXP-00002\",\n    \"User\": {\n        \"id\": \"3\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"TrackingCategory\": {\n        \"id\": \"1\",\n        \"name\": \"Sales territory A\"\n    },\n    \"ExpenseDetails\": [\n        {\n            \"id\": \"11\",\n            \"expense_entry_id\": \"2\",\n            \"expense_detail_rank\": \"1\",\n            \"rate\": \"331.230\",\n            \"quantity\": \"755.000\",\n            \"total\": \"250078.65\",\n            \"notes\": \"Est vel minus quo fugit consectetur qui enim omnis.\",\n            \"is_invoiced\": false,\n            \"invoice_id\": null,\n            \"FinanceItem\": {\n                \"id\": \"1\",\n                \"name\": \"Work Hours\",\n                \"expense_alias\": \"Work Hours\"\n            },\n            \"ItemCode\": {\n                \"id\": \"1\",\n                \"code\": \"E109\",\n                \"name\": \"Local travel\"\n            }\n        },\n        {\n            \"id\": \"12\",\n            \"expense_entry_id\": \"2\",\n            \"expense_detail_rank\": \"2\",\n            \"rate\": \"259.240\",\n            \"quantity\": \"242.000\",\n            \"total\": \"62736.08\",\n            \"notes\": \"Sint numquam nulla nobis.\",\n            \"is_invoiced\": false,\n            \"invoice_id\": null,\n            \"FinanceItem\": {\n                \"id\": \"2\",\n                \"name\": \"Mileage\",\n                \"expense_alias\": \"Mileage\"\n            },\n            \"ItemCode\": null\n        }\n    ]\n}"}],"_postman_id":"4eadb1f9-7b72-4dc9-a1b8-6655328000f4"},{"name":"Update an expense entry","id":"06c37f3a-287d-49f9-a7dd-d28b2249ec63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_entry\": {\n    \"casefile_id\": \"<integer>\",\n    \"user_id\": \"<integer>\",\n    \"tracking_category_id\": \"<integer>\",\n    \"entry_date\": \"<datestamp>\",\n    \"event_id\": null,\n    \"notes\": \"Fugiat explicabo id et labore officia quidem perspiciatis. Neque laudantium facere vel nemo possimus a. Placeat et exercitationem tempore quis quo. Eius dignissimos fugiat error earum. Repellendus perferendis nobis enim est. Est ex quis sed eum ut possimus similique ullam provident.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"622.61\",\n            \"quantity\": \"214\",\n            \"notes\": \"Veniam ipsum soluta voluptatem id esse iure aut nostrum non.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"730.62\",\n            \"quantity\": \"706\",\n            \"notes\": \"Rerum dolore qui est libero et ut.\"\n        }      \n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/expense/entries/:expense_entry_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","entries",":expense_entry_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the expense entry</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"expense_entry_id"}]}},"response":[{"id":"b9614ae5-77f1-414d-9f6b-11078c47c1c9","name":"Update an expense entry","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_entry\": {\n    \"casefile_id\": \"<integer>\",\n    \"user_id\": \"<integer>\",\n    \"tracking_category_id\": \"<integer>\",\n    \"entry_date\": \"<datestamp>\",\n    \"event_id\": null,\n    \"notes\": \"Molestias libero consequatur sit repellat et quis. Aut quisquam quasi. Quod facere saepe earum sed sint.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"74.24\",\n            \"quantity\": \"761\",\n            \"notes\": \"Repellendus voluptas ipsam officiis.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"426.95\",\n            \"quantity\": \"217\",\n            \"notes\": \"Velit doloribus laborum quasi cum ut aliquam accusamus et accusantium.\"\n        }      \n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/expense/entries/:expense_entry_id","host":["/api/v1"],"path":["expense","entries",":expense_entry_id"],"variable":[{"key":"expense_entry_id","value":"<integer>","description":"ID of the expense entry"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"entry_number\": \"1\",\n    \"entry_date\": \"2026-02-03\",\n    \"created_at\": \"2026-02-02 21:16:49\",\n    \"updated_at\": \"2026-02-03 15:32:16\",\n    \"hour_total\": \"662.00\",\n    \"wage_total\": \"467967.80\",\n    \"expense_total\": \"373800.48\",\n    \"entry_total\": \"841768.28\",\n    \"notes\": \"Deserunt autem quo consequatur eius asperiores est amet eos. Tempora suscipit accusantium iusto enim aut aut. Ex eaque quaerat ab. Sapiente veniam ea.\",\n    \"photo_file\": null,\n    \"expense_slip_id\": null,\n    \"entry_status\": \"pending\",\n    \"formatted_entry_number\": \"EXP-00001\",\n    \"User\": {\n        \"id\": \"3\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"TrackingCategory\": {\n        \"id\": \"1\",\n        \"name\": \"Sales territory A\"\n    },\n    \"ExpenseDetails\": [\n        {\n            \"id\": \"13\",\n            \"expense_entry_id\": \"1\",\n            \"expense_detail_rank\": \"1\",\n            \"rate\": \"706.900\",\n            \"quantity\": \"662.000\",\n            \"total\": \"467967.80\",\n            \"notes\": \"Perferendis voluptatem nihil veniam.\",\n            \"is_invoiced\": false,\n            \"invoice_id\": null,\n            \"FinanceItem\": {\n                \"id\": \"1\",\n                \"name\": \"Work Hours\",\n                \"expense_alias\": \"Work Hours\"\n            },\n            \"ItemCode\": {\n                \"id\": \"1\",\n                \"code\": \"E109\",\n                \"name\": \"Local travel\"\n            }\n        },\n        {\n            \"id\": \"14\",\n            \"expense_entry_id\": \"1\",\n            \"expense_detail_rank\": \"2\",\n            \"rate\": \"753.630\",\n            \"quantity\": \"496.000\",\n            \"total\": \"373800.48\",\n            \"notes\": \"Aut provident reprehenderit nesciunt.\",\n            \"is_invoiced\": false,\n            \"invoice_id\": null,\n            \"FinanceItem\": {\n                \"id\": \"2\",\n                \"name\": \"Mileage\",\n                \"expense_alias\": \"Mileage\"\n            },\n            \"ItemCode\": null\n        }\n    ]\n}"}],"_postman_id":"06c37f3a-287d-49f9-a7dd-d28b2249ec63"}],"id":"3374b9bb-cbcc-4e2d-84f1-c1803d5a395e","description":"<p>Expense entries capture the time and expenses incurred by staff members working cases.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338283-Submitting-Case-Expenses\">Submitting Case Expenses</a>, <a href=\"https://support.trackops.com/hc/en-us/articles/212337803-Converting-your-Expenses-into-Invoices\">Converting your Expenses into Invoices</a></p>\n","_postman_id":"3374b9bb-cbcc-4e2d-84f1-c1803d5a395e","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Expense Payment Slips","item":[{"name":"Get an expense payment slip","id":"20cf29ce-2a3c-4638-9e8c-2ca3c06b5bca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/expense/slips/:payment_slip_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","slips",":payment_slip_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the payment slip</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"payment_slip_id"}]}},"response":[{"id":"c6a8868e-ff1d-4985-94ee-19385b6ae690","name":"Get an expense payment slip","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/expense/slips/:payment_slip_id","host":["/api/v1"],"path":["expense","slips",":payment_slip_id"],"variable":[{"key":"payment_slip_id","value":"<integer>","description":"ID of the payment slip"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"slip_number\": \"1\",\n    \"reference_numbers\": \"00001WC-01\",\n    \"entry_count\": \"2\",\n    \"period_start\": null,\n    \"period_end\": null,\n    \"use_overtime\": true,\n    \"hour_total\": \"1417.00\",\n    \"overtime_hour_total\": \"1377.00\",\n    \"wage_total\": \"718046.45\",\n    \"overtime_wage_total\": \"348889.11\",\n    \"wage_grand_total\": \"1066935.56\",\n    \"expense_total\": \"436536.56\",\n    \"slip_total\": \"1503472.12\",\n    \"amount_paid\": \"1503472.12\",\n    \"amount_due\": \"0.00\",\n    \"closed_on\": \"2026-02-03\",\n    \"created_at\": \"2026-02-03 15:33:11\",\n    \"updated_at\": \"2026-02-03 15:34:16\",\n    \"slip_status\": \"paid\",\n    \"formatted_slip_number\": \"SLIP-00001\",\n    \"User\": {\n        \"id\": \"3\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"ExpenseEntries\": [\n        {\n            \"id\": \"1\",\n            \"entry_date\": \"2026-02-03\",\n            \"created_at\": \"2026-02-02 21:16:49\",\n            \"updated_at\": \"2026-02-03 15:32:49\",\n            \"hour_total\": \"662.00\",\n            \"wage_total\": \"467967.80\",\n            \"expense_total\": \"373800.48\",\n            \"entry_total\": \"841768.28\",\n            \"notes\": \"Deserunt autem quo consequatur eius asperiores est amet eos. Tempora suscipit accusantium iusto enim aut aut. Ex eaque quaerat ab. Sapiente veniam ea.\"\n        },\n        {\n            \"id\": \"2\",\n            \"entry_date\": \"2026-02-03\",\n            \"created_at\": \"2026-02-03 15:32:11\",\n            \"updated_at\": \"2026-02-03 15:33:00\",\n            \"hour_total\": \"755.00\",\n            \"wage_total\": \"250078.65\",\n            \"expense_total\": \"62736.08\",\n            \"entry_total\": \"312814.73\",\n            \"notes\": \"Magnam omnis eveniet ut non. Est est ut rerum et voluptas totam ut harum nostrum.\"\n        }\n    ],\n    \"ExpensePayments\": [\n        {\n            \"id\": \"1\",\n            \"paid_on\": \"2026-02-03\",\n            \"reference_number\": \"Check #123\",\n            \"payment_amount\": \"1503472.12\",\n            \"notes\": \"\"\n        }\n    ]\n}"}],"_postman_id":"20cf29ce-2a3c-4638-9e8c-2ca3c06b5bca"},{"name":"List expense payment slips","id":"7a575181-d296-4e1f-aaae-bca088e40c47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/expense/slips","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","slips"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"770978ad-c30a-4cfb-92bd-cfd3d045a7d6","name":"List expense payment slips","originalRequest":{"method":"GET","header":[],"url":"/api/v1/expense/slips"},"status":"OK","code":200,"_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\": \"1\",\n        \"slip_number\": \"1\",\n        \"reference_numbers\": \"00001WC-01\",\n        \"entry_count\": \"2\",\n        \"period_start\": null,\n        \"period_end\": null,\n        \"use_overtime\": true,\n        \"hour_total\": \"1417.00\",\n        \"overtime_hour_total\": \"1377.00\",\n        \"wage_total\": \"718046.45\",\n        \"overtime_wage_total\": \"348889.11\",\n        \"wage_grand_total\": \"1066935.56\",\n        \"expense_total\": \"436536.56\",\n        \"slip_total\": \"1503472.12\",\n        \"amount_paid\": \"0.00\",\n        \"amount_due\": \"1503472.12\",\n        \"closed_on\": null,\n        \"created_at\": \"2026-02-03 15:33:11\",\n        \"updated_at\": \"2026-02-03 15:33:11\",\n        \"slip_status\": \"pending\",\n        \"formatted_slip_number\": \"SLIP-00001\",\n        \"User\": {\n            \"id\": \"3\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"ExpenseEntries\": [\n            {\n                \"id\": \"1\",\n                \"entry_date\": \"2026-02-03\",\n                \"created_at\": \"2026-02-02 21:16:49\",\n                \"updated_at\": \"2026-02-03 15:32:49\",\n                \"hour_total\": \"662.00\",\n                \"wage_total\": \"467967.80\",\n                \"expense_total\": \"373800.48\",\n                \"entry_total\": \"841768.28\",\n                \"notes\": \"Deserunt autem quo consequatur eius asperiores est amet eos. Tempora suscipit accusantium iusto enim aut aut. Ex eaque quaerat ab. Sapiente veniam ea.\"\n            },\n            {\n                \"id\": \"2\",\n                \"entry_date\": \"2026-02-03\",\n                \"created_at\": \"2026-02-03 15:32:11\",\n                \"updated_at\": \"2026-02-03 15:33:00\",\n                \"hour_total\": \"755.00\",\n                \"wage_total\": \"250078.65\",\n                \"expense_total\": \"62736.08\",\n                \"entry_total\": \"312814.73\",\n                \"notes\": \"Magnam omnis eveniet ut non. Est est ut rerum et voluptas totam ut harum nostrum.\"\n            }\n        ],\n        \"ExpensePayments\": []\n    }\n]"}],"_postman_id":"7a575181-d296-4e1f-aaae-bca088e40c47"},{"name":"Search expense payment slips","id":"830116a1-cd80-49c0-b6c8-c8780bb3ac5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/expense/slips?id=<integer>&slip_number=<integer>&status=<pending|partial_paid|paid|voided>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","slips"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the payment slip</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Auto-generated slip number associated with the payment slip</p>\n","type":"text/plain"},"key":"slip_number","value":"<integer>"},{"description":{"content":"<p>Status (enum) of the payment slip</p>\n","type":"text/plain"},"key":"status","value":"<pending|partial_paid|paid|voided>"},{"description":{"content":"<p>ID of the user associated with the payment slip</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ISO date the payment slip was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment slip was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment slip was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment slip was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"df58084a-efca-4a4e-a3bd-6d6170652c84","name":"Search expense payment slips","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/expense/slips?id=<integer>&slip_number=<integer>&status=<pending|partial_paid|paid|voided>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["expense","slips"],"query":[{"key":"id","value":"<integer>","description":"ID of the payment slip"},{"key":"slip_number","value":"<integer>","description":"Auto-generated slip number associated with the payment slip"},{"key":"status","value":"<pending|partial_paid|paid|voided>","description":"Status (enum) of the payment slip"},{"key":"user","value":"<integer>","description":"ID of the user associated with the payment slip"},{"key":"created_from","value":"<datestamp>","description":"ISO date the payment slip was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the payment slip was created \"to\""},{"key":"from","value":"<datestamp>","description":"Alias of created_from"},{"key":"to","value":"<datestamp>","description":"Alias of created_to"},{"key":"updated_from","value":"<datestamp>","description":"ISO date the payment slip was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the payment slip was updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_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\": \"1\",\n        \"slip_number\": \"1\",\n        \"reference_numbers\": \"00001WC-01\",\n        \"entry_count\": \"2\",\n        \"period_start\": null,\n        \"period_end\": null,\n        \"use_overtime\": true,\n        \"hour_total\": \"1417.00\",\n        \"overtime_hour_total\": \"1377.00\",\n        \"wage_total\": \"718046.45\",\n        \"overtime_wage_total\": \"348889.11\",\n        \"wage_grand_total\": \"1066935.56\",\n        \"expense_total\": \"436536.56\",\n        \"slip_total\": \"1503472.12\",\n        \"amount_paid\": \"0.00\",\n        \"amount_due\": \"1503472.12\",\n        \"closed_on\": null,\n        \"created_at\": \"2026-02-03 15:33:11\",\n        \"updated_at\": \"2026-02-03 15:33:11\",\n        \"slip_status\": \"pending\",\n        \"formatted_slip_number\": \"SLIP-00001\",\n        \"User\": {\n            \"id\": \"3\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"ExpenseEntries\": [\n            {\n                \"id\": \"1\",\n                \"entry_date\": \"2026-02-03\",\n                \"created_at\": \"2026-02-02 21:16:49\",\n                \"updated_at\": \"2026-02-03 15:32:49\",\n                \"hour_total\": \"662.00\",\n                \"wage_total\": \"467967.80\",\n                \"expense_total\": \"373800.48\",\n                \"entry_total\": \"841768.28\",\n                \"notes\": \"Deserunt autem quo consequatur eius asperiores est amet eos. Tempora suscipit accusantium iusto enim aut aut. Ex eaque quaerat ab. Sapiente veniam ea.\"\n            },\n            {\n                \"id\": \"2\",\n                \"entry_date\": \"2026-02-03\",\n                \"created_at\": \"2026-02-03 15:32:11\",\n                \"updated_at\": \"2026-02-03 15:33:00\",\n                \"hour_total\": \"755.00\",\n                \"wage_total\": \"250078.65\",\n                \"expense_total\": \"62736.08\",\n                \"entry_total\": \"312814.73\",\n                \"notes\": \"Magnam omnis eveniet ut non. Est est ut rerum et voluptas totam ut harum nostrum.\"\n            }\n        ],\n        \"ExpensePayments\": []\n    }\n]"}],"_postman_id":"830116a1-cd80-49c0-b6c8-c8780bb3ac5f"},{"name":"Create an expense payment slip","id":"10b75886-9aff-4714-8bb3-a547a96d665b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_slip\": {\n    \"user_id\": \"<integer>\",\n    \"expense_entries_list\": [<integer>,<integer>],\n    \"use_overtime\": true\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/expense/slips","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","slips"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c36e7a78-779d-4f10-87e2-0b3d50ab3b92","name":"Create an expense payment slip","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_slip\": {\n    \"user_id\": <integer>,\n    \"expense_entries_list\": [<integer>],\n    \"use_overtime\": true\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/expense/slips"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":":status","value":200},{"key":"content-security-policy","value":"frame-ancestors 'none';object-src 'self' https://d1ssnvhbal8zta.cloudfront.net;media-src 'self' https://d1ssnvhbal8zta.cloudfront.net;script-src 'self' 'nonce-2d52e1e4088319022f08deb040546d05' https://js.stripe.com;upgrade-insecure-requests;block-all-mixed-content;"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"DENY"},{"key":"x-powered-by","value":"PHP/8.3.28"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-length","value":"1097"},{"key":"date","value":"Thu, 02 Apr 2026 20:23:42 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"slip_number\": \"1\",\n    \"reference_numbers\": \"00001WC-01\",\n    \"entry_count\": \"1\",\n    \"period_start\": null,\n    \"period_end\": null,\n    \"use_overtime\": true,\n    \"hour_total\": \"662.00\",\n    \"overtime_hour_total\": \"622.00\",\n    \"wage_total\": \"467967.80\",\n    \"overtime_wage_total\": \"219845.90\",\n    \"wage_grand_total\": \"687813.70\",\n    \"expense_total\": \"373800.48\",\n    \"slip_total\": \"1061614.18\",\n    \"amount_paid\": \"0.00\",\n    \"amount_due\": \"1061614.18\",\n    \"closed_on\": null,\n    \"created_at\": \"2026-04-02 20:23:42\",\n    \"updated_at\": \"2026-04-02 20:23:42\",\n    \"slip_status\": \"pending\",\n    \"formatted_slip_number\": \"SLIP-00001\",\n    \"User\": {\n        \"id\": \"1\",\n        \"first_name\": \"Jefferey\",\n        \"last_name\": \"Lebsack\",\n        \"email\": \"Mikel_Spinka@example.com\",\n        \"name\": \"Lebsack, Jefferey\",\n        \"proper_name\": \"Jefferey Lebsack\"\n    },\n    \"ExpenseEntries\": [\n        {\n            \"id\": \"1\",\n            \"entry_date\": \"2026-02-03\",\n            \"created_at\": \"2026-02-02 21:16:49\",\n            \"updated_at\": \"2026-02-03 15:32:49\",\n            \"hour_total\": \"662.00\",\n            \"wage_total\": \"467967.80\",\n            \"expense_total\": \"373800.48\",\n            \"entry_total\": \"841768.28\",\n            \"notes\": \"Deserunt autem quo consequatur eius asperiores est amet eos. Tempora suscipit accusantium iusto enim aut aut. Ex eaque quaerat ab. Sapiente veniam ea.\"\n        }\n    ],\n    \"ExpensePayments\": []\n}"}],"_postman_id":"10b75886-9aff-4714-8bb3-a547a96d665b"}],"id":"73b5c6d7-c928-4c32-8bcb-2fd0aa24cac3","description":"<p>Expense payment slips roll up expense entries into pay periods, allowing administrators to effectively track time and expenses that require reimbursement.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337823-Creating-Payment-Slips-from-Expenses\">Creating Payment Slips from Expenses</a></p>\n","_postman_id":"73b5c6d7-c928-4c32-8bcb-2fd0aa24cac3","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Files (Uploads)","item":[{"name":"Get a file","id":"96377bd5-3132-4722-bc1a-723221b4f527","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/files/:file_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["files",":file_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the file</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"file_id"}]}},"response":[{"id":"430eb5b5-74b1-46e8-a42c-94d769df7305","name":"Get a file","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/files/:file_id","host":["/api/v1"],"path":["files",":file_id"],"variable":[{"key":"file_id","value":"<integer>","description":"ID of the file"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"access_group_id\": \"2\",\n    \"casefile_id\": \"3\",\n    \"name\": \"00001WC-01 Final Report.pdf\",\n    \"filename\": \"00001wc-01_final_report.pdf\",\n    \"size\": \"38415\",\n    \"file_path\": \"/case/3\",\n    \"mime\": \"application/pdf\",\n    \"reference_number\": \"Marty McFly\",\n    \"notes\": \"Final Report on the Marty McFly case.\",\n    \"created_at\": \"2026-02-02 21:20:19\",\n    \"processed_at\": \"2026-02-02 21:20:46\",\n    \"updated_at\": \"2026-02-02 21:20:46\",\n    \"CreatedBy\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"updates_list\": [\n        \"3\"\n    ],\n    \"path\": \"/case/3\",\n    \"url\": \"https://url_to_uploaded_file/00001wc-01_final_report.pdf?v=1&response-content-disposition=attachment&Expires=1770147484&Signature=kPXYfDSMC0JOypk6U4hs17O6AyLJZgoEidOWW3YZ69hIIQ611LHNtY88EKKeqXq1ZCXwaoQffGE6uw0yd9aGAw0hky34EUsOxVtlWp4tY6vLr7BTQbPqcJgfl7I7~pzNzGYtEnKEtuGJz7zjXp3d-XTmx4AugY9RkGDFNwYO62XsphvUFgM2bjw3Z9aHlpG8VfAMDWB5hbkQ42D3zX4BRob2mVs5J8~mi31R-sGNhoaFA~UdzHDPsX-qpvxKRT0v1iy7eXnfJRWKwD6cPi1mf33Rlc5QOrKEb5A1pnUQEaBnPKfl4-~l5TWS6N-vR8jZM~LdQh2Cz7RjLBPk2DYthA__&Key-Pair-Id=APKAJDGTI5NCHZIQ7TYA\",\n    \"url_expiration\": \"2026-02-03 19:38:04\"\n}"}],"_postman_id":"96377bd5-3132-4722-bc1a-723221b4f527"},{"name":"Get a file upload URL","id":"042d860d-d698-4422-b883-bb4ba6bc09ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/cases/:case_id/upload_url?filename=sol_plug_and_play_indexing.wav","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases",":case_id","upload_url"],"host":["/api/v1"],"query":[{"description":{"content":"<p>Name of the file (filename.ext) to be uploaded </p>\n","type":"text/plain"},"key":"filename","value":"port_ib.shtml"}],"variable":[{"description":{"content":"<p>ID of the case associated with the file</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_id"}]}},"response":[{"id":"ca77eeb7-d218-4ad5-85e7-30d6818ce57b","name":"Get a file upload URL","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/cases/:case_id/upload_url?filename=mouse_borders_payment.wav","host":["/api/v1"],"path":["cases",":case_id","upload_url"],"query":[{"key":"filename","value":"architectures.gif","description":"Name of the file (filename.ext) to be uploaded "}],"variable":[{"key":"case_id","value":"<integer>","description":"ID of the case associated with the file"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"url\": \"https://url_to_upload_file/integration_response_path.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJMUJB5KQOATHWVNQ%2F20260203%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260203T153843Z&X-Amz-SignedHeaders=host&X-Amz-Expires=1800&X-Amz-Signature=5a1c69d9e9a8889b203b76d3726fda8d306fa7666543d9dbbc773f9813e0b3f5\"\n}"}],"_postman_id":"042d860d-d698-4422-b883-bb4ba6bc09ef"},{"name":"List files","id":"1cad072c-6753-4321-a96c-d368bce304d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/files","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["files"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"4fbc237f-b46c-493b-96a6-60c46981ef1c","name":"List files","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/files"},"status":"OK","code":200,"_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\": \"1\",\n        \"access_group_id\": \"2\",\n        \"casefile_id\": \"3\",\n        \"name\": \"00001WC-01 Final Report.pdf\",\n        \"filename\": \"00001wc-01_final_report.pdf\",\n        \"size\": \"38415\",\n        \"file_path\": \"/case/3\",\n        \"mime\": \"application/pdf\",\n        \"reference_number\": \"Marty McFly\",\n        \"notes\": \"Final Report on the Marty McFly case.\",\n        \"created_at\": \"2026-02-02 21:20:19\",\n        \"processed_at\": \"2026-02-02 21:20:46\",\n        \"updated_at\": \"2026-02-02 21:20:46\",\n        \"CreatedBy\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"updates_list\": [\n            \"3\"\n        ],\n        \"path\": \"/case/3\",\n        \"url\": \"https://url_to_uploaded_file/00001wc-01_final_report.pdf?v=1&response-content-disposition=attachment&Expires=1770147318&Signature=kpjpfATaaRFZjGyfhNO9eJcR7GW78CvHqN4plVDMCJDkdVI1y-72J6ajfNnS2H1utprw6o4f9omAu3d~pQ8HP28N~kZhDtsas8o18wwKVq9VKcJvEMLL1h2QJdg75RHJi6kb0OPhUMnD7elORODJFDsfDSfx0snFb0DWemYofi6ea13wjCgNAeGqeMXh7MtFJeYZIO-WXmfzpx9sxob4gPDGQsVPPv6sZVFyqKjhZPlGPtriI5Vcz-eeJZT7TqzscPozW16-JLm0mKsPN2k6-sooTNSspnt~LHjFephp2Xq8GrVH53QNQ-JaNL41gWXSw3HRylgJmTGFsBgl3WuF1A__&Key-Pair-Id=APKAJDGTI5NCHZIQ7TYA\",\n        \"url_expiration\": \"2026-02-03 19:35:18\"\n    }\n]"}],"_postman_id":"1cad072c-6753-4321-a96c-d368bce304d3"},{"name":"Search files","id":"6ff89232-d5d5-4ede-b035-a70693282f6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/files?id=<integer>&access_group=<integer>&case=<integer>&filename=<string>&mime_type=<string>&name=<string>&reference_number=<string>&created_by=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["files"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the file</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the access group associated with the file</p>\n","type":"text/plain"},"key":"access_group","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the file</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>Filename of the file (i.e. filename.ext)</p>\n","type":"text/plain"},"key":"filename","value":"<string>"},{"description":{"content":"<p>Mime type of the file (i.e. video/mp4) </p>\n","type":"text/plain"},"key":"mime_type","value":"<string>"},{"description":{"content":"<p>Name of the file</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Reference number or lookup code for the file</p>\n","type":"text/plain"},"key":"reference_number","value":"<string>"},{"description":{"content":"<p>ID of the user who created the file</p>\n","type":"text/plain"},"key":"created_by","value":"<integer>"},{"description":{"content":"<p>ISO date the file was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the file was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the file was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the file was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"796ea1e7-d5b1-4e29-98d9-b3a1ed97200d","name":"Search files","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/files?id=<integer>&access_group=<integer>&case=<integer>&filename=<string>&mime_type=<string>&name=<string>&reference_number=<string>&created_by=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["files"],"query":[{"key":"id","value":"<integer>","description":"ID of the file"},{"key":"access_group","value":"<integer>","description":"ID of the access group associated with the file"},{"key":"case","value":"<integer>","description":"ID of the case associated with the file"},{"key":"filename","value":"<string>","description":"Filename of the file (i.e. filename.ext)"},{"key":"mime_type","value":"<string>","description":"Mime type of the file (i.e. video/mp4) "},{"key":"name","value":"<string>","description":"Name of the file"},{"key":"reference_number","value":"<string>","description":"Reference number or lookup code for the file"},{"key":"created_by","value":"<integer>","description":"ID of the user who created the file"},{"key":"created_from","value":"<datestamp>","description":"ISO date the file was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the file was created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date the file was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the file was updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_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\": \"1\",\n        \"access_group_id\": \"2\",\n        \"casefile_id\": \"3\",\n        \"name\": \"00001WC-01 Final Report.pdf\",\n        \"filename\": \"00001wc-01_final_report.pdf\",\n        \"size\": \"38415\",\n        \"file_path\": \"/case/3\",\n        \"mime\": \"application/pdf\",\n        \"reference_number\": \"Marty McFly\",\n        \"notes\": \"Final Report on the Marty McFly case.\",\n        \"created_at\": \"2026-02-02 21:20:19\",\n        \"processed_at\": \"2026-02-02 21:20:46\",\n        \"updated_at\": \"2026-02-02 21:20:46\",\n        \"CreatedBy\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"updates_list\": [\n            \"3\"\n        ],\n        \"path\": \"/case/3\",\n        \"url\": \"https://url_to_uploaded_file/00001wc-01_final_report.pdf?v=1&response-content-disposition=attachment&Expires=1770147318&Signature=kpjpfATaaRFZjGyfhNO9eJcR7GW78CvHqN4plVDMCJDkdVI1y-72J6ajfNnS2H1utprw6o4f9omAu3d~pQ8HP28N~kZhDtsas8o18wwKVq9VKcJvEMLL1h2QJdg75RHJi6kb0OPhUMnD7elORODJFDsfDSfx0snFb0DWemYofi6ea13wjCgNAeGqeMXh7MtFJeYZIO-WXmfzpx9sxob4gPDGQsVPPv6sZVFyqKjhZPlGPtriI5Vcz-eeJZT7TqzscPozW16-JLm0mKsPN2k6-sooTNSspnt~LHjFephp2Xq8GrVH53QNQ-JaNL41gWXSw3HRylgJmTGFsBgl3WuF1A__&Key-Pair-Id=APKAJDGTI5NCHZIQ7TYA\",\n        \"url_expiration\": \"2026-02-03 19:35:18\"\n    }\n]"}],"_postman_id":"6ff89232-d5d5-4ede-b035-a70693282f6a"},{"name":"Process an uploaded file","id":"def7c096-889c-4ee0-86bd-d8db23e489e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"upload\": {\n    \"filename\": \"invoice.pdf\",\n    \"access_group_id\": \"<integer>\",\n    \"is_valid\": true,\n    \"notes\": \"Natus quia omnis aliquam autem consequatur sint dolorum.\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/cases/:case_id/process_upload","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases",":case_id","process_upload"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case associated with the file</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_id"}]}},"response":[{"id":"f4413a3f-0f70-4b3a-916e-870c13c6cbfd","name":"Process an uploaded file","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"upload\": {\n    \"filename\": \"Witness Interview.mp3\",\n    \"access_group_id\": \"<integer>\",\n    \"is_valid\": true,\n    \"notes\": \"Id blanditiis illo ad.\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/cases/3/process_upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"access_group_id\": \"2\",\n    \"casefile_id\": \"3\",\n    \"name\": \"Witness Interview.mp3\",\n    \"filename\": \"witness_interview.mp3\",\n    \"size\": \"11650187\",\n    \"file_path\": \"/case/3\",\n    \"mime\": \"audio/mpeg\",\n    \"reference_number\": null,\n    \"notes\": \"Natus nemo fugiat optio vitae labore ut veniam tenetur.\",\n    \"created_at\": \"2026-02-03 15:55:22\",\n    \"processed_at\": null,\n    \"updated_at\": \"2026-02-03 15:55:22\",\n    \"CreatedBy\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"updates_list\": [],\n    \"path\": \"/case/3\",\n    \"url\": \"https://url_to_uploaded_file/witness_interview.mp3?v=1&response-content-disposition=attachment&Expires=1770148523&Signature=ggXlJcj65wrhNuMb~cCELa7uvgu~pzMiXaI4gcnsX~y7alNa54--0Xqqa7JXA3r9ejTLZNLd0RT0ibWbZjXJUpLIwkP~B244K5U-Km5-z01MS7HUQQKtW9ZEFw-cVzKLjw0UuZl2lKC0jXC7JuBdNlJxlzZVbFKjDLVhBUFti6VYpEm45BnigNOp5J~8gjPGr3hgWZ1FuCTuRXd7gyHIOOhDJoajCXb2Heke8iVX2sE9G4Hr7RysJvPeZN7YSlQUOnZ3yJ5Vuvy59wB4p0QdkbgD013-ePbKuE7Y0mycPA4rty1lhuiSTA02WkUi7pQVGxYgq05KuFrC7SVJexvuoQ__&Key-Pair-Id=APKAJDGTI5NCHZIQ7TYA\",\n    \"url_expiration\": \"2026-02-03 19:55:23\"\n}"}],"_postman_id":"def7c096-889c-4ee0-86bd-d8db23e489e5"}],"id":"b1d6be9e-990a-4a76-8cfa-2551352e1f62","description":"<p>Files (uploads) contain attachments of various types that are uploaded to cases and can be attached and shared via case updates.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338203-How-to-Upload-Files-to-Cases\">How to Upload Files to Cases</a></p>\n","_postman_id":"b1d6be9e-990a-4a76-8cfa-2551352e1f62","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Invoice & Expense Items","item":[{"name":"Get an invoice/expense item","id":"18011982-ded8-4896-98b1-3fa5fbd1e72d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/finance_items/:finance_item_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["finance_items",":finance_item_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the invoice or expense item</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"finance_item_id"}]}},"response":[{"id":"629e4aa3-994d-4071-a32a-9852db1c0182","name":"Get an invoice/expense item","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/finance_items/:finance_item_id","host":["/api/v1"],"path":["finance_items",":finance_item_id"],"variable":[{"key":"finance_item_id","value":"<integer>","description":"ID of the invoice or expense item"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Work Hours\",\n    \"expense_alias\": \"Work Hours\",\n    \"expense_unit_rate\": \"50.000\",\n    \"expense_unit_label\": \"hour\",\n    \"expense_description\": null,\n    \"invoice_alias\": \"Work Hours\",\n    \"invoice_unit_rate\": \"75.000\",\n    \"invoice_unit_discount\": \"0.00\",\n    \"invoice_description\": \"\",\n    \"tax_rate_id\": \"1\",\n    \"is_time\": true,\n    \"is_fixed\": true,\n    \"is_expense_item\": true,\n    \"is_invoice_item\": true,\n    \"is_budgetable\": true,\n    \"reference_id\": null,\n    \"item_code\": null,\n    \"created_at\": \"2010-12-16 19:33:16\",\n    \"updated_at\": \"2011-04-04 22:16:57\"\n}"}],"_postman_id":"18011982-ded8-4896-98b1-3fa5fbd1e72d"},{"name":"List invoice/expense items","id":"7a3ddb7b-a53f-4d07-9940-5bf3bc047f42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/finance_items","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["finance_items"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"d61dcbd9-23bb-409f-b09b-d71e190e5732","name":"List invoice/expense items","originalRequest":{"method":"GET","header":[],"url":"/api/v1/finance_items"},"status":"OK","code":200,"_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\": \"4\",\n        \"name\": \"Miscellaneous\",\n        \"expense_alias\": \"Miscellaneous\",\n        \"expense_unit_rate\": \"0.000\",\n        \"expense_unit_label\": null,\n        \"expense_description\": null,\n        \"invoice_alias\": \"Miscellaneous\",\n        \"invoice_unit_rate\": null,\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": null,\n        \"tax_rate_id\": \"1\",\n        \"is_time\": false,\n        \"is_fixed\": false,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2011-03-04 15:10:41\",\n        \"updated_at\": \"2011-03-04 15:10:44\"\n    },\n    {\n        \"id\": \"3\",\n        \"name\": \"Travel Hours\",\n        \"expense_alias\": \"Travel Hours\",\n        \"expense_unit_rate\": \"25.000\",\n        \"expense_unit_label\": \"hour\",\n        \"expense_description\": null,\n        \"invoice_alias\": \"Travel Hours\",\n        \"invoice_unit_rate\": \"50.000\",\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": \"travel time to and from investigation.\",\n        \"tax_rate_id\": \"1\",\n        \"is_time\": true,\n        \"is_fixed\": true,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2011-03-04 00:00:00\",\n        \"updated_at\": \"2011-03-04 00:00:00\"\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Mileage\",\n        \"expense_alias\": \"Mileage\",\n        \"expense_unit_rate\": \"0.500\",\n        \"expense_unit_label\": \"mile\",\n        \"expense_description\": null,\n        \"invoice_alias\": \"Mileage\",\n        \"invoice_unit_rate\": \"0.750\",\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": \"\",\n        \"tax_rate_id\": \"1\",\n        \"is_time\": false,\n        \"is_fixed\": true,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2011-01-28 17:21:58\",\n        \"updated_at\": \"2011-04-04 22:17:35\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Work Hours\",\n        \"expense_alias\": \"Work Hours\",\n        \"expense_unit_rate\": \"50.000\",\n        \"expense_unit_label\": \"hour\",\n        \"expense_description\": null,\n        \"invoice_alias\": \"Work Hours\",\n        \"invoice_unit_rate\": \"75.000\",\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": \"\",\n        \"tax_rate_id\": \"1\",\n        \"is_time\": true,\n        \"is_fixed\": true,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2010-12-16 19:33:16\",\n        \"updated_at\": \"2011-04-04 22:16:57\"\n    }\n]"}],"_postman_id":"7a3ddb7b-a53f-4d07-9940-5bf3bc047f42"},{"name":"Search invoice/expense items","id":"308038db-4b04-4a89-9d47-2d9a7939e356","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/finance_items?id=<integer>&item_code=<integer>&expense_alias=<string>&invoice_alias=<string>&name=<string>&reference_id=<string>&is_budgetable=<boolean>&is_expense_item=<boolean>&is_fixed=<boolean>&is_invoice_item=<boolean>&is_time=<boolean>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["finance_items"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the finance item</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the item code associated with the finance item</p>\n","type":"text/plain"},"key":"item_code","value":"<integer>"},{"description":{"content":"<p>Name of the expense alias for the finance item</p>\n","type":"text/plain"},"key":"expense_alias","value":"<string>"},{"description":{"content":"<p>Name of the invoice alias for the finance item</p>\n","type":"text/plain"},"key":"invoice_alias","value":"<string>"},{"description":{"content":"<p>Name of the finance item</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Reference or lookup code associated with the finance item</p>\n","type":"text/plain"},"key":"reference_id","value":"<string>"},{"description":{"content":"<p>Is the budget affected when this item is used</p>\n","type":"text/plain"},"key":"is_budgetable","value":"<boolean>"},{"description":{"content":"<p>Is the item available for use in expense entries</p>\n","type":"text/plain"},"key":"is_expense_item","value":"<boolean>"},{"description":{"content":"<p>Is the item a fixed rate item</p>\n","type":"text/plain"},"key":"is_fixed","value":"<boolean>"},{"description":{"content":"<p>Is the item available for use in invoices</p>\n","type":"text/plain"},"key":"is_invoice_item","value":"<boolean>"},{"description":{"content":"<p>Is the item a time based item</p>\n","type":"text/plain"},"key":"is_time","value":"<boolean>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"0d167207-6f88-4355-bb9c-204991f73a1b","name":"Search invoice/expense items","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/finance_items?id=<integer>&item_code=<integer>&expense_alias=<string>&invoice_alias=<string>&name=<string>&reference_id=<string>&is_budgetable=<boolean>&is_expense_item=<boolean>&is_fixed=<boolean>&is_invoice_item=<boolean>&is_time=<boolean>&page=<integer>","host":["/api/v1"],"path":["finance_items"],"query":[{"key":"id","value":"<integer>","description":"ID of the finance item"},{"key":"item_code","value":"<integer>","description":"ID of the item code associated with the finance item"},{"key":"expense_alias","value":"<string>","description":"Name of the expense alias for the finance item"},{"key":"invoice_alias","value":"<string>","description":"Name of the invoice alias for the finance item"},{"key":"name","value":"<string>","description":"Name of the finance item"},{"key":"reference_id","value":"<string>","description":"Reference or lookup code associated with the finance item"},{"key":"is_budgetable","value":"<boolean>","description":"Is the budget affected when this item is used"},{"key":"is_expense_item","value":"<boolean>","description":"Is the item available for use in expense entries"},{"key":"is_fixed","value":"<boolean>","description":"Is the item a fixed rate item"},{"key":"is_invoice_item","value":"<boolean>","description":"Is the item available for use in invoices"},{"key":"is_time","value":"<boolean>","description":"Is the item a time based item"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_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\": \"4\",\n        \"name\": \"Miscellaneous\",\n        \"expense_alias\": \"Miscellaneous\",\n        \"expense_unit_rate\": \"0.000\",\n        \"expense_unit_label\": null,\n        \"expense_description\": null,\n        \"invoice_alias\": \"Miscellaneous\",\n        \"invoice_unit_rate\": null,\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": null,\n        \"tax_rate_id\": \"1\",\n        \"is_time\": false,\n        \"is_fixed\": false,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2011-03-04 15:10:41\",\n        \"updated_at\": \"2011-03-04 15:10:44\"\n    },\n    {\n        \"id\": \"3\",\n        \"name\": \"Travel Hours\",\n        \"expense_alias\": \"Travel Hours\",\n        \"expense_unit_rate\": \"25.000\",\n        \"expense_unit_label\": \"hour\",\n        \"expense_description\": null,\n        \"invoice_alias\": \"Travel Hours\",\n        \"invoice_unit_rate\": \"50.000\",\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": \"travel time to and from investigation.\",\n        \"tax_rate_id\": \"1\",\n        \"is_time\": true,\n        \"is_fixed\": true,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2011-03-04 00:00:00\",\n        \"updated_at\": \"2011-03-04 00:00:00\"\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Mileage\",\n        \"expense_alias\": \"Mileage\",\n        \"expense_unit_rate\": \"0.500\",\n        \"expense_unit_label\": \"mile\",\n        \"expense_description\": null,\n        \"invoice_alias\": \"Mileage\",\n        \"invoice_unit_rate\": \"0.750\",\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": \"\",\n        \"tax_rate_id\": \"1\",\n        \"is_time\": false,\n        \"is_fixed\": true,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2011-01-28 17:21:58\",\n        \"updated_at\": \"2011-04-04 22:17:35\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Work Hours\",\n        \"expense_alias\": \"Work Hours\",\n        \"expense_unit_rate\": \"50.000\",\n        \"expense_unit_label\": \"hour\",\n        \"expense_description\": null,\n        \"invoice_alias\": \"Work Hours\",\n        \"invoice_unit_rate\": \"75.000\",\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": \"\",\n        \"tax_rate_id\": \"1\",\n        \"is_time\": true,\n        \"is_fixed\": true,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2010-12-16 19:33:16\",\n        \"updated_at\": \"2011-04-04 22:16:57\"\n    }\n]"}],"_postman_id":"308038db-4b04-4a89-9d47-2d9a7939e356"}],"id":"45011fe0-31c8-4e97-ba40-8ac38a87b796","description":"<p>Invoice and expense items (finance items) are the products and services you offer. These items are used in expense entries and invoices.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212336803-How-to-set-up-your-Invoice-and-Expense-Items\">How to set up your Invoice and Expense Items</a>, <a href=\"https://support.trackops.com/hc/en-us/articles/212337803-Converting-your-Expenses-into-Invoices\">Converting your Expenses into Invoices</a></p>\n","_postman_id":"45011fe0-31c8-4e97-ba40-8ac38a87b796","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Invoice Payments","item":[{"name":"Get an invoice payment","id":"0994338d-fc0d-4a3f-a457-e9981656ef02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/invoice/payments/:invoice_payment_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["invoice","payments",":invoice_payment_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the invoice payment</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"invoice_payment_id"}]}},"response":[{"id":"6a91025e-383c-41ea-a2ac-e79af2b598dc","name":"Get an invoice payment","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/invoice/payments/:invoice_payment_id","host":["/api/v1"],"path":["invoice","payments",":invoice_payment_id"],"variable":[{"key":"invoice_payment_id","value":"<integer>","description":"ID of the invoice payment"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"paid_on\": \"2026-02-03\",\n    \"reference_number\": \"Check #123\",\n    \"payment_amount\": \"537.50\",\n    \"notes\": \"\",\n    \"created_at\": \"2026-02-03 16:11:02\",\n    \"updated_at\": \"2026-02-03 16:11:02\",\n    \"PaymentMethod\": {\n        \"id\": \"2\",\n        \"name\": \"Check\",\n        \"is_credit\": false,\n        \"reference_id\": null\n    },\n    \"Invoice\": {\n        \"id\": \"1\",\n        \"invoice_number\": \"1\",\n        \"reference_number\": \"ABC-123\",\n        \"reference_number_2\": \"SIU-234\",\n        \"reference_number_3\": \"\",\n        \"casefile_id\": \"3\",\n        \"created_on\": \"2026-02-03\",\n        \"due_on\": \"2026-03-05\",\n        \"is_retainer\": false,\n        \"grand_total\": \"537.50\",\n        \"amount_paid\": \"537.50\",\n        \"amount_outstanding\": \"0.00\",\n        \"formatted_invoice_number\": \"INV-00001\",\n        \"route_prefix\": \"invoice\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"email_invoice\": \"\",\n            \"route_prefix\": \"client\"\n        },\n        \"User\": {\n            \"id\": \"2\",\n            \"first_name\": \"Virginia\",\n            \"last_name\": \"Kuhn\",\n            \"email\": \"Wallace61@example.net\",\n            \"name\": \"Kuhn, Virginia\",\n            \"proper_name\": \"Virginia Kuhn\"\n        }\n    }\n}"}],"_postman_id":"0994338d-fc0d-4a3f-a457-e9981656ef02"},{"name":"List invoice payments","id":"bd3b99ec-597e-4f38-bc2d-6931001d9cde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/invoice/payments","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["invoice","payments"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"a8572132-7c18-4122-b5a5-6ecc54d95f71","name":"List invoice payments","originalRequest":{"method":"GET","header":[],"url":"/api/v1/invoice/payments"},"status":"OK","code":200,"_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\": \"1\",\n        \"paid_on\": \"2026-02-03\",\n        \"reference_number\": \"Check #123\",\n        \"payment_amount\": \"537.50\",\n        \"notes\": \"\",\n        \"created_at\": \"2026-02-03 16:11:02\",\n        \"updated_at\": \"2026-02-03 16:11:02\",\n        \"PaymentMethod\": {\n            \"id\": \"2\",\n            \"name\": \"Check\",\n            \"is_credit\": false,\n            \"reference_id\": null\n        },\n        \"Invoice\": {\n            \"id\": \"1\",\n            \"invoice_number\": \"1\",\n            \"reference_number\": \"ABC-123\",\n            \"reference_number_2\": \"SIU-234\",\n            \"reference_number_3\": \"\",\n            \"casefile_id\": \"3\",\n            \"created_on\": \"2026-02-03\",\n            \"due_on\": \"2026-03-05\",\n            \"is_retainer\": false,\n            \"grand_total\": \"537.50\",\n            \"amount_paid\": \"537.50\",\n            \"amount_outstanding\": \"0.00\",\n            \"formatted_invoice_number\": \"INV-00001\",\n            \"route_prefix\": \"invoice\",\n            \"Client\": {\n                \"id\": \"4\",\n                \"name\": \"Main Location\",\n                \"email_invoice\": \"\",\n                \"route_prefix\": \"client\"\n            },\n            \"User\": {\n                \"id\": \"2\",\n                \"first_name\": \"Virginia\",\n                \"last_name\": \"Kuhn\",\n                \"email\": \"Wallace61@example.net\",\n                \"name\": \"Kuhn, Virginia\",\n                \"proper_name\": \"Virginia Kuhn\"\n            }\n        }\n    }\n]"}],"_postman_id":"bd3b99ec-597e-4f38-bc2d-6931001d9cde"},{"name":"Search invoice payments","id":"b3c9ebae-8bd2-4bd4-a76a-15b3e935efaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/invoice/payments?id=<integer>&invoice=<integer>&invoice_number=<integer>&invoice_reference_number=<string>&reference_number=<string>&invoice_created_from=<datestamp>&invoice_created_to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&paid_to=<datestamp>&paid_from=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["invoice","payments"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the invoice payment</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the invoice associated with the payment</p>\n","type":"text/plain"},"key":"invoice","value":"<integer>"},{"description":{"content":"<p>Numerical invoice number associated with the payment</p>\n","type":"text/plain"},"key":"invoice_number","value":"<integer>"},{"description":{"content":"<p>Reference number 1 for the associated invoice</p>\n","type":"text/plain"},"key":"invoice_reference_number","value":"<string>"},{"description":{"content":"<p>Reference number (check number, transaction number, etc...) for the invoice payment</p>\n","type":"text/plain"},"key":"reference_number","value":"<string>"},{"description":{"content":"<p>ISO date of the assoicated invoice \"from\"</p>\n","type":"text/plain"},"key":"invoice_created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the assoicated invoice \"to\"</p>\n","type":"text/plain"},"key":"invoice_created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of paid_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of paid_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date  of the invoice payment date \"to\"</p>\n","type":"text/plain"},"key":"paid_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date  of the invoice payment date \"from\"</p>\n","type":"text/plain"},"key":"paid_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"7dffa7fd-dbd4-41e4-b48d-2ce7b8ce6c71","name":"Search invoice payments","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/invoice/payments?id=<integer>&invoice=<integer>&invoice_number=<integer>&invoice_reference_number=<string>&reference_number=<string>&invoice_created_from=<datestamp>&invoice_created_to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&paid_to=<datestamp>&paid_from=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["invoice","payments"],"query":[{"key":"id","value":"<integer>","description":"ID of the invoice payment"},{"key":"invoice","value":"<integer>","description":"ID of the invoice associated with the payment"},{"key":"invoice_number","value":"<integer>","description":"Numerical invoice number associated with the payment"},{"key":"invoice_reference_number","value":"<string>","description":"Reference number 1 for the associated invoice"},{"key":"reference_number","value":"<string>","description":"Reference number (check number, transaction number, etc...) for the invoice payment"},{"key":"invoice_created_from","value":"<datestamp>","description":"ISO date of the assoicated invoice \"from\""},{"key":"invoice_created_to","value":"<datestamp>","description":"ISO date of the assoicated invoice \"to\""},{"key":"created_from","value":"<datestamp>","description":"ISO date the payment was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the payment was created \"to\""},{"key":"from","value":"<datestamp>","description":"Alias of paid_from"},{"key":"to","value":"<datestamp>","description":"Alias of paid_to"},{"key":"paid_to","value":"<datestamp>","description":"ISO date  of the invoice payment date \"to\""},{"key":"paid_from","value":"<datestamp>","description":"ISO date  of the invoice payment date \"from\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date the payment was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the payment was updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_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\": \"1\",\n        \"paid_on\": \"2026-02-03\",\n        \"reference_number\": \"Check #123\",\n        \"payment_amount\": \"537.50\",\n        \"notes\": \"\",\n        \"created_at\": \"2026-02-03 16:11:02\",\n        \"updated_at\": \"2026-02-03 16:11:02\",\n        \"PaymentMethod\": {\n            \"id\": \"2\",\n            \"name\": \"Check\",\n            \"is_credit\": false,\n            \"reference_id\": null\n        },\n        \"Invoice\": {\n            \"id\": \"1\",\n            \"invoice_number\": \"1\",\n            \"reference_number\": \"ABC-123\",\n            \"reference_number_2\": \"SIU-234\",\n            \"reference_number_3\": \"\",\n            \"casefile_id\": \"3\",\n            \"created_on\": \"2026-02-03\",\n            \"due_on\": \"2026-03-05\",\n            \"is_retainer\": false,\n            \"grand_total\": \"537.50\",\n            \"amount_paid\": \"537.50\",\n            \"amount_outstanding\": \"0.00\",\n            \"formatted_invoice_number\": \"INV-00001\",\n            \"route_prefix\": \"invoice\",\n            \"Client\": {\n                \"id\": \"4\",\n                \"name\": \"Main Location\",\n                \"email_invoice\": \"\",\n                \"route_prefix\": \"client\"\n            },\n            \"User\": {\n                \"id\": \"2\",\n                \"first_name\": \"Virginia\",\n                \"last_name\": \"Kuhn\",\n                \"email\": \"Wallace61@example.net\",\n                \"name\": \"Kuhn, Virginia\",\n                \"proper_name\": \"Virginia Kuhn\"\n            }\n        }\n    }\n]"}],"_postman_id":"b3c9ebae-8bd2-4bd4-a76a-15b3e935efaa"},{"name":"Create an invoice payment","id":"55b325dd-f12a-4359-9b9c-a66c20a362bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"invoice_payment\": {\n    \"invoice_id\": \"<integer>\",\n    \"payment_method_id\": \"<integer>\",\n    \"paid_on\": \"<datestamp>\",\n    \"payment_amount\": \"395\",\n    \"reference_number\": \"314703ff-85e5-41aa-8bf0-69fe72699627\",\n    \"notes\": \"Unde numquam sit.\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/invoice/payments","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["invoice","payments"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"2110878d-82e5-4718-91fc-240de98eab24","name":"Create an invoice payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"invoice_payment\": {\n    \"invoice_id\": \"<integer>\",\n    \"payment_method_id\": \"<integer>\",\n    \"paid_on\": \"<datestamp>\",\n    \"payment_amount\": \"404\",\n    \"reference_number\": \"781edca9-abec-4175-9ae6-1b54b5a329b2\",\n    \"notes\": \"Commodi quis labore delectus voluptatum animi et ipsum.\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/invoice/payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"paid_on\": \"2026-02-03\",\n    \"reference_number\": \"68ecce4f-fca3-4f0e-aad6-9a413ed09fe5\",\n    \"payment_amount\": \"424.00\",\n    \"notes\": \"Doloremque est qui aspernatur qui soluta beatae.\",\n    \"created_at\": \"2026-02-03 16:12:42\",\n    \"updated_at\": \"2026-02-03 16:12:42\",\n    \"PaymentMethod\": {\n        \"id\": \"1\",\n        \"name\": \"Cash\",\n        \"is_credit\": false,\n        \"reference_id\": null\n    },\n    \"Invoice\": {\n        \"id\": \"1\",\n        \"invoice_number\": \"1\",\n        \"reference_number\": \"ABC-123\",\n        \"reference_number_2\": \"SIU-234\",\n        \"reference_number_3\": \"\",\n        \"casefile_id\": \"3\",\n        \"created_on\": \"2026-02-03\",\n        \"due_on\": \"2026-03-05\",\n        \"is_retainer\": false,\n        \"grand_total\": \"537.50\",\n        \"amount_paid\": \"424.00\",\n        \"amount_outstanding\": \"113.50\",\n        \"formatted_invoice_number\": \"INV-00001\",\n        \"route_prefix\": \"invoice\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"email_invoice\": \"\",\n            \"route_prefix\": \"client\"\n        },\n        \"User\": {\n            \"id\": \"2\",\n            \"first_name\": \"Virginia\",\n            \"last_name\": \"Kuhn\",\n            \"email\": \"Wallace61@example.net\",\n            \"name\": \"Kuhn, Virginia\",\n            \"proper_name\": \"Virginia Kuhn\"\n        }\n    }\n}"}],"_postman_id":"55b325dd-f12a-4359-9b9c-a66c20a362bc"}],"id":"ad8af6d2-bb20-4ad5-9d50-ceb46e71508f","description":"<p>Invoice payments capture payment details.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/search/click?data=BAh7DjoHaWRsKwiN3U354B46D2FjY291bnRfaWRpA7skAToJdHlwZUkiDGFydGljbGUGOgZFVDoIdXJsSSJpaHR0cHM6Ly9zdXBwb3J0LnRyYWNrb3BzLmNvbS9oYy9lbi11cy9hcnRpY2xlcy8zMzk1MTYwNDEzNzM1Ny1BY2NlcHRpbmctSW52b2ljZS1QYXltZW50cy13aXRoLVN0cmlwZQY7CFQ6DnNlYXJjaF9pZEkiKWRjYmVlYTY5LTUwNGItNGM5OS1hYzg5LTVhZWVkYzI2ZjQ1ZQY7CEY6CXJhbmtpBzoLbG9jYWxlSSIKZW4tdXMGOwhUOgpxdWVyeUkiFGludm9pY2UgcGF5bWVudAY7CFQ6EnJlc3VsdHNfY291bnRpUg%3D%3D--7a5fd4f05525cb1b42e30c5193725d77e83765f1\">Accepting Invoice Payments with Stripe</a></p>\n","_postman_id":"ad8af6d2-bb20-4ad5-9d50-ceb46e71508f","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Invoices","item":[{"name":"Get an invoice","id":"7256246e-df79-4e0e-8eba-e436f7b6f85d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/invoices/:invoice_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["invoices",":invoice_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the invoice</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"invoice_id"}]}},"response":[{"id":"6cff295a-06c7-40b2-a9fc-affd3dece44a","name":"Get an invoice","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/invoices/:invoice_id","host":["/api/v1"],"path":["invoices",":invoice_id"],"variable":[{"key":"invoice_id","value":"<integer>","description":"ID of the invoice"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"invoice_number\": \"1\",\n    \"reference_number\": \"ABC-123\",\n    \"reference_number_2\": \"SIU-234\",\n    \"reference_number_3\": \"\",\n    \"is_retainer\": false,\n    \"subtotal\": \"537.50\",\n    \"tax_total\": \"0.00\",\n    \"tax_detail\": [\n        {\n            \"tax_component_id\": \"1\",\n            \"label\": \"No Tax\",\n            \"tax_rate\": \"0.000\",\n            \"is_compound\": false,\n            \"tax_amount\": \"0.00\"\n        }\n    ],\n    \"discount\": \"0.00\",\n    \"grand_total\": \"537.50\",\n    \"amount_paid\": \"424.00\",\n    \"amount_outstanding\": \"113.50\",\n    \"created_on\": \"2026-02-03\",\n    \"due_on\": \"2026-03-05\",\n    \"closed_on\": null,\n    \"public_notes\": \"Thank you for your business!\",\n    \"internal_notes\": \"\",\n    \"invoice_terms\": \"DUE NET 30\",\n    \"last_sent_at\": null,\n    \"created_at\": \"2026-02-03 16:10:30\",\n    \"updated_at\": \"2026-02-03 16:10:30\",\n    \"invoice_status\": \"partial_paid\",\n    \"billing_email\": \"example@trackops.com\",\n    \"formatted_invoice_number\": \"INV-00001\",\n    \"route_prefix\": \"invoice\",\n    \"CompanyLocation\": {\n        \"id\": \"2\",\n        \"name\": \"Main Location\",\n        \"address_1\": \"\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"country\": \"US\",\n        \"route_prefix\": \"client\"\n    },\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"address_1\": \"123 Main Street\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"Beverly Hills\",\n        \"state\": \"CA\",\n        \"zip\": \"90210\",\n        \"country\": \"US\",\n        \"account_code\": \"\",\n        \"billing_email\": \"\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Homenick Group Location\",\n            \"account_code\": \"SAMPLE\",\n            \"billing_email\": \"example@trackops.com\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"User\": {\n        \"id\": \"2\",\n        \"first_name\": \"Virginia\",\n        \"last_name\": \"Kuhn\",\n        \"email\": \"Wallace61@example.net\",\n        \"phone_home\": \"896-830-8304\",\n        \"phone_mobile\": \"206-795-4505\",\n        \"phone_office\": \"223-637-5881 99-636-381-8566\",\n        \"phone_fax\": \"312-391-5409\",\n        \"account_code\": \"velit-soluta-ut\",\n        \"name\": \"Kuhn, Virginia\",\n        \"proper_name\": \"Virginia Kuhn\"\n    },\n    \"Salesperson\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"account_code\": \"\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_country\": \"US\",\n        \"case_state\": \"CO\",\n        \"case_location\": \"Elveraburgh\",\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\",\n        \"PrimarySubject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        }\n    },\n    \"TrackingCategory\": null,\n    \"InvoiceDetails\": [\n        {\n            \"invoice_id\": \"1\",\n            \"invoice_detail_rank\": \"1\",\n            \"user_id\": \"1\",\n            \"service_date\": \"2026-02-03\",\n            \"rate\": \"50.000\",\n            \"quantity\": \"1.000\",\n            \"subtotal\": \"50.00\",\n            \"discount\": \"0.00\",\n            \"total\": \"50.00\",\n            \"notes\": \"travel time to and from investigation.\",\n            \"created_at\": \"2026-02-03 16:10:30\",\n            \"FinanceItem\": {\n                \"id\": \"3\",\n                \"name\": \"Travel Hours\",\n                \"invoice_alias\": \"Travel Hours\",\n                \"reference_id\": null,\n                \"item_code\": null\n            },\n            \"ItemCode\": {\n                \"id\": \"1\",\n                \"code\": \"E109\",\n                \"name\": \"Local travel\",\n                \"reference_id\": \"\"\n            },\n            \"TaxRate\": {\n                \"id\": \"1\",\n                \"name\": \"Tax Exempt\",\n                \"effective_rate\": \"0.00000\",\n                \"reference_id\": null\n            }\n        },\n        {\n            \"invoice_id\": \"1\",\n            \"invoice_detail_rank\": \"2\",\n            \"user_id\": \"1\",\n            \"service_date\": \"2026-02-03\",\n            \"rate\": \"75.000\",\n            \"quantity\": \"6.000\",\n            \"subtotal\": \"450.00\",\n            \"discount\": \"0.00\",\n            \"total\": \"450.00\",\n            \"notes\": \"\",\n            \"created_at\": \"2026-02-03 16:10:30\",\n            \"FinanceItem\": {\n                \"id\": \"1\",\n                \"name\": \"Work Hours\",\n                \"invoice_alias\": \"Work Hours\",\n                \"reference_id\": null,\n                \"item_code\": null\n            },\n            \"ItemCode\": null,\n            \"TaxRate\": {\n                \"id\": \"1\",\n                \"name\": \"Tax Exempt\",\n                \"effective_rate\": \"0.00000\",\n                \"reference_id\": null\n            }\n        },\n        {\n            \"invoice_id\": \"1\",\n            \"invoice_detail_rank\": \"3\",\n            \"user_id\": \"1\",\n            \"service_date\": \"2026-02-03\",\n            \"rate\": \"0.750\",\n            \"quantity\": \"50.000\",\n            \"subtotal\": \"37.50\",\n            \"discount\": \"0.00\",\n            \"total\": \"37.50\",\n            \"notes\": \"\",\n            \"created_at\": \"2026-02-03 16:10:30\",\n            \"FinanceItem\": {\n                \"id\": \"2\",\n                \"name\": \"Mileage\",\n                \"invoice_alias\": \"Mileage\",\n                \"reference_id\": null,\n                \"item_code\": null\n            },\n            \"ItemCode\": null,\n            \"TaxRate\": {\n                \"id\": \"1\",\n                \"name\": \"Tax Exempt\",\n                \"effective_rate\": \"0.00000\",\n                \"reference_id\": null\n            }\n        }\n    ]\n}"}],"_postman_id":"7256246e-df79-4e0e-8eba-e436f7b6f85d"},{"name":"List invoices","id":"68b3076d-9aef-45f8-920d-c3c017dfe1b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/invoices","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["invoices"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"6cd469eb-0a3a-48d6-aed6-dd3fae1e0ac0","name":"List invoices","originalRequest":{"method":"GET","header":[],"url":"/api/v1/invoices"},"status":"OK","code":200,"_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\": \"1\",\n        \"invoice_number\": \"1\",\n        \"reference_number\": \"ABC-123\",\n        \"reference_number_2\": \"SIU-234\",\n        \"reference_number_3\": \"\",\n        \"is_retainer\": false,\n        \"subtotal\": \"537.50\",\n        \"tax_total\": \"0.00\",\n        \"tax_detail\": [\n            {\n                \"tax_component_id\": \"1\",\n                \"label\": \"No Tax\",\n                \"tax_rate\": \"0.000\",\n                \"is_compound\": false,\n                \"tax_amount\": \"0.00\"\n            }\n        ],\n        \"discount\": \"0.00\",\n        \"grand_total\": \"537.50\",\n        \"amount_paid\": \"424.00\",\n        \"amount_outstanding\": \"113.50\",\n        \"created_on\": \"2026-02-03\",\n        \"due_on\": \"2026-03-05\",\n        \"closed_on\": null,\n        \"public_notes\": \"Thank you for your business!\",\n        \"internal_notes\": \"\",\n        \"invoice_terms\": \"DUE NET 30\",\n        \"last_sent_at\": null,\n        \"created_at\": \"2026-02-03 16:10:30\",\n        \"updated_at\": \"2026-02-03 16:10:30\",\n        \"invoice_status\": \"partial_paid\",\n        \"billing_email\": \"example@trackops.com\",\n        \"formatted_invoice_number\": \"INV-00001\",\n        \"route_prefix\": \"invoice\",\n        \"CompanyLocation\": {\n            \"id\": \"2\",\n            \"name\": \"Main Location\",\n            \"address_1\": \"\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"\",\n            \"state\": \"\",\n            \"zip\": \"\",\n            \"country\": \"US\",\n            \"route_prefix\": \"client\"\n        },\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"address_1\": \"123 Main Street\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"Beverly Hills\",\n            \"state\": \"CA\",\n            \"zip\": \"90210\",\n            \"country\": \"US\",\n            \"account_code\": \"\",\n            \"billing_email\": \"\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Homenick Group Location\",\n                \"account_code\": \"SAMPLE\",\n                \"billing_email\": \"example@trackops.com\",\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"User\": {\n            \"id\": \"2\",\n            \"first_name\": \"Virginia\",\n            \"last_name\": \"Kuhn\",\n            \"email\": \"Wallace61@example.net\",\n            \"phone_home\": \"896-830-8304\",\n            \"phone_mobile\": \"206-795-4505\",\n            \"phone_office\": \"223-637-5881 99-636-381-8566\",\n            \"phone_fax\": \"312-391-5409\",\n            \"account_code\": \"velit-soluta-ut\",\n            \"name\": \"Kuhn, Virginia\",\n            \"proper_name\": \"Virginia Kuhn\"\n        },\n        \"Salesperson\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"account_code\": \"\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_country\": \"US\",\n            \"case_state\": \"CO\",\n            \"case_location\": \"Elveraburgh\",\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\",\n            \"PrimarySubject\": {\n                \"id\": \"3\",\n                \"name\": \"McFly, Marty Seamus\"\n            }\n        },\n        \"TrackingCategory\": null,\n        \"InvoiceDetails\": [\n            {\n                \"invoice_id\": \"1\",\n                \"invoice_detail_rank\": \"1\",\n                \"user_id\": \"1\",\n                \"service_date\": \"2026-02-03\",\n                \"rate\": \"50.000\",\n                \"quantity\": \"1.000\",\n                \"subtotal\": \"50.00\",\n                \"discount\": \"0.00\",\n                \"total\": \"50.00\",\n                \"notes\": \"travel time to and from investigation.\",\n                \"created_at\": \"2026-02-03 16:10:30\",\n                \"FinanceItem\": {\n                    \"id\": \"3\",\n                    \"name\": \"Travel Hours\",\n                    \"invoice_alias\": \"Travel Hours\",\n                    \"reference_id\": null,\n                    \"item_code\": null\n                },\n                \"ItemCode\": {\n                    \"id\": \"1\",\n                    \"code\": \"E109\",\n                    \"name\": \"Local travel\",\n                    \"reference_id\": \"\"\n                },\n                \"TaxRate\": {\n                    \"id\": \"1\",\n                    \"name\": \"Tax Exempt\",\n                    \"effective_rate\": \"0.00000\",\n                    \"reference_id\": null\n                }\n            },\n            {\n                \"invoice_id\": \"1\",\n                \"invoice_detail_rank\": \"2\",\n                \"user_id\": \"1\",\n                \"service_date\": \"2026-02-03\",\n                \"rate\": \"75.000\",\n                \"quantity\": \"6.000\",\n                \"subtotal\": \"450.00\",\n                \"discount\": \"0.00\",\n                \"total\": \"450.00\",\n                \"notes\": \"\",\n                \"created_at\": \"2026-02-03 16:10:30\",\n                \"FinanceItem\": {\n                    \"id\": \"1\",\n                    \"name\": \"Work Hours\",\n                    \"invoice_alias\": \"Work Hours\",\n                    \"reference_id\": null,\n                    \"item_code\": null\n                },\n                \"ItemCode\": null,\n                \"TaxRate\": {\n                    \"id\": \"1\",\n                    \"name\": \"Tax Exempt\",\n                    \"effective_rate\": \"0.00000\",\n                    \"reference_id\": null\n                }\n            },\n            {\n                \"invoice_id\": \"1\",\n                \"invoice_detail_rank\": \"3\",\n                \"user_id\": \"1\",\n                \"service_date\": \"2026-02-03\",\n                \"rate\": \"0.750\",\n                \"quantity\": \"50.000\",\n                \"subtotal\": \"37.50\",\n                \"discount\": \"0.00\",\n                \"total\": \"37.50\",\n                \"notes\": \"\",\n                \"created_at\": \"2026-02-03 16:10:30\",\n                \"FinanceItem\": {\n                    \"id\": \"2\",\n                    \"name\": \"Mileage\",\n                    \"invoice_alias\": \"Mileage\",\n                    \"reference_id\": null,\n                    \"item_code\": null\n                },\n                \"ItemCode\": null,\n                \"TaxRate\": {\n                    \"id\": \"1\",\n                    \"name\": \"Tax Exempt\",\n                    \"effective_rate\": \"0.00000\",\n                    \"reference_id\": null\n                }\n            }\n        ]\n    }\n]"}],"_postman_id":"68b3076d-9aef-45f8-920d-c3c017dfe1b1"},{"name":"Search Invoices","id":"7d8b2998-a5b0-43a2-ab43-197252f5d98e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/invoices?id=<integer>&case=<integer>&client=<integer>&client_location=<integer>&contact=<integer>&invoice_number=<integer>&reference_number=<string>&salesperson=<integer>&status=<draft|open|sent|partial_paid|paid>&tracking_category=<integer>&created_from=<datestamp>&created_to=<datestamp>&created_from_system=<datestamp>&created_to_system=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&due_from=<datestamp>&due_to=<datestamp>&closed_from=<datestamp>&closed_to=<datestamp>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["invoices"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the invoice</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the invoice</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the client associated with the invoice</p>\n","type":"text/plain"},"key":"client","value":"<integer>"},{"description":{"content":"<p>ID of the client location associated with the invoice</p>\n","type":"text/plain"},"key":"client_location","value":"<integer>"},{"description":{"content":"<p>ID of the client contact associated with the invoice</p>\n","type":"text/plain"},"key":"contact","value":"<integer>"},{"description":{"content":"<p>Numeric invoice number</p>\n","type":"text/plain"},"key":"invoice_number","value":"<integer>"},{"description":{"content":"<p>Reference or PO number</p>\n","type":"text/plain"},"key":"reference_number","value":"<string>"},{"description":{"content":"<p>ID of the salsperson associated with the invoice</p>\n","type":"text/plain"},"key":"salesperson","value":"<integer>"},{"description":{"content":"<p>Status of the invoice (enum)</p>\n","type":"text/plain"},"key":"status","value":"<draft|open|sent|partial_paid|paid>"},{"description":{"content":"<p>ID of the tracking category associated with the invoice</p>\n","type":"text/plain"},"key":"tracking_category","value":"<integer>"},{"description":{"content":"<p>ISO date the invoice was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice was created \"from\" (immutable)</p>\n","type":"text/plain"},"key":"created_from_system","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice was created \"to\" (immutable)</p>\n","type":"text/plain"},"key":"created_to_system","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice is due \"from\"</p>\n","type":"text/plain"},"key":"due_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice is due \"to\"</p>\n","type":"text/plain"},"key":"due_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice was closed \"from\"</p>\n","type":"text/plain"},"key":"closed_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice was closed \"to\"</p>\n","type":"text/plain"},"key":"closed_to","value":"<datestamp>"}],"variable":[]}},"response":[{"id":"3036e805-e37c-4498-8c01-e19214b4eca3","name":"Search Invoices","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/invoices?id=<integer>&case=<integer>&client=<integer>&client_location=<integer>&contact=<integer>&invoice_number=<integer>&reference_number=<string>&salesperson=<integer>&status=<draft|open|sent|partial_paid|paid>&tracking_category=<integer>&created_from=<datestamp>&created_to=<datestamp>&created_from_system=<datestamp>&created_to_system=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&due_from=<datestamp>&due_to=<datestamp>&closed_from=<datestamp>&closed_to=<datestamp>","host":["/api/v1"],"path":["invoices"],"query":[{"key":"id","value":"<integer>","description":"ID of the invoice"},{"key":"case","value":"<integer>","description":"ID of the case associated with the invoice"},{"key":"client","value":"<integer>","description":"ID of the client associated with the invoice"},{"key":"client_location","value":"<integer>","description":"ID of the client location associated with the invoice"},{"key":"contact","value":"<integer>","description":"ID of the client contact associated with the invoice"},{"key":"invoice_number","value":"<integer>","description":"Numeric invoice number"},{"key":"reference_number","value":"<string>","description":"Reference or PO number"},{"key":"salesperson","value":"<integer>","description":"ID of the salsperson associated with the invoice"},{"key":"status","value":"<draft|open|sent|partial_paid|paid>","description":"Status of the invoice (enum)"},{"key":"tracking_category","value":"<integer>","description":"ID of the tracking category associated with the invoice"},{"key":"created_from","value":"<datestamp>","description":"ISO date the invoice was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the invoice was created \"to\""},{"key":"created_from_system","value":"<datestamp>","description":"ISO date the invoice was created \"from\" (immutable)"},{"key":"created_to_system","value":"<datestamp>","description":"ISO date the invoice was created \"to\" (immutable)"},{"key":"from","value":"<datestamp>","description":"Alias of created_from"},{"key":"to","value":"<datestamp>","description":"Alias of created_to"},{"key":"updated_from","value":"<datestamp>","description":"ISO date the invoice was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the invoice was updated \"to\""},{"key":"due_from","value":"<datestamp>","description":"ISO date the invoice is due \"from\""},{"key":"due_to","value":"<datestamp>","description":"ISO date the invoice is due \"to\""},{"key":"closed_from","value":"<datestamp>","description":"ISO date the invoice was closed \"from\""},{"key":"closed_to","value":"<datestamp>","description":"ISO date the invoice was closed \"to\""}]}},"status":"OK","code":200,"_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\": \"1\",\n        \"invoice_number\": \"1\",\n        \"reference_number\": \"ABC-123\",\n        \"reference_number_2\": \"SIU-234\",\n        \"reference_number_3\": \"\",\n        \"is_retainer\": false,\n        \"subtotal\": \"537.50\",\n        \"tax_total\": \"0.00\",\n        \"tax_detail\": [\n            {\n                \"tax_component_id\": \"1\",\n                \"label\": \"No Tax\",\n                \"tax_rate\": \"0.000\",\n                \"is_compound\": false,\n                \"tax_amount\": \"0.00\"\n            }\n        ],\n        \"discount\": \"0.00\",\n        \"grand_total\": \"537.50\",\n        \"amount_paid\": \"424.00\",\n        \"amount_outstanding\": \"113.50\",\n        \"created_on\": \"2026-02-03\",\n        \"due_on\": \"2026-03-05\",\n        \"closed_on\": null,\n        \"public_notes\": \"Thank you for your business!\",\n        \"internal_notes\": \"\",\n        \"invoice_terms\": \"DUE NET 30\",\n        \"last_sent_at\": null,\n        \"created_at\": \"2026-02-03 16:10:30\",\n        \"updated_at\": \"2026-02-03 16:10:30\",\n        \"invoice_status\": \"partial_paid\",\n        \"billing_email\": \"example@trackops.com\",\n        \"formatted_invoice_number\": \"INV-00001\",\n        \"route_prefix\": \"invoice\",\n        \"CompanyLocation\": {\n            \"id\": \"2\",\n            \"name\": \"Main Location\",\n            \"address_1\": \"\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"\",\n            \"state\": \"\",\n            \"zip\": \"\",\n            \"country\": \"US\",\n            \"route_prefix\": \"client\"\n        },\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"address_1\": \"123 Main Street\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"Beverly Hills\",\n            \"state\": \"CA\",\n            \"zip\": \"90210\",\n            \"country\": \"US\",\n            \"account_code\": \"\",\n            \"billing_email\": \"\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Homenick Group Location\",\n                \"account_code\": \"SAMPLE\",\n                \"billing_email\": \"example@trackops.com\",\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"User\": {\n            \"id\": \"2\",\n            \"first_name\": \"Virginia\",\n            \"last_name\": \"Kuhn\",\n            \"email\": \"Wallace61@example.net\",\n            \"phone_home\": \"896-830-8304\",\n            \"phone_mobile\": \"206-795-4505\",\n            \"phone_office\": \"223-637-5881 99-636-381-8566\",\n            \"phone_fax\": \"312-391-5409\",\n            \"account_code\": \"velit-soluta-ut\",\n            \"name\": \"Kuhn, Virginia\",\n            \"proper_name\": \"Virginia Kuhn\"\n        },\n        \"Salesperson\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"account_code\": \"\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_country\": \"US\",\n            \"case_state\": \"CO\",\n            \"case_location\": \"Elveraburgh\",\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\",\n            \"PrimarySubject\": {\n                \"id\": \"3\",\n                \"name\": \"McFly, Marty Seamus\"\n            }\n        },\n        \"TrackingCategory\": null,\n        \"InvoiceDetails\": [\n            {\n                \"invoice_id\": \"1\",\n                \"invoice_detail_rank\": \"1\",\n                \"user_id\": \"1\",\n                \"service_date\": \"2026-02-03\",\n                \"rate\": \"50.000\",\n                \"quantity\": \"1.000\",\n                \"subtotal\": \"50.00\",\n                \"discount\": \"0.00\",\n                \"total\": \"50.00\",\n                \"notes\": \"travel time to and from investigation.\",\n                \"created_at\": \"2026-02-03 16:10:30\",\n                \"FinanceItem\": {\n                    \"id\": \"3\",\n                    \"name\": \"Travel Hours\",\n                    \"invoice_alias\": \"Travel Hours\",\n                    \"reference_id\": null,\n                    \"item_code\": null\n                },\n                \"ItemCode\": {\n                    \"id\": \"1\",\n                    \"code\": \"E109\",\n                    \"name\": \"Local travel\",\n                    \"reference_id\": \"\"\n                },\n                \"TaxRate\": {\n                    \"id\": \"1\",\n                    \"name\": \"Tax Exempt\",\n                    \"effective_rate\": \"0.00000\",\n                    \"reference_id\": null\n                }\n            },\n            {\n                \"invoice_id\": \"1\",\n                \"invoice_detail_rank\": \"2\",\n                \"user_id\": \"1\",\n                \"service_date\": \"2026-02-03\",\n                \"rate\": \"75.000\",\n                \"quantity\": \"6.000\",\n                \"subtotal\": \"450.00\",\n                \"discount\": \"0.00\",\n                \"total\": \"450.00\",\n                \"notes\": \"\",\n                \"created_at\": \"2026-02-03 16:10:30\",\n                \"FinanceItem\": {\n                    \"id\": \"1\",\n                    \"name\": \"Work Hours\",\n                    \"invoice_alias\": \"Work Hours\",\n                    \"reference_id\": null,\n                    \"item_code\": null\n                },\n                \"ItemCode\": null,\n                \"TaxRate\": {\n                    \"id\": \"1\",\n                    \"name\": \"Tax Exempt\",\n                    \"effective_rate\": \"0.00000\",\n                    \"reference_id\": null\n                }\n            },\n            {\n                \"invoice_id\": \"1\",\n                \"invoice_detail_rank\": \"3\",\n                \"user_id\": \"1\",\n                \"service_date\": \"2026-02-03\",\n                \"rate\": \"0.750\",\n                \"quantity\": \"50.000\",\n                \"subtotal\": \"37.50\",\n                \"discount\": \"0.00\",\n                \"total\": \"37.50\",\n                \"notes\": \"\",\n                \"created_at\": \"2026-02-03 16:10:30\",\n                \"FinanceItem\": {\n                    \"id\": \"2\",\n                    \"name\": \"Mileage\",\n                    \"invoice_alias\": \"Mileage\",\n                    \"reference_id\": null,\n                    \"item_code\": null\n                },\n                \"ItemCode\": null,\n                \"TaxRate\": {\n                    \"id\": \"1\",\n                    \"name\": \"Tax Exempt\",\n                    \"effective_rate\": \"0.00000\",\n                    \"reference_id\": null\n                }\n            }\n        ]\n    }\n]"}],"_postman_id":"7d8b2998-a5b0-43a2-ab43-197252f5d98e"}],"id":"49e21e25-3217-4072-9b97-829cdd8d7a9b","description":"<p>Invoices create a bill of sale of products and services performed.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337803-Converting-your-Expenses-into-Invoices\">Converting your Expenses into Invoices</a></p>\n","_postman_id":"49e21e25-3217-4072-9b97-829cdd8d7a9b","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Item Codes","item":[{"name":"Get an item code","id":"39563b7d-9fef-43bd-bda6-6a7d71508ba2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/item_codes/:item_code_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["item_codes",":item_code_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the item code</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"item_code_id"}]}},"response":[{"id":"0e8c5e90-7188-4970-8e92-029f2ace41e5","name":"Get an item code","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/item_codes/:item_code_id","host":["/api/v1"],"path":["item_codes",":item_code_id"],"variable":[{"key":"item_code_id","value":"<integer>","description":"ID of the item code"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Local travel\",\n    \"code\": \"E109\",\n    \"notes\": \"\",\n    \"reference_id\": \"\",\n    \"description\": \"\"\n}"}],"_postman_id":"39563b7d-9fef-43bd-bda6-6a7d71508ba2"},{"name":"List item codes","id":"d9fb7dab-f345-46f1-9658-fa955ddf50a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/item_codes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["item_codes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c729ab10-56c5-40c1-803c-9e62d8e6239c","name":"List item codes","originalRequest":{"method":"GET","header":[],"url":"/api/v1/item_codes"},"status":"OK","code":200,"_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\": \"1\",\n        \"name\": \"Local travel\",\n        \"code\": \"E109\",\n        \"notes\": \"\",\n        \"reference_id\": \"\",\n        \"description\": \"\"\n    }\n]"}],"_postman_id":"d9fb7dab-f345-46f1-9658-fa955ddf50a9"},{"name":"Search item codes","id":"787c57c5-a052-4cca-a3bd-0989b8ff530b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/item_codes?id=<integer>&name=<string>&code=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["item_codes"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the item code</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the item code</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Item code</p>\n","type":"text/plain"},"key":"code","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"75b1b70a-98af-4cc4-a014-1b29686441d0","name":"Search item codes","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/item_codes?id=<integer>&name=<string>&code=<string>&page=<integer>","host":["/api/v1"],"path":["item_codes"],"query":[{"key":"id","value":"<integer>","description":"ID of the item code"},{"key":"name","value":"<string>","description":"Name of the item code"},{"key":"code","value":"<string>","description":"Item code"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_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\": \"1\",\n        \"name\": \"Local travel\",\n        \"code\": \"E109\",\n        \"notes\": \"\",\n        \"reference_id\": \"\",\n        \"description\": \"\"\n    }\n]"}],"_postman_id":"787c57c5-a052-4cca-a3bd-0989b8ff530b"}],"id":"a444e91c-a176-47da-8438-a5739e9a51b8","description":"<p>Item codes categorize line items for expense entries and invoices. Item codes can be exported along with invoices for LEDES compatiblity.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/360050098832-Managing-Item-Codes-for-your-Expenses-and-Invoices\">Managing Item Codes for your Expenses and Invoices</a></p>\n","_postman_id":"a444e91c-a176-47da-8438-a5739e9a51b8","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Licenses","item":[{"name":"Get a license","id":"0a85ec5a-19c1-4103-a256-bdfe9fe8abb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/licenses/:license_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["licenses",":license_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the license</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"license_id"}]}},"response":[{"id":"c1368d73-bc68-489b-bf81-12976a8b6173","name":"Get a license","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/licenses/:license_id","host":["/api/v1"],"path":["licenses",":license_id"],"variable":[{"key":"license_id","value":"<integer>","description":"ID of the license"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"California PI License\",\n    \"license\": \"CA-123456789\",\n    \"state\": \"CA\",\n    \"country\": \"US\",\n    \"expires_on\": \"2030-02-28\",\n    \"renewed_on\": null,\n    \"notes\": \"\",\n    \"is_recommendable\": true,\n    \"created_at\": \"2026-02-03 16:15:50\",\n    \"updated_at\": \"2026-02-03 16:15:50\",\n    \"User\": {\n        \"id\": \"3\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    }\n}"}],"_postman_id":"0a85ec5a-19c1-4103-a256-bdfe9fe8abb7"},{"name":"List licenses","id":"d0369d8d-aaac-4851-92fa-21cf3169010a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/licenses","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["licenses"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"6514241d-00a6-4867-92b3-648036010119","name":"List licenses","originalRequest":{"method":"GET","header":[],"url":"/api/v1/licenses"},"status":"OK","code":200,"_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\": \"1\",\n        \"name\": \"California PI License\",\n        \"license\": \"CA-123456789\",\n        \"state\": \"CA\",\n        \"country\": \"US\",\n        \"expires_on\": \"2030-02-28\",\n        \"renewed_on\": null,\n        \"notes\": \"\",\n        \"is_recommendable\": true,\n        \"created_at\": \"2026-02-03 16:15:50\",\n        \"updated_at\": \"2026-02-03 16:15:50\",\n        \"User\": {\n            \"id\": \"3\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"first_name\": \"Sam\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        }\n    }\n]"}],"_postman_id":"d0369d8d-aaac-4851-92fa-21cf3169010a"},{"name":"Search licenses","id":"8a0ea74d-d632-4c66-9083-0d9d8c8d8279","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/licenses?id=<integer>&license=<string>&name=<string>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&expiration_to=<datestamp>&expiration_from=<datestamp>&from=<datestamp>&to=<datestamp>&renewed_from=<datestamp>&renewed_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["licenses"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the license</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>License number</p>\n","type":"text/plain"},"key":"license","value":"<string>"},{"description":{"content":"<p>Name of the license</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>ID of the user associated with the license</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ISO date the license was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the license was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the license expires \"to\"</p>\n","type":"text/plain"},"key":"expiration_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the license expires \"from\"</p>\n","type":"text/plain"},"key":"expiration_from","value":"<datestamp>"},{"description":{"content":"<p>Alias of expiration_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of expiration_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the license was renewed \"from\"</p>\n","type":"text/plain"},"key":"renewed_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the license was renewed \"to\"</p>\n","type":"text/plain"},"key":"renewed_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the license was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the license was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"ef5c09e9-6dba-42b7-9db7-4d3cb1bf3974","name":"Search licenses","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/licenses?id=<integer>&license=<string>&name=<string>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&expiration_to=<datestamp>&expiration_from=<datestamp>&from=<datestamp>&to=<datestamp>&renewed_from=<datestamp>&renewed_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["licenses"],"query":[{"key":"id","value":"<integer>","description":"ID of the license"},{"key":"license","value":"<string>","description":"License number"},{"key":"name","value":"<string>","description":"Name of the license"},{"key":"user","value":"<integer>","description":"ID of the user associated with the license"},{"key":"created_from","value":"<datestamp>","description":"ISO date the license was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the license was created \"to\""},{"key":"expiration_to","value":"<datestamp>","description":"ISO date the license expires \"to\""},{"key":"expiration_from","value":"<datestamp>","description":"ISO date the license expires \"from\""},{"key":"from","value":"<datestamp>","description":"Alias of expiration_from"},{"key":"to","value":"<datestamp>","description":"Alias of expiration_to"},{"key":"renewed_from","value":"<datestamp>","description":"ISO date the license was renewed \"from\""},{"key":"renewed_to","value":"<datestamp>","description":"ISO date the license was renewed \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date the license was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the license was updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_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\": \"1\",\n        \"name\": \"California PI License\",\n        \"license\": \"CA-123456789\",\n        \"state\": \"CA\",\n        \"country\": \"US\",\n        \"expires_on\": \"2030-02-28\",\n        \"renewed_on\": null,\n        \"notes\": \"\",\n        \"is_recommendable\": true,\n        \"created_at\": \"2026-02-03 16:15:50\",\n        \"updated_at\": \"2026-02-03 16:15:50\",\n        \"User\": {\n            \"id\": \"3\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"first_name\": \"Sam\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        }\n    }\n]"}],"_postman_id":"8a0ea74d-d632-4c66-9083-0d9d8c8d8279"},{"name":"Create a license","id":"1a6f7a96-1813-4af9-a9fc-54a145f6aa00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"license\": {\n     \"user_id\": \"<integer>\",\n     \"name\": \"East Joanne License\",\n     \"license\": \"a78384fa-fe8c-4845-aafd-621895049c6f\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"<country-code>\",\n     \"notes\": \"Consequatur voluptates non nobis. Ipsum et modi blanditiis necessitatibus.\",\n     \"is_recommendable\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/licenses","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["licenses"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"fc2d2208-f310-4daa-903e-71118579ab58","name":"Create a license","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"license\": {\n     \"user_id\": \"<integer>\",\n     \"name\": \"Madison License\",\n     \"license\": \"67dac9ef-d477-4cab-a26f-1427cb85d05f\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"<country-code>\",\n     \"notes\": \"Alias accusantium eaque odit quis atque eos atque. Corporis et placeat. Nihil aut quod doloremque temporibus fuga quibusdam odit quia quasi. Est laborum soluta ut quam magnam accusantium.\",\n     \"is_recommendable\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/licenses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"name\": \"East Nicola License\",\n    \"license\": \"db79d362-c018-4407-b0fc-61366e1ef30d\",\n    \"state\": \"CO\",\n    \"country\": \"US\",\n    \"expires_on\": \"2026-02-10\",\n    \"renewed_on\": null,\n    \"notes\": \"Amet repudiandae quia. Sit laudantium error cumque inventore aliquam.\",\n    \"is_recommendable\": true,\n    \"created_at\": \"2026-02-03 16:18:21\",\n    \"updated_at\": \"2026-02-03 16:18:21\",\n    \"User\": {\n        \"id\": \"3\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    }\n}"}],"_postman_id":"1a6f7a96-1813-4af9-a9fc-54a145f6aa00"},{"name":"Update a license","id":"54706931-76e4-4775-9471-088c17001a8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"license\": {\n     \"user_id\": \"<integer>\",\n     \"name\": \"South Reaganborough License\",\n     \"license\": \"125c873e-8275-4bc2-852d-9a582892b71b\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"US\",\n     \"notes\": \"Voluptas officiis aut quisquam aspernatur aut et. Omnis officia nobis nihil architecto quia. Quo occaecati et vel quia totam quam at.\",\n     \"is_recommendable\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/licenses/:license_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["licenses",":license_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the license</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"license_id"}]}},"response":[{"id":"0f909f40-53bc-41ba-94f4-ff4b615469e5","name":"Update a license","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"license\": {\n     \"user_id\": \"<integer>\",\n     \"name\": \"Fairfield License\",\n     \"license\": \"4257aa0b-0125-4742-9419-1a44827245ef\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"US\",\n     \"notes\": \"Sint explicabo officiis quia quia veniam sint odit. Cum at omnis minima. Qui distinctio consequuntur quo reiciendis expedita et et odit molestiae. Commodi quisquam sit nisi occaecati tenetur dolorem natus voluptatibus libero.\",\n     \"is_recommendable\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/licenses/:license_id","host":["/api/v1"],"path":["licenses",":license_id"],"variable":[{"key":"license_id","value":"<integer>","description":"ID of the license"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"West Dustinland License\",\n    \"license\": \"d8dd528a-e483-4c4f-9ce1-b26315c6ba07\",\n    \"state\": \"CO\",\n    \"country\": \"US\",\n    \"expires_on\": \"2026-02-10\",\n    \"renewed_on\": null,\n    \"notes\": \"Aut totam error itaque exercitationem aut qui aut enim. Sed similique cupiditate et. Quaerat harum quo sit iste sunt eum soluta sed. Tempore quis laborum aut ab perspiciatis autem soluta. Eum officiis vero saepe numquam vitae optio.\",\n    \"is_recommendable\": true,\n    \"created_at\": \"2026-02-03 16:15:50\",\n    \"updated_at\": \"2026-02-03 16:19:01\",\n    \"User\": {\n        \"id\": \"3\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    }\n}"}],"_postman_id":"54706931-76e4-4775-9471-088c17001a8e"}],"id":"8eb64d79-4c33-46ca-8466-e7a7ee77b980","description":"<p>Licenses track business documents and certifications required for field work and other investigative activities.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337363-Managing-Employee-Licenses\">Managing Employee Licenses</a></p>\n","_postman_id":"8eb64d79-4c33-46ca-8466-e7a7ee77b980","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Referral Sources","item":[{"name":"Get a referral source","id":"185c612f-0242-4aeb-8da1-fcb741dc3978","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/referral_sources/:referral_source_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["referral_sources",":referral_source_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the referral source</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"referral_source_id"}]}},"response":[{"id":"cc072af6-43a7-4654-ab81-8ed65b87ef9e","name":"Get a referral source","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/referral_sources/:referral_source_id","host":["/api/v1"],"path":["referral_sources",":referral_source_id"],"variable":[{"key":"referral_source_id","value":"<integer>","description":"ID of the referral source"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Personal Referral\",\n    \"notes\": \"Referred by a friend or colleague\",\n    \"description\": \"Referred by a friend or colleague\"\n}"}],"_postman_id":"185c612f-0242-4aeb-8da1-fcb741dc3978"},{"name":"List referral sources","id":"40bfc6b5-f4ba-4d6d-9cad-8eeb3d8a5fe5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/referral_sources","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["referral_sources"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"ef10af4d-a4c3-42bc-8ce6-ae0822306abd","name":"List referral sources","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/referral_sources"},"status":"OK","code":200,"_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\": \"1\",\n        \"name\": \"Personal Referral\",\n        \"notes\": \"Referred by a friend or colleague\",\n        \"description\": \"Referred by a friend or colleague\"\n    }\n]"}],"_postman_id":"40bfc6b5-f4ba-4d6d-9cad-8eeb3d8a5fe5"},{"name":"Search referral sources","id":"0320e891-a262-44d4-b240-ca56c528b8a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/referral_sources?id=<integer>&name=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["referral_sources"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the referral source</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the referral source</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"ee9ca2a8-4c76-4f3f-9071-9dad3f22a6fc","name":"Search referral sources","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/referral_sources?id=<integer>&name=<string>&page=<integer>","host":["/api/v1"],"path":["referral_sources"],"query":[{"key":"id","value":"<integer>","description":"ID of the referral source"},{"key":"name","value":"<string>","description":"Name of the referral source"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_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\": \"1\",\n        \"name\": \"Personal Referral\",\n        \"notes\": \"Referred by a friend or colleague\",\n        \"description\": \"Referred by a friend or colleague\"\n    }\n]"}],"_postman_id":"0320e891-a262-44d4-b240-ca56c528b8a1"}],"id":"30be59c8-d39f-4296-9f8b-c0ee1d6552fa","description":"<p>Referral sources capture the origin of new case referrals, often used for marketing, statistics, and other referral related matters.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/360002153632-Tracking-Case-Referrals\">Tracking Case Referrals</a></p>\n","_postman_id":"30be59c8-d39f-4296-9f8b-c0ee1d6552fa","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Staff","item":[{"name":"Employees","item":[{"name":"Create an employee","id":"9090881f-4ee5-4a60-b9f9-c353830bfe5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"employee\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"first_name\": \"Bertrand\",\n     \"middle_name\": \"Noemie\",\n     \"last_name\": \"Block\",\n     \"title\": \"Chief Research Engineer\",\n     \"email\": \"Christ_Braun67@example.org\",\n     \"phone_home\": \"723-606-0258\",\n     \"phone_mobile\": \"775-224-6353\",\n     \"phone_office\": \"749-363-3924 x22\",\n     \"phone_fax\": \"586-996-0259\",\n     \"address_1\": \"6780 Kemmer Meadows\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"South Austen\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"vero-aspernatur-repudiandae\",\n     \"notes\": \"Sequi autem sunt repellendus nam. Optio neque sequi corporis amet tempora. Quo velit ex saepe consequatur maiores fuga ut velit.\",\n     \"admin_notes\": \"Soluta ut eum cumque consequatur reiciendis nihil vero accusantium. Eveniet dicta maxime voluptatem blanditiis praesentium voluptatem itaque molestiae accusamus. Dolorem et voluptatem modi qui. Hic ratione unde sint omnis repellendus velit.\"\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/employees","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","employees"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"f09fadd0-3a30-42a3-a303-ac87dd317503","name":"Create an employee","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"employee\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"first_name\": \"Brenda\",\n     \"middle_name\": \"Daron\",\n     \"last_name\": \"Runolfsdottir\",\n     \"title\": \"Principal Brand Representative\",\n     \"email\": \"Ella0@example.com\",\n     \"phone_home\": \"737-883-3329\",\n     \"phone_mobile\": \"583-380-8926\",\n     \"phone_office\": \"443-575-4998 x595\",\n     \"phone_fax\": \"303-386-3937\",\n     \"address_1\": \"8569 Harvey Expressway\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"North Guillermo\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"consequuntur-harum-perferendis\",\n     \"notes\": \"Ipsa non sit dolores. Animi magnam expedita dicta. Et quo recusandae ratione architecto. Libero a quis accusantium commodi sit est. Qui suscipit sed. Consectetur aliquam voluptatem.\",\n     \"admin_notes\": \"Sed in ut delectus excepturi omnis omnis qui ut omnis. Maiores veniam et sunt aut cum quidem ea delectus. Quia quae velit dolores magni nisi non consequatur inventore. Enim nisi et dicta soluta. Ea eaque similique occaecati deleniti qui aspernatur nihil.\"\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/employees"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"5\",\n    \"manager_id\": null,\n    \"first_name\": \"Rita\",\n    \"middle_name\": \"Claud\",\n    \"last_name\": \"Parisian\",\n    \"title\": \"Internal Factors Analyst\",\n    \"email\": \"Hanna.Hettinger45@example.org\",\n    \"phone_home\": \"871-985-8930\",\n    \"phone_mobile\": \"522-393-1325\",\n    \"phone_mobile_carrier\": null,\n    \"phone_office\": \"575-273-6688 x824\",\n    \"phone_fax\": \"438-243-5600\",\n    \"address_1\": \"464 Collins Islands\",\n    \"address_2\": \"\",\n    \"address_3\": \"\",\n    \"city\": \"Fort Smith\",\n    \"state\": \"CO\",\n    \"zip\": \"80202\",\n    \"country\": \"US\",\n    \"latitude\": \"39.740008\",\n    \"longitude\": \"-104.987401\",\n    \"last_latitude\": null,\n    \"last_longitude\": null,\n    \"last_location_update_at\": null,\n    \"last_event_checkin_at\": null,\n    \"birthday\": \"1976-07-04\",\n    \"account_code\": \"ducimus-omnis-ullam\",\n    \"class_code\": null,\n    \"rating_average\": null,\n    \"notes\": \"Numquam veritatis consequuntur. In in sunt corporis ut facilis molestiae. Tempore repudiandae autem at sed aut quis maiores corporis accusamus.\",\n    \"admin_notes\": \"Aut ea et soluta similique nam inventore vel maxime non. Maxime cum repellendus. Et quod rerum nulla voluptas reiciendis qui quisquam. Nesciunt vel deserunt ut eius velit explicabo velit odit. Molestiae velit rerum eos consequuntur officia.\",\n    \"created_at\": \"2026-02-03 16:30:17\",\n    \"updated_at\": \"2026-02-03 16:30:17\",\n    \"last_login_at\": null,\n    \"mfa_enabled\": \"0\",\n    \"is_login_active\": \"0\",\n    \"name\": \"Parisian, Rita Claud\",\n    \"proper_name\": \"Rita Claud Parisian\",\n    \"Role\": {\n        \"id\": \"1\",\n        \"name\": \"Chief Operator\"\n    },\n    \"UserFieldGroup\": []\n}"}],"_postman_id":"9090881f-4ee5-4a60-b9f9-c353830bfe5c"},{"name":"Update an employee","id":"6a0bd3c4-963c-41e5-b4c3-4284a4522cfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"employee\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"first_name\": \"Velda\",\n     \"middle_name\": \"Winona\",\n     \"last_name\": \"Wolf\",\n     \"title\": \"Lead Data Manager\",\n     \"email\": \"Carmella.Nicolas@example.com\",\n     \"phone_home\": \"592-684-5118\",\n     \"phone_mobile\": \"708-683-0653\",\n     \"phone_office\": \"889-377-9493 x172\",\n     \"phone_fax\": \"693-334-7176\",\n     \"address_1\": \"800 Kohler Lakes\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"Botsfordmouth\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"maiores-accusamus-optio\",\n     \"notes\": \"Pariatur doloribus omnis modi iusto et quas tempore facilis. Ducimus et error. Voluptatem laborum eius consequatur illum et architecto. Ut aspernatur soluta et molestiae qui hic consequatur ipsam. Ut recusandae et voluptatem nihil.\",\n     \"admin_notes\": \"Iusto dolore ut. Et impedit pariatur quam fugit odio voluptatem cum ut officia. Sed libero aliquid corrupti et natus ut exercitationem debitis.\"\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/employees/:employee_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","employees",":employee_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the employee</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"employee_id"}]}},"response":[{"id":"be507796-2f59-44ff-ace4-d3efd121ffd5","name":"Update an employee","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"employee\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"first_name\": \"Lucinda\",\n     \"middle_name\": \"Doug\",\n     \"last_name\": \"Hegmann\",\n     \"title\": \"Principal Communications Assistant\",\n     \"email\": \"Dasia.Kassulke@example.com\",\n     \"phone_home\": \"317-997-4187\",\n     \"phone_mobile\": \"926-474-1906\",\n     \"phone_office\": \"519-223-1047 x680\",\n     \"phone_fax\": \"439-502-6845\",\n     \"address_1\": \"636 Funk Corners\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"Jarredchester\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"quas-repellendus-et\",\n     \"notes\": \"Ab iste unde non soluta et ea aut voluptas. Laboriosam atque voluptatem dolore exercitationem et tempore ipsam nobis quae. Veritatis consequatur quis sit qui delectus accusantium ipsa. Commodi velit placeat voluptatem exercitationem quia impedit aperiam. Eius necessitatibus ut odit vel.\",\n     \"admin_notes\": \"Repudiandae dolor iste. Aut doloremque omnis culpa voluptatibus eos neque aut officia. Et dolores cupiditate ea qui recusandae repellat a. Labore qui incidunt sequi adipisci. Error corporis qui cum fugit. Ut consectetur consectetur asperiores et excepturi accusantium.\"\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/staff/employees/:employee_id","host":["/api/v1"],"path":["staff","employees",":employee_id"],"variable":[{"key":"employee_id","value":"<integer>","description":"ID of the employee"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"manager_id\": null,\n    \"first_name\": \"Jefferey\",\n    \"middle_name\": \"Mohammed\",\n    \"last_name\": \"Lebsack\",\n    \"title\": \"Direct Infrastructure Engineer\",\n    \"email\": \"Mikel_Spinka@example.com\",\n    \"phone_home\": \"271-735-9609\",\n    \"phone_mobile\": \"775-495-5387\",\n    \"phone_mobile_carrier\": \"\",\n    \"phone_office\": \"546-505-4894 x952\",\n    \"phone_fax\": \"877-563-6225\",\n    \"address_1\": \"632 Brendon Turnpike\",\n    \"address_2\": \"\",\n    \"address_3\": \"\",\n    \"city\": \"Julioland\",\n    \"state\": \"CO\",\n    \"zip\": \"80202\",\n    \"country\": \"US\",\n    \"latitude\": \"39.095183\",\n    \"longitude\": \"-108.651110\",\n    \"last_latitude\": null,\n    \"last_longitude\": null,\n    \"last_location_update_at\": null,\n    \"last_event_checkin_at\": null,\n    \"birthday\": \"1976-07-04\",\n    \"account_code\": \"nobis-quibusdam-omnis\",\n    \"class_code\": \"\",\n    \"rating_average\": null,\n    \"notes\": \"Veritatis labore et. Dicta hic reiciendis. Vel quisquam enim distinctio repudiandae eaque. Ducimus qui magnam quis exercitationem ut nihil aut pariatur.\",\n    \"admin_notes\": \"Consectetur aspernatur quasi voluptas qui sed est quis. Explicabo velit tempore nulla. Quos consequuntur atque nisi voluptatum. Eveniet et odit earum unde nam.\",\n    \"created_at\": \"2009-01-28 13:58:09\",\n    \"updated_at\": \"2026-02-03 16:30:28\",\n    \"last_login_at\": \"2026-02-03 15:28:03\",\n    \"mfa_enabled\": \"0\",\n    \"is_login_active\": \"1\",\n    \"name\": \"Lebsack, Jefferey Mohammed\",\n    \"proper_name\": \"Jefferey Mohammed Lebsack\",\n    \"Role\": {\n        \"id\": \"1\",\n        \"name\": \"Chief Operator\"\n    },\n    \"UserFieldGroup\": []\n}"}],"_postman_id":"6a0bd3c4-963c-41e5-b4c3-4284a4522cfa"}],"id":"c2c74eb6-a96a-44c2-b2b0-aeffe80fb49b","description":"<p>Employees refers to your in-house staff. Some features in Trackops are restricted to employees only.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/360016467652-Creating-a-New-Employee\">Creating a New Employee</a></p>\n","_postman_id":"c2c74eb6-a96a-44c2-b2b0-aeffe80fb49b","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Staff Notes","item":[{"name":"Get a staff note","id":"028679a1-564a-4b65-8130-852a472261da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff/notes/:staff_note_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","notes",":staff_note_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the staff note</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"staff_note_id"}]}},"response":[{"id":"a7e2ece6-fc58-4d72-8677-c881e1092b82","name":"Get a staff note","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/staff/notes/:staff_note_id","host":["/api/v1"],"path":["staff","notes",":staff_note_id"],"variable":[{"key":"staff_note_id","value":"<integer>","description":"ID of the staff note"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"5\",\n    \"body\": \"**Feb 3, 2026**\\r\\n\\r\\n - Performed annual review.  Increased base bay 5%.\",\n    \"note_date\": \"2026-02-03\",\n    \"is_pinned\": true,\n    \"created_at\": \"2026-02-03 16:27:38\",\n    \"updated_at\": \"2026-02-03 16:27:38\",\n    \"User\": {\n        \"id\": \"3\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\",\n        \"Location\": {\n            \"id\": \"2\",\n            \"name\": \"Main Location\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"Author\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"url\": null\n}"}],"_postman_id":"028679a1-564a-4b65-8130-852a472261da"},{"name":"List staff notes","id":"693d568c-3a73-41f2-b9f2-04e375c59a99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff/notes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","notes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"fd6990a6-faeb-4807-b70a-f44213c805f9","name":"List staff notes","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff/notes"},"status":"OK","code":200,"_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\": \"5\",\n        \"body\": \"**Feb 3, 2026**\\r\\n\\r\\n - Performed annual review.  Increased base bay 5%.\",\n        \"note_date\": \"2026-02-03\",\n        \"is_pinned\": true,\n        \"created_at\": \"2026-02-03 16:27:38\",\n        \"updated_at\": \"2026-02-03 16:27:38\",\n        \"User\": {\n            \"id\": \"3\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\",\n            \"Location\": {\n                \"id\": \"2\",\n                \"name\": \"Main Location\",\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"AccessGroup\": {\n            \"id\": \"2\",\n            \"name\": \"Public\"\n        },\n        \"Author\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"url\": null\n    }\n]"}],"_postman_id":"693d568c-3a73-41f2-b9f2-04e375c59a99"},{"name":"Create a staff note","id":"0c6c4fd9-a5ac-4d02-9509-2236188d5ccc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"staff_note\": {\n     \"user_id\": <integer>,\n     \"author_id\": <integer>,\n     \"access_group_id\": <integer>,\n     \"note_date\": \"<datestamp>\",\n     \"body\": \"Ab porro est a voluptatem occaecati laudantium eaque. Rerum repellat ab quos. Et et accusamus quidem molestiae reiciendis. Repellat quia aperiam quibusdam omnis cumque.\",\n     \"is_pinned\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/notes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","notes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"429fe45e-004c-42c2-b255-02c0867f5e5a","name":"Create a staff note","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"staff_note\": {\n     \"user_id\": <integer>,\n     \"author_id\": <integer>,\n     \"access_group_id\": <integer>,\n     \"note_date\": \"<datestamp>\",\n     \"body\": \"Rerum asperiores expedita quia. Eaque et exercitationem officiis iure quia maxime nesciunt dolores. Recusandae ut facere. Rem nemo fuga quam reprehenderit. Recusandae dicta quas. Asperiores et et vel odio quaerat quis voluptatem eligendi.\",\n     \"is_pinned\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"6\",\n    \"body\": \"Sed eius at molestias voluptatem. Quibusdam aspernatur vitae dolores modi perspiciatis dignissimos facere.\",\n    \"note_date\": \"2026-02-03\",\n    \"is_pinned\": true,\n    \"created_at\": \"2026-02-03 16:29:12\",\n    \"updated_at\": \"2026-02-03 16:29:12\",\n    \"User\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\",\n        \"Location\": {\n            \"id\": \"2\",\n            \"name\": \"Main Location\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"Author\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"url\": null\n}"}],"_postman_id":"0c6c4fd9-a5ac-4d02-9509-2236188d5ccc"}],"id":"c7c80c76-085b-41d3-bb6b-d8a3bde29c86","description":"<p>Staff notes store extra information, recent conversations, or other updates related to the staff member.</p>\n","_postman_id":"c7c80c76-085b-41d3-bb6b-d8a3bde29c86","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Staff Price Lists","item":[{"name":"Get a staff price list adjustment","id":"e08637f4-3018-422b-90fb-f9b511ef8725","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff/pricelist/:staff_id/:expense_item_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","pricelist",":staff_id",":expense_item_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the staff member (user)</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"staff_id"},{"description":{"content":"<p>ID of the expense item (finance item)</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"expense_item_id"}]}},"response":[{"id":"a290185e-cc48-40b9-8c6e-ca6b48a4baa9","name":"Get a staff price list adjustment","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/staff/pricelist/:staff_id/:expense_item_id","host":["/api/v1"],"path":["staff","pricelist",":staff_id",":expense_item_id"],"variable":[{"key":"staff_id","value":"<integer>","description":"ID of the staff member (user)"},{"key":"expense_item_id","value":"<integer>","description":"ID of the expense item (finance item)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"user_id\": \"3\",\n    \"finance_item_id\": \"1\",\n    \"expense_unit_rate\": \"55.000\",\n    \"User\": {\n        \"id\": \"3\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"FinanceItem\": {\n        \"id\": \"1\",\n        \"name\": \"Work Hours\",\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"expense_alias\": \"Work Hours\",\n        \"expense_unit_rate\": \"50.000\"\n    }\n}"}],"_postman_id":"e08637f4-3018-422b-90fb-f9b511ef8725"},{"name":"List staff price list adjustments","id":"7b77c60a-6379-48db-85d4-c85e02319fb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff/pricelist","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","pricelist"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"f420e39e-a0ca-4ec1-86ac-863ab57fe48e","name":"List staff price list adjustments","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff/pricelist"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"user_id\": \"3\",\n        \"finance_item_id\": \"1\",\n        \"expense_unit_rate\": \"55.000\",\n        \"User\": {\n            \"id\": \"3\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"FinanceItem\": {\n            \"id\": \"1\",\n            \"name\": \"Work Hours\",\n            \"reference_id\": null,\n            \"item_code\": null,\n            \"expense_alias\": \"Work Hours\",\n            \"expense_unit_rate\": \"50.000\"\n        }\n    },\n    {\n        \"user_id\": \"3\",\n        \"finance_item_id\": \"2\",\n        \"expense_unit_rate\": \"0.600\",\n        \"User\": {\n            \"id\": \"3\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"FinanceItem\": {\n            \"id\": \"2\",\n            \"name\": \"Mileage\",\n            \"reference_id\": null,\n            \"item_code\": null,\n            \"expense_alias\": \"Mileage\",\n            \"expense_unit_rate\": \"0.500\"\n        }\n    }\n]"}],"_postman_id":"7b77c60a-6379-48db-85d4-c85e02319fb5"},{"name":"Create a staff price list adjustment","id":"662eb3c3-3544-4da4-8fad-1ff7faf1bf67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"staff_price_list\": {\n        \"user_id\": \"<integer>\",\n        \"finance_item_id\": \"<integer>\",\n        \"expense_unit_rate\": \"696.27\" \n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/pricelist","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","pricelist"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"243d2034-9688-4422-b72c-3b55ac982e17","name":"Create a staff price list adjustment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"staff_price_list\": {\n        \"user_id\": \"<integer>\",\n        \"finance_item_id\": \"<integer>\",\n        \"expense_unit_rate\": \"894.49\" \n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/pricelist"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"user_id\": \"3\",\n    \"finance_item_id\": \"1\",\n    \"expense_unit_rate\": \"350.460\",\n    \"User\": {\n        \"id\": \"3\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"FinanceItem\": {\n        \"id\": \"1\",\n        \"name\": \"Work Hours\",\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"expense_alias\": \"Work Hours\",\n        \"expense_unit_rate\": \"50.000\"\n    }\n}"}],"_postman_id":"662eb3c3-3544-4da4-8fad-1ff7faf1bf67"}],"id":"91b66b9a-b742-49c4-bee3-d3dc099351ae","description":"<p>Staff price lists allow granular customization of expense rates on a per-user basis.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212336823-Customizing-your-Price-Lists\">Customizing your Price Lists</a></p>\n","_postman_id":"91b66b9a-b742-49c4-bee3-d3dc099351ae","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Get a staff member","id":"55da9efc-bd7a-4f92-8788-92f21f162e9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff/:staff_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff",":staff_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the staff member (employee or vendor)</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"staff_id"}]}},"response":[{"id":"a71c9c13-fab0-4e82-af2d-8672802bfd95","name":"Get a staff member","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/staff/:staff_id","host":["/api/v1"],"path":["staff",":staff_id"],"variable":[{"key":"staff_id","value":"<integer>","description":"ID of the staff member (employee or vendor)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"manager_id\": null,\n    \"first_name\": \"Chief\",\n    \"middle_name\": \"\",\n    \"last_name\": \"Operator\",\n    \"title\": \"\",\n    \"email\": \"support@trackops.com\",\n    \"phone_home\": \"\",\n    \"phone_mobile\": \"\",\n    \"phone_mobile_carrier\": \"\",\n    \"phone_office\": \"\",\n    \"phone_fax\": \"\",\n    \"address_1\": \"\",\n    \"address_2\": \"\",\n    \"address_3\": \"\",\n    \"city\": \"\",\n    \"state\": \"\",\n    \"zip\": \"\",\n    \"country\": \"US\",\n    \"latitude\": null,\n    \"longitude\": null,\n    \"last_latitude\": null,\n    \"last_longitude\": null,\n    \"last_location_update_at\": null,\n    \"last_event_checkin_at\": null,\n    \"birthday\": null,\n    \"account_code\": \"\",\n    \"class_code\": \"\",\n    \"rating_average\": null,\n    \"notes\": \"\",\n    \"admin_notes\": \"\",\n    \"created_at\": \"2009-01-28 13:58:09\",\n    \"updated_at\": \"2026-02-03 15:28:03\",\n    \"last_login_at\": \"2026-02-03 15:28:03\",\n    \"mfa_enabled\": false,\n    \"is_login_active\": true,\n    \"name\": \"Operator, Chief\",\n    \"proper_name\": \"Chief Operator\",\n    \"Role\": {\n        \"id\": \"1\",\n        \"name\": \"Chief Operator\"\n    },\n    \"UserFieldGroup\": []\n}"}],"_postman_id":"55da9efc-bd7a-4f92-8788-92f21f162e9d"},{"name":"List staff","id":"31171cad-6f1f-4c45-9928-492d8464a30c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"5b5d7bbd-f038-4bbc-a390-94988cece533","name":"List staff","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff"},"status":"OK","code":200,"_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\": \"3\",\n        \"manager_id\": \"1\",\n        \"first_name\": \"Sam\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Spade\",\n        \"title\": \"Lead Investigator\",\n        \"email\": \"example@trackops.com\",\n        \"phone_home\": \"555-555-5557\",\n        \"phone_mobile\": \"555-555-5556\",\n        \"phone_mobile_carrier\": \"vtext.com\",\n        \"phone_office\": \"555-555-5555\",\n        \"phone_fax\": \"555-555-5558\",\n        \"address_1\": \"123 Anywhere\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"Denver\",\n        \"state\": \"CO\",\n        \"zip\": \"80202\",\n        \"country\": \"US\",\n        \"latitude\": \"39.740008\",\n        \"longitude\": \"-104.987401\",\n        \"last_latitude\": null,\n        \"last_longitude\": null,\n        \"last_location_update_at\": null,\n        \"last_event_checkin_at\": null,\n        \"birthday\": \"1980-01-15\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"class_code\": \"\",\n        \"rating_average\": null,\n        \"notes\": \"Hired on 01/01/2019\",\n        \"admin_notes\": \"5% Raise given on 01/01/2024 due to excellent performance.\",\n        \"created_at\": \"2026-02-02 20:58:17\",\n        \"updated_at\": \"2026-02-02 21:02:29\",\n        \"last_login_at\": null,\n        \"mfa_enabled\": false,\n        \"is_login_active\": false,\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\",\n        \"Role\": {\n            \"id\": \"7\",\n            \"name\": \"Investigator\"\n        },\n        \"UserFieldGroup\": []\n    },\n    {\n        \"id\": \"1\",\n        \"manager_id\": null,\n        \"first_name\": \"Chief\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Operator\",\n        \"title\": \"\",\n        \"email\": \"support@trackops.com\",\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_mobile_carrier\": \"\",\n        \"phone_office\": \"\",\n        \"phone_fax\": \"\",\n        \"address_1\": \"\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"country\": \"US\",\n        \"latitude\": null,\n        \"longitude\": null,\n        \"last_latitude\": null,\n        \"last_longitude\": null,\n        \"last_location_update_at\": null,\n        \"last_event_checkin_at\": null,\n        \"birthday\": null,\n        \"account_code\": \"\",\n        \"class_code\": \"\",\n        \"rating_average\": null,\n        \"notes\": \"\",\n        \"admin_notes\": \"\",\n        \"created_at\": \"2009-01-28 13:58:09\",\n        \"updated_at\": \"2026-02-03 15:28:03\",\n        \"last_login_at\": \"2026-02-03 15:28:03\",\n        \"mfa_enabled\": false,\n        \"is_login_active\": true,\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\",\n        \"Role\": {\n            \"id\": \"1\",\n            \"name\": \"Chief Operator\"\n        },\n        \"UserFieldGroup\": []\n    }\n]"}],"_postman_id":"31171cad-6f1f-4c45-9928-492d8464a30c"},{"name":"Search staff","id":"d0592a58-7742-4679-b076-0e20c1d1aa37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff?id=<integer>&account_code=<string>&class_code=<string>&email=<string>&first_name=<string>&last_name=<string>&role=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>&with_work_preferences=<boolean>&expand_field_values=<boolean>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the staff member</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Account code (employee number, lookup code, etc...) of the staff member</p>\n","type":"text/plain"},"key":"account_code","value":"<string>"},{"description":{"content":"<p>Timekeeper classification code of the staff member (LEDES)</p>\n","type":"text/plain"},"key":"class_code","value":"<string>"},{"description":{"content":"<p>Email address of the staff member</p>\n","type":"text/plain"},"key":"email","value":"<string>"},{"description":{"content":"<p>First name of the staff member</p>\n","type":"text/plain"},"key":"first_name","value":"<string>"},{"description":{"content":"<p>Last name of the staff member</p>\n","type":"text/plain"},"key":"last_name","value":"<string>"},{"description":{"content":"<p>ID of the user role associated with the staff member</p>\n","type":"text/plain"},"key":"role","value":"<integer>"},{"description":{"content":"<p>ISO date the staff member was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the staff member was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the staff member was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the staff member was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"},{"description":{"content":"<p>Optionally includes \"CaseRegions \"and/or \"CaseServices\" as defined in staff work preferences.</p>\n","type":"text/plain"},"key":"with_work_preferences","value":"<boolean>"},{"description":{"content":"<p>Expand custom field objects</p>\n","type":"text/plain"},"key":"expand_field_values","value":"<boolean>"}],"variable":[]}},"response":[{"id":"40a6dcbf-8ca9-41a4-b0d3-dedf8d4bddd6","name":"Search staff","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/staff?id=<integer>&account_code=<string>&class_code=<string>&email=<string>&first_name=<string>&last_name=<string>&role=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>&expand_field_values=<boolean>","host":["/api/v1"],"path":["staff"],"query":[{"key":"id","value":"<integer>","description":"ID of the staff member"},{"key":"account_code","value":"<string>","description":"Account code (employee number, lookup code, etc...) of the staff member"},{"key":"class_code","value":"<string>","description":"Timekeeper classification code of the staff member (LEDES)"},{"key":"email","value":"<string>","description":"Email address of the staff member"},{"key":"first_name","value":"<string>","description":"First name of the staff member"},{"key":"last_name","value":"<string>","description":"Last name of the staff member"},{"key":"role","value":"<integer>","description":"ID of the user role associated with the staff member"},{"key":"created_from","value":"<datestamp>","description":"ISO date the staff member was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the staff member was created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date the staff member was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the staff member was updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"},{"key":"expand_field_values","value":"<boolean>","description":"Expand custom field objects"}]}},"status":"OK","code":200,"_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\": \"3\",\n        \"manager_id\": \"1\",\n        \"first_name\": \"Sam\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Spade\",\n        \"title\": \"Lead Investigator\",\n        \"email\": \"example@trackops.com\",\n        \"phone_home\": \"555-555-5557\",\n        \"phone_mobile\": \"555-555-5556\",\n        \"phone_mobile_carrier\": \"vtext.com\",\n        \"phone_office\": \"555-555-5555\",\n        \"phone_fax\": \"555-555-5558\",\n        \"address_1\": \"123 Anywhere\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"Denver\",\n        \"state\": \"CO\",\n        \"zip\": \"80202\",\n        \"country\": \"US\",\n        \"latitude\": \"39.740008\",\n        \"longitude\": \"-104.987401\",\n        \"last_latitude\": null,\n        \"last_longitude\": null,\n        \"last_location_update_at\": null,\n        \"last_event_checkin_at\": null,\n        \"birthday\": \"1980-01-15\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"class_code\": \"\",\n        \"rating_average\": null,\n        \"notes\": \"Hired on 01/01/2019\",\n        \"admin_notes\": \"5% Raise given on 01/01/2024 due to excellent performance.\",\n        \"created_at\": \"2026-02-02 20:58:17\",\n        \"updated_at\": \"2026-02-02 21:02:29\",\n        \"last_login_at\": null,\n        \"mfa_enabled\": false,\n        \"is_login_active\": false,\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\",\n        \"Role\": {\n            \"id\": \"7\",\n            \"name\": \"Investigator\"\n        },\n        \"UserFieldGroup\": []\n    },\n    {\n        \"id\": \"1\",\n        \"manager_id\": null,\n        \"first_name\": \"Chief\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Operator\",\n        \"title\": \"\",\n        \"email\": \"support@trackops.com\",\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_mobile_carrier\": \"\",\n        \"phone_office\": \"\",\n        \"phone_fax\": \"\",\n        \"address_1\": \"\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"country\": \"US\",\n        \"latitude\": null,\n        \"longitude\": null,\n        \"last_latitude\": null,\n        \"last_longitude\": null,\n        \"last_location_update_at\": null,\n        \"last_event_checkin_at\": null,\n        \"birthday\": null,\n        \"account_code\": \"\",\n        \"class_code\": \"\",\n        \"rating_average\": null,\n        \"notes\": \"\",\n        \"admin_notes\": \"\",\n        \"created_at\": \"2009-01-28 13:58:09\",\n        \"updated_at\": \"2026-02-03 15:28:03\",\n        \"last_login_at\": \"2026-02-03 15:28:03\",\n        \"mfa_enabled\": false,\n        \"is_login_active\": true,\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\",\n        \"Role\": {\n            \"id\": \"1\",\n            \"name\": \"Chief Operator\"\n        },\n        \"UserFieldGroup\": []\n    }\n]"}],"_postman_id":"d0592a58-7742-4679-b076-0e20c1d1aa37"}],"id":"5282e6e4-93f9-403a-a273-9e22b1c47f80","description":"<p>Staff encompases employees, vendors, and vendor contacts, all of which can be allowed to log into the system and be assigned to cases.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/360016467652-Creating-a-New-Employee\">Creating a New Employee</a>, <a href=\"https://support.trackops.com/hc/en-us/search/click?data=BAh7DjoHaWRsKwiNgwuW3Bw6D2FjY291bnRfaWRpA7skAToJdHlwZUkiDGFydGljbGUGOgZFVDoIdXJsSSJfaHR0cHM6Ly9zdXBwb3J0LnRyYWNrb3BzLmNvbS9oYy9lbi11cy9hcnRpY2xlcy8zMTczMzczNTcxOTgyMS1Xb3JraW5nLXdpdGgtVmVuZG9yLUNvbnRhY3RzBjsIVDoOc2VhcmNoX2lkSSIpYzQ4OWE4YzMtNDU3Ni00ZjIyLTlmZTUtY2QzN2E5NTZlMTM2BjsIRjoJcmFua2kGOgtsb2NhbGVJIgplbi11cwY7CFQ6CnF1ZXJ5SSILdmVuZG9yBjsIVDoScmVzdWx0c19jb3VudGke--b8072040b66ddbc4d4e03d5dda4058080d977294\">Working with Vendor Contacts</a></p>\n","_postman_id":"5282e6e4-93f9-403a-a273-9e22b1c47f80","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Subject Types","item":[{"name":"Get a subject type","id":"52cdd81d-0104-4ee5-9104-e01411bee493","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/subject_types/:subject_type_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subject_types",":subject_type_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the subject type</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"subject_type_id"}]}},"response":[{"id":"6dfeb38c-00a0-4382-9801-c7d4d5ea74d8","name":"Get a subject type","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/subject_types/:subject_type_id","host":["/api/v1"],"path":["subject_types",":subject_type_id"],"variable":[{"key":"subject_type_id","value":"<integer>","description":"ID of the subject type"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Claimant\",\n    \"reference_id\": null,\n    \"notes\": \"Claimant intake form\",\n    \"description\": \"Claimant intake form\",\n    \"Fields\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Full Name\",\n            \"FieldType\": {\n                \"id\": \"17\",\n                \"tag\": \"NAME\",\n                \"name\": \"Name (First, Middle, Last)\"\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Date of Birth\",\n            \"FieldType\": {\n                \"id\": \"22\",\n                \"tag\": \"BIRTHDAY\",\n                \"name\": \"Date (Birthday)\"\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"name\": \"Alias\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"4\",\n            \"name\": \"SSN\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"name\": \"Sex\",\n            \"FieldType\": {\n                \"id\": \"15\",\n                \"tag\": \"RADIO\",\n                \"name\": \"Multiple Choice (Radio)\"\n            }\n        },\n        {\n            \"id\": \"6\",\n            \"name\": \"Race\",\n            \"FieldType\": {\n                \"id\": \"2\",\n                \"tag\": \"SELECT\",\n                \"name\": \"Multiple Choice (Dropdown)\"\n            }\n        },\n        {\n            \"id\": \"7\",\n            \"name\": \"Height\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"11\",\n            \"name\": \"Build\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"14\",\n            \"name\": \"Cell Phone\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"16\",\n            \"name\": \"Other Characteristics\",\n            \"FieldType\": {\n                \"id\": \"6\",\n                \"tag\": \"LONG\",\n                \"name\": \"Input (Long Answer)\"\n            }\n        },\n        {\n            \"id\": \"26\",\n            \"name\": \"Home Address\",\n            \"FieldType\": {\n                \"id\": \"16\",\n                \"tag\": \"ADDRESS\",\n                \"name\": \"Address (Address, City, State, Zip, Country)\"\n            }\n        },\n        {\n            \"id\": \"28\",\n            \"name\": \"Weight\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"30\",\n            \"name\": \"License Plate\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"31\",\n            \"name\": \"Registered To\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"32\",\n            \"name\": \"Vehicle Description\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"34\",\n            \"name\": \"Email\",\n            \"FieldType\": {\n                \"id\": \"21\",\n                \"tag\": \"EMAIL\",\n                \"name\": \"Email Address\"\n            }\n        },\n        {\n            \"id\": \"35\",\n            \"name\": \"Physical Characteristics\",\n            \"FieldType\": {\n                \"id\": \"25\",\n                \"tag\": \"SECTION\",\n                \"name\": \"Section\"\n            }\n        },\n        {\n            \"id\": \"36\",\n            \"name\": \"Contact Information\",\n            \"FieldType\": {\n                \"id\": \"25\",\n                \"tag\": \"SECTION\",\n                \"name\": \"Section\"\n            }\n        },\n        {\n            \"id\": \"37\",\n            \"name\": \"Employer\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"38\",\n            \"name\": \"Claim Information\",\n            \"FieldType\": {\n                \"id\": \"25\",\n                \"tag\": \"SECTION\",\n                \"name\": \"Section\"\n            }\n        },\n        {\n            \"id\": \"39\",\n            \"name\": \"Injury\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"40\",\n            \"name\": \"Date of Loss\",\n            \"FieldType\": {\n                \"id\": \"4\",\n                \"tag\": \"DATE\",\n                \"name\": \"Date\"\n            }\n        },\n        {\n            \"id\": \"41\",\n            \"name\": \"Injury Restrictions\",\n            \"FieldType\": {\n                \"id\": \"6\",\n                \"tag\": \"LONG\",\n                \"name\": \"Input (Long Answer)\"\n            }\n        },\n        {\n            \"id\": \"42\",\n            \"name\": \"Other Information\",\n            \"FieldType\": {\n                \"id\": \"25\",\n                \"tag\": \"SECTION\",\n                \"name\": \"Section\"\n            }\n        },\n        {\n            \"id\": \"43\",\n            \"name\": \"Notes\",\n            \"FieldType\": {\n                \"id\": \"6\",\n                \"tag\": \"LONG\",\n                \"name\": \"Input (Long Answer)\"\n            }\n        },\n        {\n            \"id\": \"44\",\n            \"name\": \"Occupation\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"45\",\n            \"name\": \"Hair\",\n            \"FieldType\": {\n                \"id\": \"2\",\n                \"tag\": \"SELECT\",\n                \"name\": \"Multiple Choice (Dropdown)\"\n            }\n        },\n        {\n            \"id\": \"46\",\n            \"name\": \"Eyes\",\n            \"FieldType\": {\n                \"id\": \"2\",\n                \"tag\": \"SELECT\",\n                \"name\": \"Multiple Choice (Dropdown)\"\n            }\n        },\n        {\n            \"id\": \"47\",\n            \"name\": \"Relationship Status\",\n            \"FieldType\": {\n                \"id\": \"2\",\n                \"tag\": \"SELECT\",\n                \"name\": \"Multiple Choice (Dropdown)\"\n            }\n        },\n        {\n            \"id\": \"48\",\n            \"name\": \"Family\",\n            \"FieldType\": {\n                \"id\": \"6\",\n                \"tag\": \"LONG\",\n                \"name\": \"Input (Long Answer)\"\n            }\n        },\n        {\n            \"id\": \"49\",\n            \"name\": \"Glasses\",\n            \"FieldType\": {\n                \"id\": \"12\",\n                \"tag\": \"YESNO\",\n                \"name\": \"Yes or No\"\n            }\n        },\n        {\n            \"id\": \"50\",\n            \"name\": \"Vehicle Information\",\n            \"FieldType\": {\n                \"id\": \"25\",\n                \"tag\": \"SECTION\",\n                \"name\": \"Section\"\n            }\n        },\n        {\n            \"id\": \"51\",\n            \"name\": \"Contact Claimant?\",\n            \"FieldType\": {\n                \"id\": \"12\",\n                \"tag\": \"YESNO\",\n                \"name\": \"Yes or No\"\n            }\n        },\n        {\n            \"id\": \"52\",\n            \"name\": \"Contact Employer?\",\n            \"FieldType\": {\n                \"id\": \"12\",\n                \"tag\": \"YESNO\",\n                \"name\": \"Yes or No\"\n            }\n        },\n        {\n            \"id\": \"53\",\n            \"name\": \"Employer Address\",\n            \"FieldType\": {\n                \"id\": \"16\",\n                \"tag\": \"ADDRESS\",\n                \"name\": \"Address (Address, City, State, Zip, Country)\"\n            }\n        },\n        {\n            \"id\": \"54\",\n            \"name\": \"Employer Phone\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"55\",\n            \"name\": \"Employment Information\",\n            \"FieldType\": {\n                \"id\": \"25\",\n                \"tag\": \"SECTION\",\n                \"name\": \"Section\"\n            }\n        }\n    ]\n}"}],"_postman_id":"52cdd81d-0104-4ee5-9104-e01411bee493"},{"name":"List subject types","id":"253d5b25-2115-47cf-809b-4abf99c4bcc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/subject_types","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subject_types"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"5815e3ea-cc39-4acd-90d2-ca092fb503f0","name":"List subject types","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/subject_types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"frame-ancestors 'none';object-src 'self' https://d1ssnvhbal8zta.cloudfront.net;media-src 'self' https://d1ssnvhbal8zta.cloudfront.net;script-src 'self' 'nonce-9dc20631689776c8fd6ecce340c597b2' https://js.stripe.com;upgrade-insecure-requests;block-all-mixed-content;"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Powered-By","value":"PHP/8.3.28"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Date","value":"Tue, 17 Feb 2026 18:26:43 GMT"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"name\": \"Claimant\",\n        \"reference_id\": null,\n        \"notes\": \"Claimant intake form\",\n        \"description\": \"Claimant intake form\",\n        \"Fields\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Full Name\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"17\",\n                    \"tag\": \"NAME\",\n                    \"name\": \"Name (First, Middle, Last)\"\n                }\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Date of Birth\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"22\",\n                    \"tag\": \"BIRTHDAY\",\n                    \"name\": \"Date (Birthday)\"\n                }\n            },\n            {\n                \"id\": \"3\",\n                \"name\": \"Alias\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"4\",\n                \"name\": \"SSN\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"5\",\n                \"name\": \"Sex\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"15\",\n                    \"tag\": \"RADIO\",\n                    \"name\": \"Multiple Choice (Radio)\"\n                }\n            },\n            {\n                \"id\": \"6\",\n                \"name\": \"Race\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"7\",\n                \"name\": \"Height\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"11\",\n                \"name\": \"Build\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"14\",\n                \"name\": \"Cell Phone\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"16\",\n                \"name\": \"Other Characteristics\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"26\",\n                \"name\": \"Home Address\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\",\n                    \"name\": \"Address (Address, City, State, Zip, Country)\"\n                }\n            },\n            {\n                \"id\": \"28\",\n                \"name\": \"Weight\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"30\",\n                \"name\": \"License Plate\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"31\",\n                \"name\": \"Registered To\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"32\",\n                \"name\": \"Vehicle Description\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"34\",\n                \"name\": \"Email\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"21\",\n                    \"tag\": \"EMAIL\",\n                    \"name\": \"Email Address\"\n                }\n            },\n            {\n                \"id\": \"35\",\n                \"name\": \"Physical Characteristics\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"36\",\n                \"name\": \"Contact Information\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"37\",\n                \"name\": \"Employer\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"38\",\n                \"name\": \"Claim Information\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"39\",\n                \"name\": \"Injury\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"40\",\n                \"name\": \"Date of Loss\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"4\",\n                    \"tag\": \"DATE\",\n                    \"name\": \"Date\"\n                }\n            },\n            {\n                \"id\": \"41\",\n                \"name\": \"Injury Restrictions\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"42\",\n                \"name\": \"Other Information\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"43\",\n                \"name\": \"Notes\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"44\",\n                \"name\": \"Occupation\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"45\",\n                \"name\": \"Hair\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"46\",\n                \"name\": \"Eyes\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"47\",\n                \"name\": \"Relationship Status\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"48\",\n                \"name\": \"Family\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"49\",\n                \"name\": \"Glasses\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\",\n                    \"name\": \"Yes or No\"\n                }\n            },\n            {\n                \"id\": \"50\",\n                \"name\": \"Vehicle Information\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"51\",\n                \"name\": \"Contact Claimant?\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\",\n                    \"name\": \"Yes or No\"\n                }\n            },\n            {\n                \"id\": \"52\",\n                \"name\": \"Contact Employer?\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\",\n                    \"name\": \"Yes or No\"\n                }\n            },\n            {\n                \"id\": \"53\",\n                \"name\": \"Employer Address\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\",\n                    \"name\": \"Address (Address, City, State, Zip, Country)\"\n                }\n            },\n            {\n                \"id\": \"54\",\n                \"name\": \"Employer Phone\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"55\",\n                \"name\": \"Employment Information\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            }\n        ]\n    }\n]"}],"_postman_id":"253d5b25-2115-47cf-809b-4abf99c4bcc8"},{"name":"Search subject types","id":"97df7954-4edc-44bd-ae76-5943e9f1c17f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/subject_types?id=<integer>&name=<string>&reference_id=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subject_types"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the subject type</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the subject type</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Reference or lookup code associated with the subject type</p>\n","type":"text/plain"},"key":"reference_id","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"3f1c13c9-9242-4347-9d17-42581e31fe46","name":"Save subject types","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/subject_types?id=<integer>&name=<string>&reference_id=<string>&page=<integer>","host":["/api/v1"],"path":["subject_types"],"query":[{"key":"id","value":"<integer>","description":"ID of the subject type"},{"key":"name","value":"<string>","description":"Name of the subject type"},{"key":"reference_id","value":"<string>","description":"Reference or lookup code associated with the subject type"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_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\": \"1\",\n        \"name\": \"Claimant\",\n        \"reference_id\": null,\n        \"notes\": \"Claimant intake form\",\n        \"description\": \"Claimant intake form\",\n        \"Fields\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Full Name\",\n                \"FieldType\": {\n                    \"id\": \"17\",\n                    \"tag\": \"NAME\",\n                    \"name\": \"Name (First, Middle, Last)\"\n                }\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Date of Birth\",\n                \"FieldType\": {\n                    \"id\": \"22\",\n                    \"tag\": \"BIRTHDAY\",\n                    \"name\": \"Date (Birthday)\"\n                }\n            },\n            {\n                \"id\": \"3\",\n                \"name\": \"Alias\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"4\",\n                \"name\": \"SSN\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"5\",\n                \"name\": \"Sex\",\n                \"FieldType\": {\n                    \"id\": \"15\",\n                    \"tag\": \"RADIO\",\n                    \"name\": \"Multiple Choice (Radio)\"\n                }\n            },\n            {\n                \"id\": \"6\",\n                \"name\": \"Race\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"7\",\n                \"name\": \"Height\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"11\",\n                \"name\": \"Build\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"14\",\n                \"name\": \"Cell Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"16\",\n                \"name\": \"Other Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"26\",\n                \"name\": \"Home Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\",\n                    \"name\": \"Address (Address, City, State, Zip, Country)\"\n                }\n            },\n            {\n                \"id\": \"28\",\n                \"name\": \"Weight\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"30\",\n                \"name\": \"License Plate\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"31\",\n                \"name\": \"Registered To\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"32\",\n                \"name\": \"Vehicle Description\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"34\",\n                \"name\": \"Email\",\n                \"FieldType\": {\n                    \"id\": \"21\",\n                    \"tag\": \"EMAIL\",\n                    \"name\": \"Email Address\"\n                }\n            },\n            {\n                \"id\": \"35\",\n                \"name\": \"Physical Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"36\",\n                \"name\": \"Contact Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"37\",\n                \"name\": \"Employer\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"38\",\n                \"name\": \"Claim Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"39\",\n                \"name\": \"Injury\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"40\",\n                \"name\": \"Date of Loss\",\n                \"FieldType\": {\n                    \"id\": \"4\",\n                    \"tag\": \"DATE\",\n                    \"name\": \"Date\"\n                }\n            },\n            {\n                \"id\": \"41\",\n                \"name\": \"Injury Restrictions\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"42\",\n                \"name\": \"Other Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"43\",\n                \"name\": \"Notes\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"44\",\n                \"name\": \"Occupation\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"45\",\n                \"name\": \"Hair\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"46\",\n                \"name\": \"Eyes\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"47\",\n                \"name\": \"Relationship Status\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"48\",\n                \"name\": \"Family\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"49\",\n                \"name\": \"Glasses\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\",\n                    \"name\": \"Yes or No\"\n                }\n            },\n            {\n                \"id\": \"50\",\n                \"name\": \"Vehicle Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"51\",\n                \"name\": \"Contact Claimant?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\",\n                    \"name\": \"Yes or No\"\n                }\n            },\n            {\n                \"id\": \"52\",\n                \"name\": \"Contact Employer?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\",\n                    \"name\": \"Yes or No\"\n                }\n            },\n            {\n                \"id\": \"53\",\n                \"name\": \"Employer Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\",\n                    \"name\": \"Address (Address, City, State, Zip, Country)\"\n                }\n            },\n            {\n                \"id\": \"54\",\n                \"name\": \"Employer Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"55\",\n                \"name\": \"Employment Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            }\n        ]\n    }\n]"}],"_postman_id":"97df7954-4edc-44bd-ae76-5943e9f1c17f"}],"id":"657e9d0c-3276-4b8b-b640-5e09dfe9d9de","description":"<p>Subject types define the forms that are used to capture subject data across various types of cases. Forms are largely made up of <a href=\"https://support.trackops.com/hc/en-us/articles/212336843-How-to-Create-Custom-Fields\">custom fields</a>.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212336623-How-to-Create-a-New-Subject-Type\">How to Create a New Subject Type</a></p>\n","_postman_id":"657e9d0c-3276-4b8b-b640-5e09dfe9d9de","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Subjects","item":[{"name":"Get a subject","id":"894621f5-1635-4f76-8d2a-2bf4d79955d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/subjects/:subject_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subjects",":subject_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the subject</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"subject_id"}]}},"response":[{"id":"fc14814a-c1c0-461f-8523-af52e5b0f573","name":"Get a subject","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/subjects/:subject_id","host":["/api/v1"],"path":["subjects",":subject_id"],"variable":[{"key":"subject_id","value":"<integer>","description":"ID of the subject"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"name\": \"McFly, Marty Seamus\",\n    \"is_primary\": true,\n    \"created_at\": \"2026-02-02 20:49:46\",\n    \"updated_at\": \"2026-02-02 20:49:46\",\n    \"description\": \"Claimant intake form\",\n    \"SubjectType\": {\n        \"id\": \"1\",\n        \"name\": \"Claimant\",\n        \"notes\": \"Claimant intake form\",\n        \"description\": \"Claimant intake form\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\",\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"SubjectFieldGroup\": {\n        \"1\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"1\",\n            \"subject_field_rank\": \"1\",\n            \"value\": \"McFly, Marty Seamus\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"1\",\n                \"name\": \"Full Name\",\n                \"FieldType\": {\n                    \"id\": \"17\",\n                    \"tag\": \"NAME\"\n                }\n            }\n        },\n        \"2\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"2\",\n            \"subject_field_rank\": \"4\",\n            \"value\": \"1968-06-12\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"2\",\n                \"name\": \"Date of Birth\",\n                \"FieldType\": {\n                    \"id\": \"22\",\n                    \"tag\": \"BIRTHDAY\"\n                }\n            }\n        },\n        \"3\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"3\",\n            \"subject_field_rank\": \"2\",\n            \"value\": \"Calvin Klein\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"3\",\n                \"name\": \"Alias\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"4\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"4\",\n            \"subject_field_rank\": \"3\",\n            \"value\": \"555-55-5555\",\n            \"is_encrypted\": true,\n            \"Field\": {\n                \"id\": \"4\",\n                \"name\": \"SSN\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"5\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"5\",\n            \"subject_field_rank\": \"22\",\n            \"value\": \"Male\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"5\",\n                \"name\": \"Sex\",\n                \"FieldType\": {\n                    \"id\": \"15\",\n                    \"tag\": \"RADIO\"\n                }\n            }\n        },\n        \"6\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"6\",\n            \"subject_field_rank\": \"21\",\n            \"value\": \"White\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"6\",\n                \"name\": \"Race\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"7\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"7\",\n            \"subject_field_rank\": \"23\",\n            \"value\": \"5'10\\\"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"7\",\n                \"name\": \"Height\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"11\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"11\",\n            \"subject_field_rank\": \"28\",\n            \"value\": \"Slender\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"11\",\n                \"name\": \"Build\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"14\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"14\",\n            \"subject_field_rank\": \"8\",\n            \"value\": \"555-555-5555\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"14\",\n                \"name\": \"Cell Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"16\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"16\",\n            \"subject_field_rank\": \"29\",\n            \"value\": \"None\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"16\",\n                \"name\": \"Other Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"26\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"26\",\n            \"subject_field_rank\": \"9\",\n            \"value\": \"123 Main Street Hill Valley, CA 95420\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"26\",\n                \"name\": \"Home Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\"\n                }\n            }\n        },\n        \"28\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"28\",\n            \"subject_field_rank\": \"24\",\n            \"value\": \"165\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"28\",\n                \"name\": \"Weight\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"30\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"30\",\n            \"subject_field_rank\": \"32\",\n            \"value\": \"OUTATIME\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"30\",\n                \"name\": \"License Plate\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"31\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"31\",\n            \"subject_field_rank\": \"33\",\n            \"value\": \"Emmett Brown\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"31\",\n                \"name\": \"Registered To\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"32\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"32\",\n            \"subject_field_rank\": \"31\",\n            \"value\": \"1982 DMC DeLorean\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"32\",\n                \"name\": \"Vehicle Description\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"34\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"34\",\n            \"subject_field_rank\": \"7\",\n            \"value\": \"example@trackops.com\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"34\",\n                \"name\": \"Email\",\n                \"FieldType\": {\n                    \"id\": \"21\",\n                    \"tag\": \"EMAIL\"\n                }\n            }\n        },\n        \"35\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"35\",\n            \"subject_field_rank\": \"20\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"35\",\n                \"name\": \"Physical Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"36\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"36\",\n            \"subject_field_rank\": \"5\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"36\",\n                \"name\": \"Contact Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"37\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"37\",\n            \"subject_field_rank\": \"16\",\n            \"value\": \"Hill Valley High School\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"37\",\n                \"name\": \"Employer\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"38\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"38\",\n            \"subject_field_rank\": \"10\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"38\",\n                \"name\": \"Claim Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"39\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"39\",\n            \"subject_field_rank\": \"12\",\n            \"value\": \"Injury will be listed here\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"39\",\n                \"name\": \"Injury\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"40\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"40\",\n            \"subject_field_rank\": \"11\",\n            \"value\": \"2019-02-01\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"40\",\n                \"name\": \"Date of Loss\",\n                \"FieldType\": {\n                    \"id\": \"4\",\n                    \"tag\": \"DATE\"\n                }\n            }\n        },\n        \"41\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"41\",\n            \"subject_field_rank\": \"13\",\n            \"value\": \"Restrictions will be listed here\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"41\",\n                \"name\": \"Injury Restrictions\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"42\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"42\",\n            \"subject_field_rank\": \"34\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"42\",\n                \"name\": \"Other Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"43\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"43\",\n            \"subject_field_rank\": \"37\",\n            \"value\": \"Friends with Doc Brown\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"43\",\n                \"name\": \"Notes\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"44\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"44\",\n            \"subject_field_rank\": \"17\",\n            \"value\": \"Maintenance technician\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"44\",\n                \"name\": \"Occupation\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"45\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"45\",\n            \"subject_field_rank\": \"25\",\n            \"value\": \"Brown\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"45\",\n                \"name\": \"Hair\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"46\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"46\",\n            \"subject_field_rank\": \"26\",\n            \"value\": \"Brown\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"46\",\n                \"name\": \"Eyes\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"47\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"47\",\n            \"subject_field_rank\": \"35\",\n            \"value\": \"Dating\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"47\",\n                \"name\": \"Relationship Status\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"48\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"48\",\n            \"subject_field_rank\": \"36\",\n            \"value\": \"Father: George McFly\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"48\",\n                \"name\": \"Family\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"49\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"49\",\n            \"subject_field_rank\": \"27\",\n            \"value\": \"0\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"49\",\n                \"name\": \"Glasses\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"50\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"50\",\n            \"subject_field_rank\": \"30\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"50\",\n                \"name\": \"Vehicle Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"51\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"51\",\n            \"subject_field_rank\": \"6\",\n            \"value\": \"1\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"51\",\n                \"name\": \"Contact Claimant?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"52\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"52\",\n            \"subject_field_rank\": \"15\",\n            \"value\": \"1\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"52\",\n                \"name\": \"Contact Employer?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"53\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"53\",\n            \"subject_field_rank\": \"19\",\n            \"value\": \"123 Lincoln St Hill Valley, CA 95420\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"53\",\n                \"name\": \"Employer Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\"\n                }\n            }\n        },\n        \"54\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"54\",\n            \"subject_field_rank\": \"18\",\n            \"value\": \"555-555-5555\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"54\",\n                \"name\": \"Employer Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"55\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"55\",\n            \"subject_field_rank\": \"14\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"55\",\n                \"name\": \"Employment Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"894621f5-1635-4f76-8d2a-2bf4d79955d4"},{"name":"List subjects","id":"80aa6625-cb24-4986-9098-798b6cb49a81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/subjects","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subjects"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"a59e88d3-fafa-4f74-ada9-c9bf28f7f070","name":"List subjects","originalRequest":{"method":"GET","header":[],"url":"/api/v1/subjects"},"status":"OK","code":200,"_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\": \"5\",\n        \"name\": \"Johns, Arnoldo Ewald\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 21:38:18\",\n        \"updated_at\": \"2026-02-02 21:38:18\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"5\",\n            \"series_number\": \"3\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"reference_value_1\": \"tenetur vero quae\",\n            \"reference_value_2\": \"aut earum qui\",\n            \"reference_value_3\": \"est aut laborum\",\n            \"case_number\": \"00003WC-01\",\n            \"case_or_request_number\": \"00003WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"Johns, Arnoldo Ewald\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1976-07-04\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"6149 Langosh Rapids Apt #75 Devonfort, CO 80202\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Qui perferendis corporis facere tempora quibusdam velit ad. Omnis atque quia provident ex.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Sint eos architecto.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"4\",\n        \"name\": \"Ortiz, Beverly Ford\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 21:33:48\",\n        \"updated_at\": \"2026-02-02 21:33:48\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"4\",\n            \"series_number\": \"2\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"reference_value_1\": \"eum quasi aliquam\",\n            \"reference_value_2\": \"suscipit sed sequi\",\n            \"reference_value_3\": \"non non laborum\",\n            \"case_number\": \"00002WC-01\",\n            \"case_or_request_number\": \"00002WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"Ortiz, Beverly Ford\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1976-07-04\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"710 Norval Parks Apt #819 Lefflerton, CO 80202\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Ullam qui praesentium natus optio veniam odit et omnis. Laudantium unde dolorum modi esse aut. Qui aliquam laborum non ratione accusantium sequi placeat cupiditate.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Officiis voluptatum non quidem.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 20:49:46\",\n        \"updated_at\": \"2026-02-02 20:49:46\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\",\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"McFly, Marty Seamus\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1968-06-12\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"Calvin Klein\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"555-55-5555\",\n                \"is_encrypted\": true,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": \"Male\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": \"White\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"5'10\\\"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"Slender\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"None\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"123 Main Street Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"165\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"OUTATIME\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"Emmett Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"1982 DMC DeLorean\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": \"example@trackops.com\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"Hill Valley High School\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Injury will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": \"2019-02-01\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"Restrictions will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"Friends with Doc Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Maintenance technician\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": \"Dating\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"Father: George McFly\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": \"0\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": \"123 Lincoln St Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Dicki, Jarret\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 20:48:42\",\n        \"updated_at\": \"2026-02-02 20:48:42\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"2\",\n            \"series_number\": \"2\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": true,\n            \"reference_value_1\": \"sint ex illo\",\n            \"reference_value_2\": \"aut incidunt non\",\n            \"reference_value_3\": \"iusto quia ad\",\n            \"request_number\": \"REQ-00002\",\n            \"case_or_request_number\": \"REQ-00002\",\n            \"route_prefix\": \"case_request\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"Dicki, Jarret\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"McFly, Marty Seamus\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 20:42:19\",\n        \"updated_at\": \"2026-02-02 20:42:19\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"1\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": true,\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\",\n            \"request_number\": \"REQ-00001\",\n            \"case_or_request_number\": \"REQ-00001\",\n            \"route_prefix\": \"case_request\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"McFly, Marty Seamus\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1968-06-12\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"Calvin Klein\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"555-55-5555\",\n                \"is_encrypted\": true,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": \"Male\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": \"White\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"5'10\\\"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"Slender\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"None\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"123 Main Street Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"165\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"OUTATIME\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"Emmett Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"1982 DMC DeLorean\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": \"example@trackops.com\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"Hill Valley High School\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Injury will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": \"2019-02-01\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"Restrictions will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"Friends with Doc Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Maintenance technician\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": \"Dating\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"Father: George McFly\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": \"0\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": \"123 Lincoln St Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    }\n]"}],"_postman_id":"80aa6625-cb24-4986-9098-798b6cb49a81"},{"name":"Search subjects","id":"e077fc65-97b3-45ac-9156-743569b7aeee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/subjects?id=<integer>&case=<integer>&name=<string>&is_primary=<boolean>&subject_type=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>&expand_field_values=<boolean>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subjects"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the subject</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the subject</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>Name of the subject (Last, First)</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>If the subject is a primary subject</p>\n","type":"text/plain"},"key":"is_primary","value":"<boolean>"},{"description":{"content":"<p>ID of the subject type associated with the subject</p>\n","type":"text/plain"},"key":"subject_type","value":"<integer>"},{"description":{"content":"<p>ISO date the subject was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the subject was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the subject was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the subject was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"},{"description":{"content":"<p>Expand custom field objects</p>\n","type":"text/plain"},"key":"expand_field_values","value":"<boolean>"}],"variable":[]}},"response":[{"id":"90bb058c-9ebe-4b08-bf10-42564550a5d7","name":"Search subjects","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/subjects?id=<integer>&case=<integer>&name=<string>&is_primary=<boolean>&subject_type=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>&expand_field_values=<boolean>","host":["/api/v1"],"path":["subjects"],"query":[{"key":"id","value":"<integer>","description":"ID of the subject"},{"key":"case","value":"<integer>","description":"ID of the case associated with the subject"},{"key":"name","value":"<string>","description":"Name of the subject (Last, First)"},{"key":"is_primary","value":"<boolean>","description":"If the subject is a primary subject"},{"key":"subject_type","value":"<integer>","description":"ID of the subject type associated with the subject"},{"key":"created_from","value":"<datestamp>","description":"ISO date the subject was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the subject was created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date the subject was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the subject was updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"},{"key":"expand_field_values","value":"<boolean>","description":"Expand custom field objects"}]}},"status":"OK","code":200,"_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\": \"5\",\n        \"name\": \"Johns, Arnoldo Ewald\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 21:38:18\",\n        \"updated_at\": \"2026-02-02 21:38:18\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"5\",\n            \"series_number\": \"3\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"reference_value_1\": \"tenetur vero quae\",\n            \"reference_value_2\": \"aut earum qui\",\n            \"reference_value_3\": \"est aut laborum\",\n            \"case_number\": \"00003WC-01\",\n            \"case_or_request_number\": \"00003WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"Johns, Arnoldo Ewald\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1976-07-04\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"6149 Langosh Rapids Apt #75 Devonfort, CO 80202\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Qui perferendis corporis facere tempora quibusdam velit ad. Omnis atque quia provident ex.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Sint eos architecto.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"4\",\n        \"name\": \"Ortiz, Beverly Ford\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 21:33:48\",\n        \"updated_at\": \"2026-02-02 21:33:48\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"4\",\n            \"series_number\": \"2\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"reference_value_1\": \"eum quasi aliquam\",\n            \"reference_value_2\": \"suscipit sed sequi\",\n            \"reference_value_3\": \"non non laborum\",\n            \"case_number\": \"00002WC-01\",\n            \"case_or_request_number\": \"00002WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"Ortiz, Beverly Ford\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1976-07-04\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"710 Norval Parks Apt #819 Lefflerton, CO 80202\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Ullam qui praesentium natus optio veniam odit et omnis. Laudantium unde dolorum modi esse aut. Qui aliquam laborum non ratione accusantium sequi placeat cupiditate.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Officiis voluptatum non quidem.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 20:49:46\",\n        \"updated_at\": \"2026-02-02 20:49:46\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\",\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"McFly, Marty Seamus\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1968-06-12\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"Calvin Klein\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"555-55-5555\",\n                \"is_encrypted\": true,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": \"Male\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": \"White\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"5'10\\\"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"Slender\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"None\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"123 Main Street Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"165\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"OUTATIME\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"Emmett Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"1982 DMC DeLorean\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": \"example@trackops.com\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"Hill Valley High School\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Injury will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": \"2019-02-01\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"Restrictions will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"Friends with Doc Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Maintenance technician\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": \"Dating\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"Father: George McFly\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": \"0\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": \"123 Lincoln St Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Dicki, Jarret\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 20:48:42\",\n        \"updated_at\": \"2026-02-02 20:48:42\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"2\",\n            \"series_number\": \"2\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": true,\n            \"reference_value_1\": \"sint ex illo\",\n            \"reference_value_2\": \"aut incidunt non\",\n            \"reference_value_3\": \"iusto quia ad\",\n            \"request_number\": \"REQ-00002\",\n            \"case_or_request_number\": \"REQ-00002\",\n            \"route_prefix\": \"case_request\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"Dicki, Jarret\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"McFly, Marty Seamus\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 20:42:19\",\n        \"updated_at\": \"2026-02-02 20:42:19\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"1\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": true,\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\",\n            \"request_number\": \"REQ-00001\",\n            \"case_or_request_number\": \"REQ-00001\",\n            \"route_prefix\": \"case_request\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"McFly, Marty Seamus\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1968-06-12\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"Calvin Klein\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"555-55-5555\",\n                \"is_encrypted\": true,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": \"Male\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": \"White\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"5'10\\\"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"Slender\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"None\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"123 Main Street Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"165\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"OUTATIME\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"Emmett Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"1982 DMC DeLorean\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": \"example@trackops.com\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"Hill Valley High School\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Injury will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": \"2019-02-01\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"Restrictions will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"Friends with Doc Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Maintenance technician\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": \"Dating\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"Father: George McFly\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": \"0\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": \"123 Lincoln St Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    }\n]"}],"_postman_id":"e077fc65-97b3-45ac-9156-743569b7aeee"},{"name":"Create a subject","id":"b38d4764-7293-4a95-b022-a2d99d050f4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"subject\": {\n    \"casefile_id\": \"<integer>\",  \n    \"subject_type_id\": \"<integer>\",\n    \"is_primary\": true,\n    \"is_pinned\": true,\n    \"custom_fields\": [\n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"first_name\": \"Darren\",\n          \"middle_name\": \"Dereck\",\n          \"last_name\": \"Collins\"\n        }\n      },     \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Et et aut nemo laborum quasi deleniti laborum.\"\n      },      \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Nisi voluptas quo at est voluptatem qui ut nam. Consectetur aliquam aut omnis adipisci pariatur molestias nisi consectetur maxime. Ut sit sed.\"\n      },\n      {\n        \"id\": \"<integer>\", \n        \"value\": \"<datestamp>\"\n      },              \n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"address_1\": \"540 Hayes Rest\",\n          \"address_2\": \"Apt #531\",\n          \"address_3\": \"\",\n          \"city\": \"Janhaven\",\n          \"state\": \"<string>\",\n          \"zip\": \"<string>\",\n          \"country\": \"<country-code>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/subjects","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subjects"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"4af770ca-c375-418e-9c31-84564b977ffa","name":"Create a subject","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"subject\": {\n    \"casefile_id\": \"<integer>\",  \n    \"subject_type_id\": \"<integer>\",\n    \"is_primary\": true,\n    \"is_pinned\": true,\n    \"custom_fields\": [\n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"first_name\": \"Rachael\",\n          \"middle_name\": \"Billy\",\n          \"last_name\": \"Douglas\"\n        }\n      },     \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Dolorem cum consequatur ratione.\"\n      },      \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Nisi rem qui distinctio eveniet. Ea sapiente ea officiis architecto illo quis voluptatibus cupiditate inventore. Rerum eaque dolores voluptatem maiores numquam. Corrupti et esse perferendis ut dolores nihil quasi animi. Quia reprehenderit beatae. Et totam vel amet omnis eius at fugit.\"\n      },\n      {\n        \"id\": \"<integer>\", \n        \"value\": \"<datestamp>\"\n      },              \n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"address_1\": \"114 Sabrina Brooks\",\n          \"address_2\": \"Apt #233\",\n          \"address_3\": \"\",\n          \"city\": \"Lake Dameon\",\n          \"state\": \"<string>\",\n          \"zip\": \"<string>\",\n          \"country\": \"<country-code>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/subjects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"6\",\n    \"name\": \"Waters, Sigurd Price\",\n    \"is_primary\": true,\n    \"created_at\": \"2026-02-03 16:31:36\",\n    \"updated_at\": \"2026-02-03 16:31:36\",\n    \"description\": \"Claimant intake form\",\n    \"SubjectType\": {\n        \"id\": \"1\",\n        \"name\": \"Claimant\",\n        \"notes\": \"Claimant intake form\",\n        \"description\": \"Claimant intake form\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\",\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"SubjectFieldGroup\": {\n        \"1\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"1\",\n            \"subject_field_rank\": \"1\",\n            \"value\": \"Waters, Sigurd Price\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"1\",\n                \"name\": \"Full Name\",\n                \"FieldType\": {\n                    \"id\": \"17\",\n                    \"tag\": \"NAME\"\n                }\n            }\n        },\n        \"2\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"2\",\n            \"subject_field_rank\": \"4\",\n            \"value\": \"1976-07-04\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"2\",\n                \"name\": \"Date of Birth\",\n                \"FieldType\": {\n                    \"id\": \"22\",\n                    \"tag\": \"BIRTHDAY\"\n                }\n            }\n        },\n        \"3\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"3\",\n            \"subject_field_rank\": \"2\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"3\",\n                \"name\": \"Alias\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"4\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"4\",\n            \"subject_field_rank\": \"3\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"4\",\n                \"name\": \"SSN\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"5\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"5\",\n            \"subject_field_rank\": \"22\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"5\",\n                \"name\": \"Sex\",\n                \"FieldType\": {\n                    \"id\": \"15\",\n                    \"tag\": \"RADIO\"\n                }\n            }\n        },\n        \"6\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"6\",\n            \"subject_field_rank\": \"21\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"6\",\n                \"name\": \"Race\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"7\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"7\",\n            \"subject_field_rank\": \"23\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"7\",\n                \"name\": \"Height\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"11\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"11\",\n            \"subject_field_rank\": \"28\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"11\",\n                \"name\": \"Build\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"14\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"14\",\n            \"subject_field_rank\": \"8\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"14\",\n                \"name\": \"Cell Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"16\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"16\",\n            \"subject_field_rank\": \"29\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"16\",\n                \"name\": \"Other Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"26\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"26\",\n            \"subject_field_rank\": \"9\",\n            \"value\": \"4552 Ankunding Knoll Apt #929 Port Tyrel, CO 80202\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"26\",\n                \"name\": \"Home Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\"\n                }\n            }\n        },\n        \"28\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"28\",\n            \"subject_field_rank\": \"24\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"28\",\n                \"name\": \"Weight\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"30\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"30\",\n            \"subject_field_rank\": \"32\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"30\",\n                \"name\": \"License Plate\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"31\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"31\",\n            \"subject_field_rank\": \"33\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"31\",\n                \"name\": \"Registered To\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"32\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"32\",\n            \"subject_field_rank\": \"31\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"32\",\n                \"name\": \"Vehicle Description\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"34\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"34\",\n            \"subject_field_rank\": \"7\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"34\",\n                \"name\": \"Email\",\n                \"FieldType\": {\n                    \"id\": \"21\",\n                    \"tag\": \"EMAIL\"\n                }\n            }\n        },\n        \"35\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"35\",\n            \"subject_field_rank\": \"20\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"35\",\n                \"name\": \"Physical Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"36\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"36\",\n            \"subject_field_rank\": \"5\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"36\",\n                \"name\": \"Contact Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"37\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"37\",\n            \"subject_field_rank\": \"16\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"37\",\n                \"name\": \"Employer\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"38\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"38\",\n            \"subject_field_rank\": \"10\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"38\",\n                \"name\": \"Claim Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"39\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"39\",\n            \"subject_field_rank\": \"12\",\n            \"value\": \"Voluptatem dolor aliquam qui. Nostrum fugit voluptatem ducimus.\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"39\",\n                \"name\": \"Injury\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"40\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"40\",\n            \"subject_field_rank\": \"11\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"40\",\n                \"name\": \"Date of Loss\",\n                \"FieldType\": {\n                    \"id\": \"4\",\n                    \"tag\": \"DATE\"\n                }\n            }\n        },\n        \"41\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"41\",\n            \"subject_field_rank\": \"13\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"41\",\n                \"name\": \"Injury Restrictions\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"42\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"42\",\n            \"subject_field_rank\": \"34\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"42\",\n                \"name\": \"Other Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"43\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"43\",\n            \"subject_field_rank\": \"37\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"43\",\n                \"name\": \"Notes\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"44\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"44\",\n            \"subject_field_rank\": \"17\",\n            \"value\": \"Debitis animi doloremque occaecati ut fugiat voluptatem qui mollitia totam.\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"44\",\n                \"name\": \"Occupation\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"45\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"45\",\n            \"subject_field_rank\": \"25\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"45\",\n                \"name\": \"Hair\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"46\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"46\",\n            \"subject_field_rank\": \"26\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"46\",\n                \"name\": \"Eyes\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"47\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"47\",\n            \"subject_field_rank\": \"35\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"47\",\n                \"name\": \"Relationship Status\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"48\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"48\",\n            \"subject_field_rank\": \"36\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"48\",\n                \"name\": \"Family\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"49\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"49\",\n            \"subject_field_rank\": \"27\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"49\",\n                \"name\": \"Glasses\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"50\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"50\",\n            \"subject_field_rank\": \"30\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"50\",\n                \"name\": \"Vehicle Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"51\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"51\",\n            \"subject_field_rank\": \"6\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"51\",\n                \"name\": \"Contact Claimant?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"52\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"52\",\n            \"subject_field_rank\": \"15\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"52\",\n                \"name\": \"Contact Employer?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"53\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"53\",\n            \"subject_field_rank\": \"19\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"53\",\n                \"name\": \"Employer Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\"\n                }\n            }\n        },\n        \"54\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"54\",\n            \"subject_field_rank\": \"18\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"54\",\n                \"name\": \"Employer Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"55\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"55\",\n            \"subject_field_rank\": \"14\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"55\",\n                \"name\": \"Employment Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"b38d4764-7293-4a95-b022-a2d99d050f4b"},{"name":"Update a subject","id":"c6b51322-0150-48a8-8738-a51442e9e44c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"subject\": {\n    \"casefile_id\": \"<integer>\",  \n    \"is_primary\": true,\n    \"is_pinned\": true,\n    \"custom_fields\": [\n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"first_name\": \"Yasmine\",\n          \"middle_name\": \"Eunice\",\n          \"last_name\": \"Hodkiewicz\"\n        }\n      },       \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Voluptas aut itaque commodi nam. Nam nisi ea. Et dolor enim. Sapiente voluptatem qui quae distinctio molestiae sint.\"\n      },\n      {\n        \"id\": \"<integer>\", \n        \"value\": \"<datestamp>\"\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/subjects/:subject_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subjects",":subject_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the subject</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"subject_id"}]}},"response":[{"id":"cba2026e-96d1-40b9-8277-8845d2ceb92f","name":"Update a subject","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"subject\": {\n    \"casefile_id\": \"<integer>\",  \n    \"is_primary\": true,\n    \"is_pinned\": true,\n    \"custom_fields\": [\n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"first_name\": \"Ashlynn\",\n          \"middle_name\": \"Odessa\",\n          \"last_name\": \"O'Conner\"\n        }\n      },       \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Quisquam laboriosam quibusdam et minima. Commodi aut ea dolores repudiandae labore quia sapiente. Adipisci sit molestias.\"\n      },\n      {\n        \"id\": \"<integer>\", \n        \"value\": \"<datestamp>\"\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/subjects/<integer>"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"6\",\n    \"name\": \"Terry, Mona Lauretta\",\n    \"is_primary\": true,\n    \"created_at\": \"2026-02-03 16:31:36\",\n    \"updated_at\": \"2026-02-03 16:31:36\",\n    \"description\": \"Claimant intake form\",\n    \"SubjectType\": {\n        \"id\": \"1\",\n        \"name\": \"Claimant\",\n        \"notes\": \"Claimant intake form\",\n        \"description\": \"Claimant intake form\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\",\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"SubjectFieldGroup\": {\n        \"1\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"1\",\n            \"subject_field_rank\": \"1\",\n            \"value\": \"Terry, Mona Lauretta\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"1\",\n                \"name\": \"Full Name\",\n                \"FieldType\": {\n                    \"id\": \"17\",\n                    \"tag\": \"NAME\"\n                }\n            }\n        },\n        \"2\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"2\",\n            \"subject_field_rank\": \"4\",\n            \"value\": \"1976-07-04\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"2\",\n                \"name\": \"Date of Birth\",\n                \"FieldType\": {\n                    \"id\": \"22\",\n                    \"tag\": \"BIRTHDAY\"\n                }\n            }\n        },\n        \"3\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"3\",\n            \"subject_field_rank\": \"2\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"3\",\n                \"name\": \"Alias\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"4\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"4\",\n            \"subject_field_rank\": \"3\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"4\",\n                \"name\": \"SSN\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"5\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"5\",\n            \"subject_field_rank\": \"22\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"5\",\n                \"name\": \"Sex\",\n                \"FieldType\": {\n                    \"id\": \"15\",\n                    \"tag\": \"RADIO\"\n                }\n            }\n        },\n        \"6\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"6\",\n            \"subject_field_rank\": \"21\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"6\",\n                \"name\": \"Race\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"7\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"7\",\n            \"subject_field_rank\": \"23\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"7\",\n                \"name\": \"Height\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"11\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"11\",\n            \"subject_field_rank\": \"28\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"11\",\n                \"name\": \"Build\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"14\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"14\",\n            \"subject_field_rank\": \"8\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"14\",\n                \"name\": \"Cell Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"16\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"16\",\n            \"subject_field_rank\": \"29\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"16\",\n                \"name\": \"Other Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"26\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"26\",\n            \"subject_field_rank\": \"9\",\n            \"value\": \"4552 Ankunding Knoll Apt #929 Port Tyrel, CO 80202\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"26\",\n                \"name\": \"Home Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\"\n                }\n            }\n        },\n        \"28\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"28\",\n            \"subject_field_rank\": \"24\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"28\",\n                \"name\": \"Weight\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"30\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"30\",\n            \"subject_field_rank\": \"32\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"30\",\n                \"name\": \"License Plate\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"31\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"31\",\n            \"subject_field_rank\": \"33\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"31\",\n                \"name\": \"Registered To\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"32\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"32\",\n            \"subject_field_rank\": \"31\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"32\",\n                \"name\": \"Vehicle Description\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"34\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"34\",\n            \"subject_field_rank\": \"7\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"34\",\n                \"name\": \"Email\",\n                \"FieldType\": {\n                    \"id\": \"21\",\n                    \"tag\": \"EMAIL\"\n                }\n            }\n        },\n        \"35\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"35\",\n            \"subject_field_rank\": \"20\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"35\",\n                \"name\": \"Physical Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"36\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"36\",\n            \"subject_field_rank\": \"5\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"36\",\n                \"name\": \"Contact Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"37\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"37\",\n            \"subject_field_rank\": \"16\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"37\",\n                \"name\": \"Employer\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"38\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"38\",\n            \"subject_field_rank\": \"10\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"38\",\n                \"name\": \"Claim Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"39\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"39\",\n            \"subject_field_rank\": \"12\",\n            \"value\": \"Animi repudiandae perspiciatis. Perferendis nisi repellendus quisquam. Enim est inventore similique. Voluptas in et aperiam reiciendis nulla quis harum.\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"39\",\n                \"name\": \"Injury\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"40\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"40\",\n            \"subject_field_rank\": \"11\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"40\",\n                \"name\": \"Date of Loss\",\n                \"FieldType\": {\n                    \"id\": \"4\",\n                    \"tag\": \"DATE\"\n                }\n            }\n        },\n        \"41\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"41\",\n            \"subject_field_rank\": \"13\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"41\",\n                \"name\": \"Injury Restrictions\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"42\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"42\",\n            \"subject_field_rank\": \"34\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"42\",\n                \"name\": \"Other Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"43\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"43\",\n            \"subject_field_rank\": \"37\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"43\",\n                \"name\": \"Notes\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"44\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"44\",\n            \"subject_field_rank\": \"17\",\n            \"value\": \"Debitis animi doloremque occaecati ut fugiat voluptatem qui mollitia totam.\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"44\",\n                \"name\": \"Occupation\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"45\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"45\",\n            \"subject_field_rank\": \"25\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"45\",\n                \"name\": \"Hair\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"46\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"46\",\n            \"subject_field_rank\": \"26\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"46\",\n                \"name\": \"Eyes\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"47\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"47\",\n            \"subject_field_rank\": \"35\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"47\",\n                \"name\": \"Relationship Status\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"48\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"48\",\n            \"subject_field_rank\": \"36\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"48\",\n                \"name\": \"Family\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"49\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"49\",\n            \"subject_field_rank\": \"27\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"49\",\n                \"name\": \"Glasses\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"50\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"50\",\n            \"subject_field_rank\": \"30\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"50\",\n                \"name\": \"Vehicle Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"51\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"51\",\n            \"subject_field_rank\": \"6\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"51\",\n                \"name\": \"Contact Claimant?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"52\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"52\",\n            \"subject_field_rank\": \"15\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"52\",\n                \"name\": \"Contact Employer?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"53\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"53\",\n            \"subject_field_rank\": \"19\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"53\",\n                \"name\": \"Employer Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\"\n                }\n            }\n        },\n        \"54\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"54\",\n            \"subject_field_rank\": \"18\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"54\",\n                \"name\": \"Employer Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"55\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"55\",\n            \"subject_field_rank\": \"14\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"55\",\n                \"name\": \"Employment Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"c6b51322-0150-48a8-8738-a51442e9e44c"}],"id":"8d2c0259-6147-4ccf-a7a8-929de51a0bb4","description":"<p>Subjects are the targets and supporting parties of investigations. Available subject data points are defined through <a href=\"https://support.trackops.com/hc/en-us/articles/212336623-How-to-Create-a-New-Subject-Type\">subject types</a>.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212336683-Adding-a-Subject-to-a-Case\">Adding a Subject to a Case</a></p>\n","_postman_id":"8d2c0259-6147-4ccf-a7a8-929de51a0bb4","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Tasks & Events (Activities)","item":[{"name":"Events","item":[{"name":"Get an event","id":"4b1d11f1-2176-4eb2-9a85-214ae7e1d5ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/events/:event_id?expand_address=1","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["events",":event_id"],"host":["/api/v1"],"query":[{"description":{"content":"<p>Expand address object</p>\n","type":"text/plain"},"key":"expand_address","value":"1"}],"variable":[{"description":{"content":"<p>ID of the event</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"event_id"}]}},"response":[{"id":"c201f8e8-c0bb-4da3-98d1-2d68d5f60733","name":"Get an event","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/events/:event_id?expand_address=1","host":["/api/v1"],"path":["events",":event_id"],"query":[{"key":"expand_address","value":"1","description":"Expand address object"}],"variable":[{"key":"event_id","value":"<integer>","description":"ID of the event"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"title\": \"Surveillance / McFly / Denver, CO\",\n    \"body\": \"Checklist:\\r\\n\\r\\n - Check-in upon arrival\\r\\n - Submit a mid-day update at 12PM\\r\\n - Provide an end-of day summary\\r\\n - Submit daily expenses\\r\\n - Complete surveillance activity log case review\",\n    \"start_at\": \"2026-02-07 13:00:00\",\n    \"end_at\": \"2026-02-07 20:00:00\",\n    \"timezone\": null,\n    \"completed_at\": null,\n    \"alert_at\": \"2026-02-06 13:00:00\",\n    \"alert_sent_at\": null,\n    \"is_allday\": false,\n    \"address\": {\n        \"country\": \"US\",\n        \"address_1\": \"123 Main Street\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"Hill Valley\",\n        \"state\": \"CA\",\n        \"zip\": \"95420\",\n        \"longitude\": -117.028324,\n        \"latitude\": 34.89894\n    },\n    \"latitude\": \"34.898940\",\n    \"longitude\": \"-117.028324\",\n    \"last_checkin_at\": null,\n    \"created_at\": \"2026-02-02 21:01:36\",\n    \"updated_at\": \"2026-02-02 21:01:36\",\n    \"task_status\": \"none\",\n    \"Calendar\": {\n        \"id\": \"1\",\n        \"name\": \"Field Investigations\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"CaseService\": {\n        \"id\": \"1\",\n        \"name\": \"Surveillance\"\n    },\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"Users\": [\n        {\n            \"id\": \"3\",\n            \"last_name\": \"Spade\",\n            \"first_name\": \"Sam\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        }\n    ]\n}"}],"_postman_id":"4b1d11f1-2176-4eb2-9a85-214ae7e1d5ac"},{"name":"List events","id":"52aa1862-c865-4d75-9057-4f1f5d5e784c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/events?expand_address=1","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["events"],"host":["/api/v1"],"query":[{"description":{"content":"<p>Expand address objects</p>\n","type":"text/plain"},"key":"expand_address","value":"1"}],"variable":[]}},"response":[{"id":"d68b1101-2bc6-4d98-aa64-b3f0a578dddf","name":"List events","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/events?expand_address=1","host":["/api/v1"],"path":["events"],"query":[{"key":"expand_address","value":"1"}]}},"status":"OK","code":200,"_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\": \"2\",\n        \"title\": \"ipsum recusandae voluptatem\",\n        \"body\": \"Illum perspiciatis et veniam cupiditate maiores ullam aliquam. Illum dignissimos culpa commodi voluptas est sed. Aut est itaque repudiandae iure illo.\",\n        \"start_at\": \"2026-02-10 05:00:00\",\n        \"end_at\": \"2026-02-10 05:00:00\",\n        \"timezone\": \"America/Denver\",\n        \"completed_at\": null,\n        \"alert_at\": null,\n        \"alert_sent_at\": null,\n        \"is_allday\": false,\n        \"address\": {\n            \"address_1\": \"5930 Marquardt Junction\",\n            \"address_2\": \"STE 496\",\n            \"address_3\": \"\",\n            \"city\": \"Lyricborough\",\n            \"state\": \"CO\",\n            \"zip\": 80202,\n            \"country\": \"US\",\n            \"longitude\": -104.987401,\n            \"latitude\": 39.740008\n        },\n        \"latitude\": \"39.740008\",\n        \"longitude\": \"-104.987401\",\n        \"last_checkin_at\": null,\n        \"created_at\": \"2026-02-03 16:33:08\",\n        \"updated_at\": \"2026-02-03 16:33:08\",\n        \"task_status\": \"none\",\n        \"Calendar\": {\n            \"id\": \"1\",\n            \"name\": \"Field Investigations\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseService\": {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"Users\": [\n            {\n                \"id\": \"3\",\n                \"last_name\": \"Spade\",\n                \"first_name\": \"Sam\",\n                \"email\": \"example@trackops.com\",\n                \"name\": \"Spade, Sam\",\n                \"proper_name\": \"Sam Spade\"\n            }\n        ]\n    },\n    {\n        \"id\": \"1\",\n        \"title\": \"Surveillance / McFly / Denver, CO\",\n        \"body\": \"Checklist:\\r\\n\\r\\n - Check-in upon arrival\\r\\n - Submit a mid-day update at 12PM\\r\\n - Provide an end-of day summary\\r\\n - Submit daily expenses\\r\\n - Complete surveillance activity log case review\",\n        \"start_at\": \"2026-02-07 13:00:00\",\n        \"end_at\": \"2026-02-07 20:00:00\",\n        \"timezone\": null,\n        \"completed_at\": null,\n        \"alert_at\": \"2026-02-06 13:00:00\",\n        \"alert_sent_at\": null,\n        \"is_allday\": false,\n        \"address\": {\n            \"country\": \"US\",\n            \"address_1\": \"123 Main Street\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"Hill Valley\",\n            \"state\": \"CA\",\n            \"zip\": \"95420\",\n            \"longitude\": -117.028324,\n            \"latitude\": 34.89894\n        },\n        \"latitude\": \"34.898940\",\n        \"longitude\": \"-117.028324\",\n        \"last_checkin_at\": null,\n        \"created_at\": \"2026-02-02 21:01:36\",\n        \"updated_at\": \"2026-02-02 21:01:36\",\n        \"task_status\": \"none\",\n        \"Calendar\": {\n            \"id\": \"1\",\n            \"name\": \"Field Investigations\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseService\": {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"Users\": [\n            {\n                \"id\": \"3\",\n                \"last_name\": \"Spade\",\n                \"first_name\": \"Sam\",\n                \"email\": \"example@trackops.com\",\n                \"name\": \"Spade, Sam\",\n                \"proper_name\": \"Sam Spade\"\n            }\n        ]\n    }\n]"}],"_postman_id":"52aa1862-c865-4d75-9057-4f1f5d5e784c"},{"name":"Search events","id":"9c164a14-e4df-4e8b-8ccd-61aecbb648e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/events?id=<integer>&status=<not_started|en_route|in_progress|complete|needs_action>&title=<string>&user=<integer>&calendar=<integer>&case=<integer>&case_service=<integer>&subject=<integer>&start_from=<datestamp>&start_to=<datestamp>&end_from=<datestamp>&end_to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&alert_from=<datestamp>&alert_to=<datestamp>&alert_sent_from=<datestamp>&alert_sent_to=<datestamp>&completed_from=<datestamp>&completed_to=<datestamp>&from=<datestamp>&to=<datestamp>&page=<integer>&expand_address=<boolean>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["events"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the event</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Status of the event (enum)</p>\n","type":"text/plain"},"key":"status","value":"<not_started|en_route|in_progress|complete|needs_action>"},{"description":{"content":"<p>Title of the event</p>\n","type":"text/plain"},"key":"title","value":"<string>"},{"description":{"content":"<p>ID of the user assigned to the event</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ID of the calendar associated with the event</p>\n","type":"text/plain"},"key":"calendar","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the event</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the case service associated with the event</p>\n","type":"text/plain"},"key":"case_service","value":"<integer>"},{"description":{"content":"<p>ID of the subject associated with the event</p>\n","type":"text/plain"},"key":"subject","value":"<integer>"},{"description":{"content":"<p>ISO date of the event start \"from\"</p>\n","type":"text/plain"},"key":"start_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the event start \"to\"</p>\n","type":"text/plain"},"key":"start_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the event end \"from\"</p>\n","type":"text/plain"},"key":"end_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the event end \"to\"</p>\n","type":"text/plain"},"key":"end_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the event was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the event was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the event was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the event was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) is scheduled \"from\"</p>\n","type":"text/plain"},"key":"alert_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) is scheduled \"to\"</p>\n","type":"text/plain"},"key":"alert_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) was sent \"from\"</p>\n","type":"text/plain"},"key":"alert_sent_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) was sent \"to\"</p>\n","type":"text/plain"},"key":"alert_sent_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the event was completed \"from\"</p>\n","type":"text/plain"},"key":"completed_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the event was completed \"to\"</p>\n","type":"text/plain"},"key":"completed_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of start_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alas of start_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"},{"description":{"content":"<p>Expand address objects</p>\n","type":"text/plain"},"key":"expand_address","value":"<boolean>"}],"variable":[]}},"response":[{"id":"b0d5b65b-c09c-439f-b151-3a87025fa7cf","name":"Search events","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/events?id=<integer>&status=<not_started|en_route|in_progress|complete|needs_action>&title=<string>&user=<integer>&calendar=<integer>&case=<integer>&case_service=<integer>&subject=<integer>&start_from=<datestamp>&start_to=<datestamp>&end_from=<datestamp>&end_to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&alert_from=<datestamp>&alert_to=<datestamp>&alert_sent_from=<datestamp>&alert_sent_to=<datestamp>&completed_from=<datestamp>&completed_to=<datestamp>&from=<datestamp>&to=<datestamp>&page=<integer>&expand_address=<boolean>","host":["/api/v1"],"path":["events"],"query":[{"key":"id","value":"<integer>","description":"ID of the event"},{"key":"status","value":"<not_started|en_route|in_progress|complete|needs_action>","description":"Status of the event (enum)"},{"key":"title","value":"<string>","description":"Title of the event"},{"key":"user","value":"<integer>","description":"ID of the user assigned to the event"},{"key":"calendar","value":"<integer>","description":"ID of the calendar associated with the event"},{"key":"case","value":"<integer>","description":"ID of the case associated with the event"},{"key":"case_service","value":"<integer>","description":"ID of the case service associated with the event"},{"key":"subject","value":"<integer>","description":"ID of the subject associated with the event"},{"key":"start_from","value":"<datestamp>","description":"ISO date of the event start \"from\""},{"key":"start_to","value":"<datestamp>","description":"ISO date of the event start \"to\""},{"key":"end_from","value":"<datestamp>","description":"ISO date of the event end \"from\""},{"key":"end_to","value":"<datestamp>","description":"ISO date of the event end \"to\""},{"key":"created_from","value":"<datestamp>","description":"ISO date the event was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the event was created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date the event was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the event was updated \"to\""},{"key":"alert_from","value":"<datestamp>","description":"ISO date the alert (reminder) is scheduled \"from\""},{"key":"alert_to","value":"<datestamp>","description":"ISO date the alert (reminder) is scheduled \"to\""},{"key":"alert_sent_from","value":"<datestamp>","description":"ISO date the alert (reminder) was sent \"from\""},{"key":"alert_sent_to","value":"<datestamp>","description":"ISO date the alert (reminder) was sent \"to\""},{"key":"completed_from","value":"<datestamp>","description":"ISO date the event was completed \"from\""},{"key":"completed_to","value":"<datestamp>","description":"ISO date the event was completed \"to\""},{"key":"from","value":"<datestamp>","description":"Alias of start_from"},{"key":"to","value":"<datestamp>","description":"Alas of start_to"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"},{"key":"expand_address","value":"<boolean>","description":"Expand address objects"}]}},"status":"OK","code":200,"_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\": \"2\",\n        \"title\": \"ipsum recusandae voluptatem\",\n        \"body\": \"Illum perspiciatis et veniam cupiditate maiores ullam aliquam. Illum dignissimos culpa commodi voluptas est sed. Aut est itaque repudiandae iure illo.\",\n        \"start_at\": \"2026-02-10 05:00:00\",\n        \"end_at\": \"2026-02-10 05:00:00\",\n        \"timezone\": \"America/Denver\",\n        \"completed_at\": null,\n        \"alert_at\": null,\n        \"alert_sent_at\": null,\n        \"is_allday\": false,\n        \"address\": {\n            \"address_1\": \"5930 Marquardt Junction\",\n            \"address_2\": \"STE 496\",\n            \"address_3\": \"\",\n            \"city\": \"Lyricborough\",\n            \"state\": \"CO\",\n            \"zip\": 80202,\n            \"country\": \"US\",\n            \"longitude\": -104.987401,\n            \"latitude\": 39.740008\n        },\n        \"latitude\": \"39.740008\",\n        \"longitude\": \"-104.987401\",\n        \"last_checkin_at\": null,\n        \"created_at\": \"2026-02-03 16:33:08\",\n        \"updated_at\": \"2026-02-03 16:33:08\",\n        \"task_status\": \"none\",\n        \"Calendar\": {\n            \"id\": \"1\",\n            \"name\": \"Field Investigations\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseService\": {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"Users\": [\n            {\n                \"id\": \"3\",\n                \"last_name\": \"Spade\",\n                \"first_name\": \"Sam\",\n                \"email\": \"example@trackops.com\",\n                \"name\": \"Spade, Sam\",\n                \"proper_name\": \"Sam Spade\"\n            }\n        ]\n    },\n    {\n        \"id\": \"1\",\n        \"title\": \"Surveillance / McFly / Denver, CO\",\n        \"body\": \"Checklist:\\r\\n\\r\\n - Check-in upon arrival\\r\\n - Submit a mid-day update at 12PM\\r\\n - Provide an end-of day summary\\r\\n - Submit daily expenses\\r\\n - Complete surveillance activity log case review\",\n        \"start_at\": \"2026-02-07 13:00:00\",\n        \"end_at\": \"2026-02-07 20:00:00\",\n        \"timezone\": null,\n        \"completed_at\": null,\n        \"alert_at\": \"2026-02-06 13:00:00\",\n        \"alert_sent_at\": null,\n        \"is_allday\": false,\n        \"address\": {\n            \"country\": \"US\",\n            \"address_1\": \"123 Main Street\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"Hill Valley\",\n            \"state\": \"CA\",\n            \"zip\": \"95420\",\n            \"longitude\": -117.028324,\n            \"latitude\": 34.89894\n        },\n        \"latitude\": \"34.898940\",\n        \"longitude\": \"-117.028324\",\n        \"last_checkin_at\": null,\n        \"created_at\": \"2026-02-02 21:01:36\",\n        \"updated_at\": \"2026-02-02 21:01:36\",\n        \"task_status\": \"none\",\n        \"Calendar\": {\n            \"id\": \"1\",\n            \"name\": \"Field Investigations\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseService\": {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"Users\": [\n            {\n                \"id\": \"3\",\n                \"last_name\": \"Spade\",\n                \"first_name\": \"Sam\",\n                \"email\": \"example@trackops.com\",\n                \"name\": \"Spade, Sam\",\n                \"proper_name\": \"Sam Spade\"\n            }\n        ]\n    }\n]"}],"_postman_id":"9c164a14-e4df-4e8b-8ccd-61aecbb648e8"},{"name":"Create an event","id":"9c5dc4a8-7d50-4642-8d3e-fe0eb5a27807","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"event\": {\n     \"casefile_id\": <integer>,\n     \"subject_id\": <integer>,\n     \"case_service_id\": <integer>,\n     \"calendar_id\": <integer>,\n     \"start_at\": \"<datestamp>\",\n     \"end_at\": \"<datestamp>\",\n     \"timezone\": \"<timezone>\",\n     \"is_allday\": false,\n     \"title\": \"molestiae id reprehenderit\",\n     \"body\": \"Adipisci aspernatur nemo doloribus rerum non nam. Quas aliquam consequatur et impedit et veniam unde consequuntur. Esse itaque repellendus animi enim iste autem dignissimos quia. Doloribus possimus iure eos sint dolores sunt.\",\n     \"address\": {\n         \"address_1\": \"7676 Feeney Highway\",\n         \"address_2\": \"STE 832\",\n         \"address_3\": \"\",\n         \"city\": \"Kinghaven\",\n         \"state\": \"CO\",\n         \"zip\": 80202,\n         \"country\": \"US\"\n     },\n     \"users_list\": [<integer>,<integer>]\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/events","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["events"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"72a38e11-94c5-4f86-a027-9a4bef7bc958","name":"Create an event","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"event\": {\n     \"casefile_id\": <integer>,\n     \"subject_id\": <integer>,\n     \"case_service_id\": <integer>,\n     \"calendar_id\": <integer>,\n     \"start_at\": \"<datestamp>\",\n     \"end_at\": \"<datestamp>\",\n     \"timezone\": \"<timezone>\",\n     \"is_allday\": false,\n     \"title\": \"rerum impedit amet\",\n     \"body\": \"Molestias inventore neque commodi. Hic omnis sed est ea molestiae cum. Laudantium sed repudiandae. Dolorem rerum eos quisquam quia nihil.\",\n     \"address\": {\n         \"address_1\": \"3518 Kendra Island\",\n         \"address_2\": \"STE 136\",\n         \"address_3\": \"\",\n         \"city\": \"Port Erik\",\n         \"state\": \"CO\",\n         \"zip\": 80202,\n         \"country\": \"US\"\n     },\n     \"users_list\": [<integer>,<integer>]\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/events"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"5\",\n    \"title\": \"cum consequuntur adipisci\",\n    \"body\": \"Ex consequatur aut sequi. Est aut velit nam voluptas error consequatur non non. Ipsa qui asperiores non iure. Autem et aperiam explicabo est. Reiciendis natus cum labore debitis quo et et debitis. Consequatur neque quasi nemo id a et voluptas est quia.\",\n    \"start_at\": \"2026-02-10 05:00:00\",\n    \"end_at\": \"2026-02-10 05:00:00\",\n    \"timezone\": \"America/Denver\",\n    \"completed_at\": null,\n    \"alert_at\": null,\n    \"alert_sent_at\": null,\n    \"is_allday\": false,\n    \"address\": {\n        \"address_1\": \"6663 Braeden Hill\",\n        \"address_2\": \"STE 252\",\n        \"address_3\": \"\",\n        \"city\": \"Draper\",\n        \"state\": \"CO\",\n        \"zip\": 80202,\n        \"country\": \"US\",\n        \"longitude\": -104.987401,\n        \"latitude\": 39.740008\n    },\n    \"latitude\": \"39.740008\",\n    \"longitude\": \"-104.987401\",\n    \"last_checkin_at\": null,\n    \"created_at\": \"2026-02-03 17:08:46\",\n    \"updated_at\": \"2026-02-03 17:08:46\",\n    \"task_status\": \"none\",\n    \"Calendar\": {\n        \"id\": \"1\",\n        \"name\": \"Field Investigations\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"CaseService\": {\n        \"id\": \"1\",\n        \"name\": \"Surveillance\"\n    },\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"Users\": [\n        {\n            \"id\": \"3\",\n            \"last_name\": \"Spade\",\n            \"first_name\": \"Sam\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        }\n    ]\n}"}],"_postman_id":"9c5dc4a8-7d50-4642-8d3e-fe0eb5a27807"}],"id":"f840c745-f10b-467f-8149-530efa7d174d","description":"<p>Events are time-specific activites that are worked on a specific date, and optionally have a specific start time.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/360015365312-Scheduling-Assignments-through-Case-Events\">Scheduling Assignments through Case Events</a></p>\n","_postman_id":"f840c745-f10b-467f-8149-530efa7d174d","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Check-Ins","item":[{"name":"Get an event check-in","id":"ccf70d2e-6c63-4ae0-bbb1-8fb706ccfc46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/event/checkins/:checkin_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["event","checkins",":checkin_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the check-in</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"checkin_id"}]}},"response":[{"id":"b302c6b4-525a-4849-b04c-c5cd1c762b4e","name":"Get an event check-in","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/event/checkins/:checkin_id","host":["/api/v1"],"path":["event","checkins",":checkin_id"],"variable":[{"key":"checkin_id","value":"<integer>","description":"ID of the check-in"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"longitude\": \"-104.984700\",\n    \"latitude\": \"39.739200\",\n    \"ip\": \"127.0.0.1\",\n    \"notes\": \"Arrived on site.\",\n    \"timezone\": \"America/Denver\",\n    \"checkin_type\": \"1\",\n    \"created_at\": \"2026-02-01 12:31:00\",\n    \"Event\": {\n        \"id\": \"1\",\n        \"title\": \"Surveillance / McFly / Denver, CO\",\n        \"body\": \"Checklist:\\r\\n\\r\\n - Check-in upon arrival\\r\\n - Submit a mid-day update at 12PM\\r\\n - Provide an end-of day summary\\r\\n - Submit daily expenses\\r\\n - Complete surveillance activity log case review\",\n        \"start_at\": \"2026-02-07 13:00:00\",\n        \"end_at\": \"2026-02-07 20:00:00\",\n        \"timezone\": null,\n        \"alert_at\": \"2026-02-06 13:00:00\",\n        \"alert_sent_at\": null,\n        \"is_allday\": false,\n        \"address\": \"{\\\"country\\\":\\\"US\\\",\\\"address_1\\\":\\\"123 Main Street\\\",\\\"address_2\\\":\\\"\\\",\\\"address_3\\\":\\\"\\\",\\\"city\\\":\\\"Hill Valley\\\",\\\"state\\\":\\\"CA\\\",\\\"zip\\\":\\\"95420\\\",\\\"longitude\\\":-117.028324,\\\"latitude\\\":34.89894}\",\n        \"latitude\": \"34.898940\",\n        \"longitude\": \"-117.028324\",\n        \"last_checkin_at\": null,\n        \"created_at\": \"2026-02-02 21:01:36\",\n        \"updated_at\": \"2026-02-02 21:01:36\"\n    },\n    \"User\": {\n        \"id\": \"1\",\n        \"last_name\": \"Lebsack\",\n        \"first_name\": \"Jefferey\",\n        \"email\": \"Mikel_Spinka@example.com\",\n        \"name\": \"Lebsack, Jefferey\",\n        \"proper_name\": \"Jefferey Lebsack\"\n    }\n}"}],"_postman_id":"ccf70d2e-6c63-4ae0-bbb1-8fb706ccfc46"},{"name":"List event check-ins","id":"e42c7548-e451-42d5-99c3-97aab581826d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/event/checkins","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["event","checkins"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"54d979ba-04d1-42e1-bc3c-79a2eff39ebf","name":"List event check-ins","originalRequest":{"method":"GET","header":[],"url":"/api/v1/event/checkins"},"status":"OK","code":200,"_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\": \"1\",\n        \"longitude\": \"-104.984700\",\n        \"latitude\": \"39.739200\",\n        \"ip\": \"127.0.0.1\",\n        \"notes\": \"Arrived on site.\",\n        \"timezone\": \"America/Denver\",\n        \"checkin_type\": \"1\",\n        \"created_at\": \"2026-02-01 12:31:00\",\n        \"Event\": {\n            \"id\": \"1\",\n            \"title\": \"Surveillance / McFly / Denver, CO\",\n            \"body\": \"Checklist:\\r\\n\\r\\n - Check-in upon arrival\\r\\n - Submit a mid-day update at 12PM\\r\\n - Provide an end-of day summary\\r\\n - Submit daily expenses\\r\\n - Complete surveillance activity log case review\",\n            \"start_at\": \"2026-02-07 13:00:00\",\n            \"end_at\": \"2026-02-07 20:00:00\",\n            \"timezone\": null,\n            \"alert_at\": \"2026-02-06 13:00:00\",\n            \"alert_sent_at\": null,\n            \"is_allday\": false,\n            \"address\": \"{\\\"country\\\":\\\"US\\\",\\\"address_1\\\":\\\"123 Main Street\\\",\\\"address_2\\\":\\\"\\\",\\\"address_3\\\":\\\"\\\",\\\"city\\\":\\\"Hill Valley\\\",\\\"state\\\":\\\"CA\\\",\\\"zip\\\":\\\"95420\\\",\\\"longitude\\\":-117.028324,\\\"latitude\\\":34.89894}\",\n            \"latitude\": \"34.898940\",\n            \"longitude\": \"-117.028324\",\n            \"last_checkin_at\": null,\n            \"created_at\": \"2026-02-02 21:01:36\",\n            \"updated_at\": \"2026-02-02 21:01:36\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"last_name\": \"Lebsack\",\n            \"first_name\": \"Jefferey\",\n            \"email\": \"Mikel_Spinka@example.com\",\n            \"name\": \"Lebsack, Jefferey\",\n            \"proper_name\": \"Jefferey Lebsack\"\n        }\n    }\n]"}],"_postman_id":"e42c7548-e451-42d5-99c3-97aab581826d"},{"name":"Search event check-ins","id":"b04abd6e-de4a-4d29-b4bc-30d2766ced0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/event/checkins?id=<integer>&checkin_type=<checkin|break>&event=<integer>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["event","checkins"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the check-in</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Type of checkin (enum)</p>\n","type":"text/plain"},"key":"checkin_type","value":"<checkin|break>"},{"description":{"content":"<p>ID of the task or event associated with the check-in</p>\n","type":"text/plain"},"key":"event","value":"<integer>"},{"description":{"content":"<p>ID of the user who performed the check-in</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ISO date the check-in was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the check-in was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"f6c0482b-70db-46fd-858d-bc95b195e392","name":"Search event check-ins","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/event/checkins?id=<integer>&checkin_type=<checkin|break>&event=<integer>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["event","checkins"],"query":[{"key":"id","value":"<integer>","description":"ID of the check-in"},{"key":"checkin_type","value":"<checkin|break>","description":"Type of checkin (enum)"},{"key":"event","value":"<integer>","description":"ID of the task or event associated with the check-in"},{"key":"user","value":"<integer>","description":"ID of the user who performed the check-in"},{"key":"created_from","value":"<datestamp>","description":"ISO date the check-in was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the check-in was created \"to\""},{"key":"from","value":"<datestamp>","description":"Alias of created_from"},{"key":"to","value":"<datestamp>","description":"Alias of created_to"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_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\": \"1\",\n        \"longitude\": \"-104.984700\",\n        \"latitude\": \"39.739200\",\n        \"ip\": \"127.0.0.1\",\n        \"notes\": \"Arrived on site.\",\n        \"timezone\": \"America/Denver\",\n        \"checkin_type\": \"1\",\n        \"created_at\": \"2026-02-01 12:31:00\",\n        \"Event\": {\n            \"id\": \"1\",\n            \"title\": \"Surveillance / McFly / Denver, CO\",\n            \"body\": \"Checklist:\\r\\n\\r\\n - Check-in upon arrival\\r\\n - Submit a mid-day update at 12PM\\r\\n - Provide an end-of day summary\\r\\n - Submit daily expenses\\r\\n - Complete surveillance activity log case review\",\n            \"start_at\": \"2026-02-07 13:00:00\",\n            \"end_at\": \"2026-02-07 20:00:00\",\n            \"timezone\": null,\n            \"alert_at\": \"2026-02-06 13:00:00\",\n            \"alert_sent_at\": null,\n            \"is_allday\": false,\n            \"address\": \"{\\\"country\\\":\\\"US\\\",\\\"address_1\\\":\\\"123 Main Street\\\",\\\"address_2\\\":\\\"\\\",\\\"address_3\\\":\\\"\\\",\\\"city\\\":\\\"Hill Valley\\\",\\\"state\\\":\\\"CA\\\",\\\"zip\\\":\\\"95420\\\",\\\"longitude\\\":-117.028324,\\\"latitude\\\":34.89894}\",\n            \"latitude\": \"34.898940\",\n            \"longitude\": \"-117.028324\",\n            \"last_checkin_at\": null,\n            \"created_at\": \"2026-02-02 21:01:36\",\n            \"updated_at\": \"2026-02-02 21:01:36\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"last_name\": \"Lebsack\",\n            \"first_name\": \"Jefferey\",\n            \"email\": \"Mikel_Spinka@example.com\",\n            \"name\": \"Lebsack, Jefferey\",\n            \"proper_name\": \"Jefferey Lebsack\"\n        }\n    }\n]"}],"_postman_id":"b04abd6e-de4a-4d29-b4bc-30d2766ced0d"}],"id":"f1adf080-b379-4da8-9e32-3e18cdcff95f","description":"<p>Check-ins capture periodic timestamps and geolocation data for investigators in the field.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/search/click?data=BAh7DjoHaWRpBCcEqAw6D2FjY291bnRfaWRpA7skAToJdHlwZUkiDGFydGljbGUGOgZFVDoIdXJsSSJaaHR0cHM6Ly9zdXBwb3J0LnRyYWNrb3BzLmNvbS9oYy9lbi11cy9hcnRpY2xlcy8yMTIzMzc3MDMtVXNpbmctTW9iaWxlLUV2ZW50LUNoZWNrLUlucwY7CFQ6DnNlYXJjaF9pZEkiKTI3YTZmMDViLTAzYTgtNDU1Ny05Y2RmLTk5NTU1MTE3NWYwNQY7CEY6CXJhbmtpBjoLbG9jYWxlSSIKZW4tdXMGOwhUOgpxdWVyeUkiDWNoZWNrLWluBjsIVDoScmVzdWx0c19jb3VudGlG--3f2d5c06bac01a0d04d4f1eefd3f43c037b8538b\">Using Mobile Event Check-Ins</a></p>\n","_postman_id":"f1adf080-b379-4da8-9e32-3e18cdcff95f","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Tasks","item":[{"name":"Get a task","id":"86f96049-bc25-4f4d-a2e3-3c429cf06466","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/tasks/:task_id?expand_address=1","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["tasks",":task_id"],"host":["/api/v1"],"query":[{"description":{"content":"<p>Expand address object</p>\n","type":"text/plain"},"key":"expand_address","value":"1"}],"variable":[{"description":{"content":"<p>ID of the task</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"task_id"}]}},"response":[{"id":"c1f3b17b-8bf5-4b02-a922-7a6e0eca2cbe","name":"Get a task","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/tasks/:task_id?expand_address=1","host":["/api/v1"],"path":["tasks",":task_id"],"query":[{"key":"expand_address","value":"1","description":"Expand address object"}],"variable":[{"key":"task_id","value":"<integer>","description":"ID of the task"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"title\": \"Medical Canvas / McFly / 10 Facilities\",\n    \"body\": \"Conduct a medical canvas on 10 facilities surrounding the provided address.\",\n    \"completed_at\": null,\n    \"alert_at\": null,\n    \"alert_sent_at\": null,\n    \"is_allday\": false,\n    \"address\": {\n        \"country\": \"US\",\n        \"address_1\": \"4552 Ankunding Knoll\",\n        \"address_2\": \"Apt #929\",\n        \"address_3\": \"\",\n        \"city\": \"Port Tyrel\",\n        \"state\": \"CO\",\n        \"zip\": \"80202\",\n        \"longitude\": -104.987401,\n        \"latitude\": 39.740008\n    },\n    \"latitude\": \"39.740008\",\n    \"longitude\": \"-104.987401\",\n    \"last_checkin_at\": null,\n    \"created_at\": \"2026-02-03 16:37:27\",\n    \"updated_at\": \"2026-02-03 16:37:32\",\n    \"task_status\": \"none\",\n    \"due_on\": \"2026-02-21\",\n    \"Calendar\": {\n        \"id\": \"5\",\n        \"name\": \"Desktop Investigations\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"CaseService\": {\n        \"id\": \"3\",\n        \"name\": \"Medical Canvas\"\n    },\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"Users\": [\n        {\n            \"id\": \"5\",\n            \"last_name\": \"Parisian\",\n            \"first_name\": \"Rita\",\n            \"email\": \"Hanna.Hettinger45@example.org\",\n            \"name\": \"Parisian, Rita\",\n            \"proper_name\": \"Rita Parisian\"\n        }\n    ]\n}"}],"_postman_id":"86f96049-bc25-4f4d-a2e3-3c429cf06466"},{"name":"List tasks","id":"736825e6-af62-440b-8588-454c2e6c44f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/tasks?expand_address=1","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["tasks"],"host":["/api/v1"],"query":[{"description":{"content":"<p>Expand address objects</p>\n","type":"text/plain"},"key":"expand_address","value":"1"}],"variable":[]}},"response":[{"id":"4d4d4626-099b-4955-88a6-43ccf13c7c51","name":"List tasks","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/tasks?expand_address=1","host":["/api/v1"],"path":["tasks"],"query":[{"key":"expand_address","value":"1","description":"Expand address objects"}]}},"status":"OK","code":200,"_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\": \"3\",\n        \"title\": \"Medical Canvas / McFly / 10 Facilities\",\n        \"body\": \"Conduct a medical canvas on 10 facilities surrounding the provided address.\",\n        \"completed_at\": null,\n        \"alert_at\": null,\n        \"alert_sent_at\": null,\n        \"is_allday\": false,\n        \"address\": {\n            \"country\": \"US\",\n            \"address_1\": \"4552 Ankunding Knoll\",\n            \"address_2\": \"Apt #929\",\n            \"address_3\": \"\",\n            \"city\": \"Port Tyrel\",\n            \"state\": \"CO\",\n            \"zip\": \"80202\",\n            \"longitude\": -104.987401,\n            \"latitude\": 39.740008\n        },\n        \"latitude\": \"39.740008\",\n        \"longitude\": \"-104.987401\",\n        \"last_checkin_at\": null,\n        \"created_at\": \"2026-02-03 16:37:27\",\n        \"updated_at\": \"2026-02-03 16:37:32\",\n        \"task_status\": \"none\",\n        \"due_on\": \"2026-02-21\",\n        \"Calendar\": {\n            \"id\": \"5\",\n            \"name\": \"Desktop Investigations\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseService\": {\n            \"id\": \"3\",\n            \"name\": \"Medical Canvas\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"Users\": [\n            {\n                \"id\": \"5\",\n                \"last_name\": \"Parisian\",\n                \"first_name\": \"Rita\",\n                \"email\": \"Hanna.Hettinger45@example.org\",\n                \"name\": \"Parisian, Rita\",\n                \"proper_name\": \"Rita Parisian\"\n            }\n        ]\n    }\n]"}],"_postman_id":"736825e6-af62-440b-8588-454c2e6c44f4"},{"name":"Search tasks","id":"7a4429ae-1c9a-42e2-8c3d-761b9a2abebe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/tasks?id=<integer>&status=<not_started|en_route|in_progress|complete|needs_action>&title=<string>&user=<integer>&calendar=<integer>&case=<integer>&case_service=<integer>&subject=<integer>&due_from=<datestamp>&due_to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&alert_from=<datestamp>&alert_to=<datestamp>&alert_sent_from=<datestamp>&alert_sent_to=<datestamp>&completed_from=<datestamp>&completed_to=<datestamp>&from=<datestamp>&to=<datestamp>&page=<integer>&expand_address=<boolean>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["tasks"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the task</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Status of the task (enum)</p>\n","type":"text/plain"},"key":"status","value":"<not_started|en_route|in_progress|complete|needs_action>"},{"description":{"content":"<p>Title of the task</p>\n","type":"text/plain"},"key":"title","value":"<string>"},{"description":{"content":"<p>ID of the user assigned to the task</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ID of the calendar associated with the task</p>\n","type":"text/plain"},"key":"calendar","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the task</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the case service associated with the task</p>\n","type":"text/plain"},"key":"case_service","value":"<integer>"},{"description":{"content":"<p>ID of the subject associated with the task</p>\n","type":"text/plain"},"key":"subject","value":"<integer>"},{"description":{"content":"<p>ISO date the task is due \"from\"</p>\n","type":"text/plain"},"key":"due_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the task is due \"to\"</p>\n","type":"text/plain"},"key":"due_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the task was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the task was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the task was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the task was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) is scheduled \"from\"</p>\n","type":"text/plain"},"key":"alert_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) is scheduled \"to\"</p>\n","type":"text/plain"},"key":"alert_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) was sent \"from\"</p>\n","type":"text/plain"},"key":"alert_sent_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) was sent \"to\"</p>\n","type":"text/plain"},"key":"alert_sent_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the task was completed \"from\"</p>\n","type":"text/plain"},"key":"completed_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the task was completed \"to\"</p>\n","type":"text/plain"},"key":"completed_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of due_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of due_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"},{"description":{"content":"<p>Expand address objects</p>\n","type":"text/plain"},"key":"expand_address","value":"<boolean>"}],"variable":[]}},"response":[{"id":"39539ab3-cf6c-4fa9-9817-7dd6fb129656","name":"Search tasks","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/tasks?id=<integer>&status=<not_started|en_route|in_progress|complete|needs_action>&title=<string>&user=<integer>&calendar=<integer>&case=<integer>&case_service=<integer>&subject=<integer>&due_from=<datestamp>&due_to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&alert_from=<datestamp>&alert_to=<datestamp>&alert_sent_from=<datestamp>&alert_sent_to=<datestamp>&completed_from=<datestamp>&completed_to=<datestamp>&from=<datestamp>&to=<datestamp>&page=<integer>&expand_address=<boolean>","host":["/api/v1"],"path":["tasks"],"query":[{"key":"id","value":"<integer>","description":"ID of the task"},{"key":"status","value":"<not_started|en_route|in_progress|complete|needs_action>","description":"Status of the task (enum)"},{"key":"title","value":"<string>","description":"Title of the task"},{"key":"user","value":"<integer>","description":"ID of the user assigned to the task"},{"key":"calendar","value":"<integer>","description":"ID of the calendar associated with the task"},{"key":"case","value":"<integer>","description":"ID of the case associated with the task"},{"key":"case_service","value":"<integer>","description":"ID of the case service associated with the task"},{"key":"subject","value":"<integer>","description":"ID of the subject associated with the task"},{"key":"due_from","value":"<datestamp>","description":"ISO date the task is due \"from\""},{"key":"due_to","value":"<datestamp>","description":"ISO date the task is due \"to\""},{"key":"created_from","value":"<datestamp>","description":"ISO date the task was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the task was created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date the task was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the task was updated \"to\""},{"key":"alert_from","value":"<datestamp>","description":"ISO date the alert (reminder) is scheduled \"from\""},{"key":"alert_to","value":"<datestamp>","description":"ISO date the alert (reminder) is scheduled \"to\""},{"key":"alert_sent_from","value":"<datestamp>","description":"ISO date the alert (reminder) was sent \"from\""},{"key":"alert_sent_to","value":"<datestamp>","description":"ISO date the alert (reminder) was sent \"to\""},{"key":"completed_from","value":"<datestamp>","description":"ISO date the task was completed \"from\""},{"key":"completed_to","value":"<datestamp>","description":"ISO date the task was completed \"to\""},{"key":"from","value":"<datestamp>","description":"Alias of due_from"},{"key":"to","value":"<datestamp>","description":"Alias of due_to"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"},{"key":"expand_address","value":"<boolean>","description":"Expand address objects"}]}},"status":"OK","code":200,"_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\": \"3\",\n        \"title\": \"Medical Canvas / McFly / 10 Facilities\",\n        \"body\": \"Conduct a medical canvas on 10 facilities surrounding the provided address.\",\n        \"completed_at\": null,\n        \"alert_at\": null,\n        \"alert_sent_at\": null,\n        \"is_allday\": false,\n        \"address\": {\n            \"country\": \"US\",\n            \"address_1\": \"4552 Ankunding Knoll\",\n            \"address_2\": \"Apt #929\",\n            \"address_3\": \"\",\n            \"city\": \"Port Tyrel\",\n            \"state\": \"CO\",\n            \"zip\": \"80202\",\n            \"longitude\": -104.987401,\n            \"latitude\": 39.740008\n        },\n        \"latitude\": \"39.740008\",\n        \"longitude\": \"-104.987401\",\n        \"last_checkin_at\": null,\n        \"created_at\": \"2026-02-03 16:37:27\",\n        \"updated_at\": \"2026-02-03 16:37:32\",\n        \"task_status\": \"none\",\n        \"due_on\": \"2026-02-21\",\n        \"Calendar\": {\n            \"id\": \"5\",\n            \"name\": \"Desktop Investigations\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseService\": {\n            \"id\": \"3\",\n            \"name\": \"Medical Canvas\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"Users\": [\n            {\n                \"id\": \"5\",\n                \"last_name\": \"Parisian\",\n                \"first_name\": \"Rita\",\n                \"email\": \"Hanna.Hettinger45@example.org\",\n                \"name\": \"Parisian, Rita\",\n                \"proper_name\": \"Rita Parisian\"\n            }\n        ]\n    }\n]"}],"_postman_id":"7a4429ae-1c9a-42e2-8c3d-761b9a2abebe"},{"name":"Create a task","id":"d2366773-4739-46ab-be60-d0ef68c9e7d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"task\": {\n     \"casefile_id\": <integer>,\n     \"subject_id\": <integer>,\n     \"case_service_id\": <integer>,\n     \"calendar_id\": <integer>,\n     \"due_on\": \"<datestamp>\",\n     \"alert_at\": \"<datestamp>\",\n     \"title\": \"laboriosam laboriosam mollitia\",\n     \"body\": \"Inventore consectetur illum quo facilis corrupti et non velit quos. Asperiores cumque occaecati atque ut dolorem error reiciendis omnis. Est quam facere saepe aut. Sapiente hic deleniti odit dolor deserunt eos qui. Nostrum inventore rerum iusto aspernatur.\",\n     \"address\": {\n         \"address_1\": \"6028 Mose Prairie\",\n         \"address_2\": \"\",\n         \"address_3\": \"\",\n         \"city\": \"Lake Martinetown\",\n         \"state\": \"CO\",\n         \"zip\": 80202,\n         \"country\": \"US\"\n     },\n     \"users_list\": [<integer>,<integer>]\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/tasks","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["tasks"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"b80b5554-090b-4000-9331-d28579712ee9","name":"Create a task","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"task\": {\n     \"casefile_id\": <integer>,\n     \"subject_id\": <integer>,\n     \"case_service_id\": <integer>,\n     \"calendar_id\": <integer>,\n     \"due_on\": \"<datestamp>\",\n     \"alert_at\": \"<datestamp>\",\n     \"title\": \"aliquam deleniti esse\",\n     \"body\": \"Non minus et rerum dolorum consequatur. Odio quasi sed qui non maiores in ipsum similique. Et molestiae numquam velit sunt.\",\n     \"address\": {\n         \"address_1\": \"534 Smith Skyway\",\n         \"address_2\": \"\",\n         \"address_3\": \"\",\n         \"city\": \"Norrisbury\",\n         \"state\": \"CO\",\n         \"zip\": 80202,\n         \"country\": \"US\"\n     },\n     \"users_list\": [<integer>,<integer>]\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/tasks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"4\",\n    \"title\": \"autem ut quos\",\n    \"body\": \"Deserunt aut repudiandae tempora consequatur voluptatem maxime deleniti non quia. Dignissimos autem blanditiis ullam voluptatum aspernatur perferendis labore. Asperiores quia eius expedita qui officiis doloribus quae consequuntur voluptates. Minima eveniet dolor. Perspiciatis velit eius fugiat corrupti voluptatibus aut blanditiis.\",\n    \"completed_at\": null,\n    \"alert_at\": \"2026-02-10 05:00:00\",\n    \"alert_sent_at\": null,\n    \"is_allday\": false,\n    \"address\": {\n        \"address_1\": \"49699 Nia Loaf\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"Bartellstad\",\n        \"state\": \"CO\",\n        \"zip\": 80202,\n        \"country\": \"US\",\n        \"longitude\": -104.987401,\n        \"latitude\": 39.740008\n    },\n    \"latitude\": \"39.740008\",\n    \"longitude\": \"-104.987401\",\n    \"last_checkin_at\": null,\n    \"created_at\": \"2026-02-03 17:08:20\",\n    \"updated_at\": \"2026-02-03 17:08:20\",\n    \"task_status\": \"none\",\n    \"due_on\": \"2026-02-10\",\n    \"Calendar\": {\n        \"id\": \"1\",\n        \"name\": \"Field Investigations\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"CaseService\": {\n        \"id\": \"1\",\n        \"name\": \"Surveillance\"\n    },\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"Users\": [\n        {\n            \"id\": \"3\",\n            \"last_name\": \"Spade\",\n            \"first_name\": \"Sam\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        }\n    ]\n}"}],"_postman_id":"d2366773-4739-46ab-be60-d0ef68c9e7d2"}],"id":"e5bf8236-d29d-445c-b71a-6d1f95616b87","description":"<p>Tasks are non-time-specific activites that must be completed before a specific due date.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/search/click?data=BAh7DjoHaWRpBP8DqAw6D2FjY291bnRfaWRpA7skAToJdHlwZUkiDGFydGljbGUGOgZFVDoIdXJsSSJZaHR0cHM6Ly9zdXBwb3J0LnRyYWNrb3BzLmNvbS9oYy9lbi11cy9hcnRpY2xlcy8yMTIzMzc2NjMtQ3JlYXRpbmctYW5kLU1hbmFnaW5nLVRhc2tzBjsIVDoOc2VhcmNoX2lkSSIpOGMzNDM0ZWUtZDhlMi00YmQzLTlhMjgtOTliYTg3MzRhNGZmBjsIRjoJcmFua2kGOgtsb2NhbGVJIgplbi11cwY7CFQ6CnF1ZXJ5SSIKdGFza3MGOwhUOhJyZXN1bHRzX2NvdW50aS8%3D--9075c16eac64d997fe9ad23121eba8e273421267\">Creating and Managing Tasks</a></p>\n","_postman_id":"e5bf8236-d29d-445c-b71a-6d1f95616b87","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}}],"id":"0de518d3-9778-41ad-a65b-95aae44e2f61","description":"<p>Tasks and events (activities) are the desktop and/or field services that are schedueld and performed by staff.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337663-Creating-and-Managing-Tasks\">Creating and Managing Tasks</a>, <a href=\"https://support.trackops.com/hc/en-us/articles/360015365312-Scheduling-Assignments-through-Case-Events\">Scheduling Assignments through Case Events</a>, <a href=\"https://support.trackops.com/hc/en-us/articles/212337603-Scheduling-your-Staff-via-the-Calendar\">Scheduling your Staff via the Calendar</a></p>\n","_postman_id":"0de518d3-9778-41ad-a65b-95aae44e2f61","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Tracking Categories","item":[{"name":"Get a tracking category","id":"9d234a3b-c0e3-4ab0-beee-9989230470a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/tracking_categories/:tracking_category_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["tracking_categories",":tracking_category_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the tracking category</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"tracking_category_id"}]}},"response":[{"id":"82034a24-45ca-4fbb-a823-b227ca0962e1","name":"Get a tracking category","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/tracking_categories/:tracking_category_id","host":["/api/v1"],"path":["tracking_categories",":tracking_category_id"],"variable":[{"key":"tracking_category_id","value":"<integer>","description":"ID of the tracking category"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Sales territory A\",\n    \"notes\": \"\",\n    \"description\": \"\"\n}"}],"_postman_id":"9d234a3b-c0e3-4ab0-beee-9989230470a6"},{"name":"List tracking categories","id":"43058d1f-e199-4112-aabe-46eb3f6b3e85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/tracking_categories","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["tracking_categories"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"91e9c5a9-ed9a-438a-8a01-332e07b571f3","name":"List tracking categories","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/tracking_categories"},"status":"OK","code":200,"_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\": \"1\",\n        \"name\": \"Sales territory A\",\n        \"notes\": \"\",\n        \"description\": \"\"\n    }\n]"}],"_postman_id":"43058d1f-e199-4112-aabe-46eb3f6b3e85"},{"name":"Search tracking categories","id":"e6f73827-1626-4681-85ef-449cd8f10993","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/tracking_categories?id=<integer>&name=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["tracking_categories"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the tracking category</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the tracking category</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"eabc4b0d-9158-4922-ac05-0c76d90df890","name":"Search tracking categories","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/tracking_categories?id=<integer>&name=<string>&page=<integer>","host":["/api/v1"],"path":["tracking_categories"],"query":[{"key":"id","value":"<integer>","description":"ID of the tracking category"},{"key":"name","value":"<string>","description":"Name of the tracking category"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_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\": \"1\",\n        \"name\": \"Sales territory A\",\n        \"notes\": \"\",\n        \"description\": \"\"\n    }\n]"}],"_postman_id":"e6f73827-1626-4681-85ef-449cd8f10993"}],"id":"6c5ea635-0560-4035-a4b7-1f0dc12291f3","description":"<p>Tracking categories organize expenses and invoices into groups, typically used for tracking cost centers and profitability across organizational units.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337903-Customizing-Tracking-Categories\">Customizing Tracking Categories</a></p>\n","_postman_id":"6c5ea635-0560-4035-a4b7-1f0dc12291f3","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}}],"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]}},"event":[{"listen":"prerequest","script":{"id":"ad333a7f-bd50-490b-a376-0c3ab90e6fa9","type":"text/javascript","requests":{},"exec":["var date_today = new Date();","pm.collectionVariables.set(\"value_date_today\", date_today.toISOString().split('T')[0]);","","var date_next_week = new Date(Date.now() + 7 * 24 * 60 * 60 * 1000);","pm.collectionVariables.set(\"value_date_future\", date_next_week.toISOString().split('T')[0]);"]}},{"listen":"test","script":{"id":"51ce61c7-f546-447e-b4e3-0fdab009e311","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"api_base_url","value":"/api/v1","description":"ex: https://{subdomain}.viewcases.com/api/v1"},{"key":"api_username","value":"full_access_username","description":"A valid full access username"},{"key":"api_password","value":"api_token/token","description":"A valid api token appended with /token"},{"key":"access_group_id","value":"<integer>"},{"key":"address_state","value":"<string>","description":"ex: CO (based on country support)\nex: <string> (when unsupported country)"},{"key":"address_zip","value":"<string>","description":"ex: example"},{"key":"calendar_id","value":"<integer>"},{"key":"case_id","value":"<integer>"},{"key":"case_number","value":"<string>","description":"ex: 12345SV-01"},{"key":"case_country","value":"<country-code>","description":"ex: US"},{"key":"case_custom_field_address_id","value":"<integer>"},{"key":"case_custom_field_date_id","value":"<integer>"},{"key":"case_custom_field_input_id","value":"<integer>"},{"key":"case_request_id","value":"<integer>"},{"key":"case_state","value":"<string> | <state-code>","description":"ex: CO (based on country support)\nex: <string> (when unsupported country)"},{"key":"case_status_id","value":"<integer>"},{"key":"case_flag_id","value":"<integer>"},{"key":"case_flag_ids","value":"[<integer>,<integer>]","description":"ex: [1,2]"},{"key":"case_region_id","value":"<integer>"},{"key":"case_review_id","value":"<integer>"},{"key":"case_service_id","value":"<integer>"},{"key":"case_service_ids","value":"[<integer>,<integer>]","description":"ex: [1,2]"},{"key":"case_type_id","value":"<integer>"},{"key":"case_update_category_id","value":"<integer>"},{"key":"client_id","value":"<integer>"},{"key":"client_location_id","value":"<integer>"},{"key":"client_contact_id","value":"<integer>"},{"key":"client_contact_note_id","value":"<integer>"},{"key":"company_location_id","value":"<integer>"},{"key":"address_country","value":"<country-code>","description":"ex: US"},{"key":"employee_id","value":"<integer>"},{"key":"employee_ids","value":"[<integer>,<integer>]","description":"ex: [1,2]"},{"key":"employee_case_manager_id","value":"<integer>"},{"key":"employee_investigator_id","value":"<integer>"},{"key":"employee_investigator_ids","value":"[<integer>,<integer>]","description":"ex: [1,2]"},{"key":"employee_role_id","value":"<integer>"},{"key":"employee_salesperson_id","value":"<integer>"},{"key":"event_id","value":"<integer>"},{"key":"file_ids","value":"[<integer>,<integer>]","description":"ex: [1,2]"},{"key":"subject_custom_field_address_id","value":"<integer>"},{"key":"subject_custom_field_checkbox_id","value":"<integer>"},{"key":"subject_custom_field_date_id","value":"<integer>"},{"key":"subject_custom_field_name_id","value":"<integer>"},{"key":"subject_type_id","value":"<integer>"},{"key":"staff_note_id","value":"<integer>"},{"key":"timezone","value":"<timezone>","description":"ex: America/Denver"},{"key":"value_choice_values","value":"[<string>,<string>]","description":"ex: [\"value_1\",\"value_2\"]"},{"key":"value_date_future","value":"<datestamp>","description":"ex: 2026-01-01"},{"key":"value_date_past","value":"<datestamp>","description":"ex: 2026-01-01"},{"key":"value_date_today","value":"<datestamp>","description":"ex: 2026-01-01"},{"key":"investigator_assign_type_id","value":"<integer>"},{"key":"file_id","value":"<integer>"},{"key":"case_update_id","value":"<integer>"},{"key":"subject_id","value":"<integer>"},{"key":"client_contact_role_id","value":"<integer>"},{"key":"client_note_id","value":"<integer>"},{"key":"invoice_id","value":"<integer>"},{"key":"invoice_payment_id","value":"<integer>"},{"key":"item_code_id","value":"<integer>"},{"key":"license_id","value":"<integer>"},{"key":"payment_method_id","value":"<integer>"},{"key":"referral_source_id","value":"<integer>"},{"key":"event_checkin_id","value":"<integer>"},{"key":"expense_entry_id","value":"<integer>"},{"key":"expense_entry_ids","value":"[<integer>,<integer>]","description":"ex: [1,2]"},{"key":"expense_non_time_item_id","value":"<integer>"},{"key":"expense_time_item_id","value":"<integer>"},{"key":"expense_payment_slip_id","value":"<integer>"},{"key":"subject_address_custom_field_id","value":"<integer>"},{"key":"subject_name_custom_field_id","value":"<integer>"},{"key":"subject_birthday_custom_field_id","value":"<integer>"},{"key":"subject_long_input_custom_field_id","value":"<integer>"},{"key":"subject_short_input_custom_field_id","value":"<integer>"},{"key":"task_id","value":"<integer>"},{"key":"tracking_category_id","value":"<integer>"},{"key":"workflow_id","value":"<integer>"}]}